mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
109 lines
2.4 KiB
Makefile
109 lines
2.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@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
LIBRARY_NAME = thebes
|
|
MSVC_ENABLE_PGO := 1
|
|
LIBXUL_LIBRARY = 1
|
|
EXPORT_LIBRARY = 1
|
|
|
|
ifndef _MSC_VER
|
|
FAIL_ON_WARNINGS = 1
|
|
endif # !_MSC_VER
|
|
|
|
# gfxSVGGlyphs needs nsDOMParser.h
|
|
LOCAL_INCLUDES += \
|
|
-I$(topsrcdir)/content/base/public \
|
|
-I$(topsrcdir)/content/xml/document/src \
|
|
$(NULL)
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),$(findstring $(MOZ_WIDGET_TOOLKIT),android gtk2 gtk3 gonk qt))
|
|
DEFINES += -DMOZ_ENABLE_FREETYPE
|
|
endif
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
|
../layers/$(LIB_PREFIX)layers.$(LIB_SUFFIX) \
|
|
$(NULL)
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
|
|
|
ifdef MOZ_ENABLE_D3D9_LAYER
|
|
DEFINES += -DMOZ_ENABLE_D3D9_LAYER
|
|
endif
|
|
|
|
ifdef MOZ_ENABLE_D3D10_LAYER
|
|
DEFINES += -DMOZ_ENABLE_D3D10_LAYER
|
|
endif
|
|
|
|
ACDEFINES += -UWIN32_LEAN_AND_MEAN
|
|
endif
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),android)
|
|
# This is set for "normal Android", that is, when Gecko is running on
|
|
# top of the android java runtime.
|
|
DEFINES += -DMOZ_USING_ANDROID_JAVA_WIDGETS
|
|
endif
|
|
|
|
DEFINES += \
|
|
-DHB_DONT_DEFINE_STDINT \
|
|
-DMOZ_OTS_REPORT_ERRORS \
|
|
-DGRAPHITE2_STATIC \
|
|
$(NULL)
|
|
|
|
ifeq (WINNT,$(OS_TARGET))
|
|
DEFINES += -DOTS_DLL
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
|
|
|
DEFINES := $(filter-out -DUNICODE,$(DEFINES))
|
|
|
|
CXXFLAGS += $(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS) $(TK_CFLAGS)
|
|
CFLAGS += $(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS) $(TK_CFLAGS)
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),android)
|
|
CXXFLAGS += $(CAIRO_FT_CFLAGS)
|
|
endif
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gonk)
|
|
CXXFLAGS += $(CAIRO_FT_CFLAGS)
|
|
endif
|
|
|
|
ifdef MOZ_WIDGET_GTK
|
|
CXXFLAGS += $(MOZ_PANGO_CFLAGS)
|
|
endif
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
|
|
CXXFLAGS += $(CAIRO_FT_CFLAGS)
|
|
endif
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),qt)
|
|
CXXFLAGS += $(CAIRO_FT_CFLAGS) $(MOZ_PANGO_CFLAGS)
|
|
endif
|
|
|
|
# The file uses SSE2 intrinsics, so it needs special compile flags on some
|
|
# compilers.
|
|
ifneq (,$(INTEL_ARCHITECTURE))
|
|
ifdef GNU_CC
|
|
gfxAlphaRecoverySSE2.$(OBJ_SUFFIX): CXXFLAGS+=-msse2
|
|
endif
|
|
|
|
ifdef SOLARIS_SUNPRO_CXX
|
|
gfxAlphaRecoverySSE2.$(OBJ_SUFFIX): OS_CXXFLAGS += -xarch=sse2 -xO4
|
|
endif
|
|
endif
|
|
|
|
PremultiplyTables.h: $(srcdir)/genTables.py
|
|
$(PYTHON) $(srcdir)/genTables.py
|
|
|
|
gfxUtils.$(OBJ_SUFFIX): PremultiplyTables.h
|