gecko-dev/widget/xpwidgets/Makefile.in

92 строки
2.1 KiB
Makefile
Исходник Обычный вид История

1998-10-28 06:53:57 +03:00
#
2012-05-21 15:12:37 +04:00
# 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/.
1998-10-28 06:53:57 +03:00
DEPTH = @DEPTH@
1998-10-28 06:53:57 +03:00
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = widget
LIBRARY_NAME = xpwidgets_s
LIBXUL_LIBRARY = 1
EXPORTS = \
GfxInfoCollector.h \
$(NULL)
1998-10-28 06:53:57 +03:00
DEFINES += \
-D_IMPL_NS_WIDGET \
$(NULL)
1999-09-16 05:09:42 +04:00
CPPSRCS = \
nsBaseAppShell.cpp \
nsBaseScreen.cpp \
1999-09-16 05:09:42 +04:00
nsBaseWidget.cpp \
nsTransferable.cpp \
nsHTMLFormatConverter.cpp \
1999-09-16 05:09:42 +04:00
nsBaseDragService.cpp \
nsPrimitiveHelpers.cpp \
nsXPLookAndFeel.cpp \
nsClipboardHelper.cpp \
nsPrintOptionsImpl.cpp \
nsPrintSettingsImpl.cpp \
nsPrintSession.cpp \
nsIdleService.cpp \
nsClipboardPrivacyHandler.cpp \
GfxInfoWebGL.cpp \
GfxDriverInfo.cpp \
GfxInfoBase.cpp \
PuppetWidget.cpp \
nsFilePickerProxy.cpp \
WidgetUtils.cpp \
$(NULL)
ifdef MOZ_X11
CPPSRCS += \
GfxInfoX11.cpp
endif
ifneq (,$(filter os2 cocoa windows,$(MOZ_WIDGET_TOOLKIT)))
CPPSRCS += nsBaseClipboard.cpp
endif
ifneq (,$(filter qt gtk2 os2 cocoa windows android gonk,$(MOZ_WIDGET_TOOLKIT)))
CPPSRCS += nsBaseFilePicker.cpp
endif
ifneq (,$(filter qt gtk2 windows cocoa,$(MOZ_WIDGET_TOOLKIT)))
CPPSRCS += nsNativeTheme.cpp
endif
SHARED_LIBRARY_LIBS = ../shared/$(LIB_PREFIX)widget_shared.$(LIB_SUFFIX)
ifdef MOZ_X11
SHARED_LIBRARY_LIBS += ../shared/x11/$(LIB_PREFIX)widget_shared_x11.$(LIB_SUFFIX)
endif
ifdef MOZ_ENABLE_D3D10_LAYER
DEFINES += -DMOZ_ENABLE_D3D10_LAYER
endif
LOCAL_INCLUDES += \
1999-09-16 05:09:42 +04:00
-I$(srcdir)/../$(MOZ_WIDGET_TOOLKIT) \
-I$(srcdir)/../shared \
-I$(topsrcdir)/layout/forms \
-I$(topsrcdir)/layout/generic \
-I$(topsrcdir)/layout/xul/base/src \
-I$(topsrcdir)/view/src \
1999-09-16 05:09:42 +04:00
-I$(srcdir) \
$(NULL)
1998-10-28 06:53:57 +03:00
# we don't want the shared lib, but we want to force the creation of a static lib.
FORCE_STATIC_LIB = 1
include $(topsrcdir)/config/config.mk
include $(topsrcdir)/ipc/chromium/chromium-config.mk
1998-10-28 06:53:57 +03:00
include $(topsrcdir)/config/rules.mk
1999-09-16 05:09:42 +04:00
CXXFLAGS += $(TK_CFLAGS)