mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
55 lines
1.4 KiB
Makefile
55 lines
1.4 KiB
Makefile
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = \
|
|
$(srcdir) \
|
|
$(srcdir)/basic \
|
|
$(srcdir)/client \
|
|
$(srcdir)/composite \
|
|
$(srcdir)/opengl \
|
|
$(srcdir)/d3d9 \
|
|
$(srcdir)/d3d10 \
|
|
$(srcdir)/d3d11 \
|
|
$(srcdir)/ipc \
|
|
$(NULL)
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
LIBRARY_NAME = layers
|
|
MSVC_ENABLE_PGO := 1
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
ifdef MOZ_DEBUG
|
|
DEFINES += -DD3D_DEBUG_INFO
|
|
endif
|
|
|
|
ifdef MOZ_ENABLE_D3D10_LAYER
|
|
DEFINES += -DMOZ_ENABLE_D3D10_LAYER
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
|
|
|
LOCAL_INCLUDES += \
|
|
-I$(topsrcdir)/content/events/src \
|
|
-I$(ANDROID_SOURCE)/frameworks/base/include/media/stagefright \
|
|
-I$(ANDROID_SOURCE)/frameworks/base/include/media/stagefright/openmax \
|
|
-I$(ANDROID_SOURCE)/frameworks/av/include/media/stagefright \
|
|
-I$(ANDROID_SOURCE)/frameworks/native/include/media/openmax \
|
|
$(NULL)
|
|
|
|
CXXFLAGS += $(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS) $(TK_CFLAGS)
|
|
|
|
ifdef _MSC_VER
|
|
ifeq ($(CPU_ARCH),x86_64)
|
|
# Workaround compiler bug (Bug 795594)
|
|
LayerTreeInvalidation.$(OBJ_SUFFIX): CXXFLAGS += -GL-
|
|
Layers.$(OBJ_SUFFIX): CXXFLAGS += -GL-
|
|
endif
|
|
endif
|