mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
115 lines
2.3 KiB
Makefile
115 lines
2.3 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
|
|
|
|
MODULE = widget
|
|
LIBRARY_NAME = widget_gtk2
|
|
EXPORT_LIBRARY = 1
|
|
IS_COMPONENT = 1
|
|
MODULE_NAME = nsWidgetGtk2Module
|
|
GRE_MODULE = 1
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
NATIVE_THEME_SUPPORT = 1
|
|
|
|
|
|
|
|
CSRCS = \
|
|
mozcontainer.c \
|
|
$(NULL)
|
|
|
|
ifdef ACCESSIBILITY
|
|
CSRCS += maiRedundantObjectFactory.c
|
|
endif
|
|
|
|
CPPSRCS = \
|
|
nsWindow.cpp \
|
|
nsAppShell.cpp \
|
|
nsWidgetFactory.cpp \
|
|
nsToolkit.cpp \
|
|
nsBidiKeyboard.cpp \
|
|
nsLookAndFeel.cpp \
|
|
nsGtkKeyUtils.cpp \
|
|
nsFilePicker.cpp \
|
|
nsSound.cpp \
|
|
nsNativeKeyBindings.cpp \
|
|
nsScreenGtk.cpp \
|
|
nsScreenManagerGtk.cpp \
|
|
nsImageToPixbuf.cpp \
|
|
nsGtkIMModule.cpp \
|
|
WidgetTraceEvent.cpp \
|
|
$(NULL)
|
|
|
|
ifdef MOZ_X11
|
|
CPPSRCS += nsIdleServiceGTK.cpp
|
|
endif
|
|
|
|
ifdef NS_PRINTING
|
|
CPPSRCS += \
|
|
nsDeviceContextSpecG.cpp \
|
|
nsPrintOptionsGTK.cpp \
|
|
nsPrintDialogGTK.cpp \
|
|
nsPrintSettingsGTK.cpp \
|
|
nsCUPSShim.cpp \
|
|
nsPaperPS.cpp \
|
|
nsPSPrinters.cpp \
|
|
$(NULL)
|
|
endif
|
|
|
|
ifdef MOZ_X11
|
|
CPPSRCS += nsClipboard.cpp \
|
|
nsDragService.cpp \
|
|
$(NULL)
|
|
endif
|
|
|
|
# build our subdirs, too
|
|
|
|
SHARED_LIBRARY_LIBS = ../xpwidgets/libxpwidgets_s.a
|
|
|
|
EXPORTS = \
|
|
nsGTKToolkit.h \
|
|
nsIImageToPixbuf.h \
|
|
mozcontainer.h \
|
|
$(NULL)
|
|
|
|
ifdef NATIVE_THEME_SUPPORT
|
|
CSRCS += gtk2drawing.c
|
|
CPPSRCS += nsNativeThemeGTK.cpp
|
|
DEFINES += -DNATIVE_THEME_SUPPORT
|
|
endif
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
CFLAGS += $(MOZ_GTK2_CFLAGS) $(MOZ_STARTUP_NOTIFICATION_CFLAGS)
|
|
CXXFLAGS += $(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS) \
|
|
$(MOZ_GTK2_CFLAGS) $(MOZ_STARTUP_NOTIFICATION_CFLAGS)
|
|
|
|
ifdef MOZ_PLATFORM_MAEMO
|
|
ifdef MOZ_ENABLE_GCONF
|
|
CXXFLAGS += $(MOZ_GCONF_CFLAGS)
|
|
endif
|
|
endif
|
|
|
|
DEFINES += -DCAIRO_GFX -DMOZ_APP_NAME='"$(MOZ_APP_NAME)"'
|
|
|
|
INCLUDES += \
|
|
-I$(srcdir)/../xpwidgets \
|
|
-I$(srcdir)/../shared \
|
|
-I$(topsrcdir)/layout/generic \
|
|
-I$(topsrcdir)/layout/xul/base/src \
|
|
-I$(topsrcdir)/other-licenses/atk-1.0 \
|
|
$(NULL)
|
|
ifdef MOZ_X11
|
|
INCLUDES += -I$(srcdir)/../shared/x11
|
|
endif
|