2007-03-22 10:30:00 -07:00
|
|
|
#
|
2012-05-21 04:12:37 -07: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/.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-04 11:26:44 -07:00
|
|
|
DEPTH = @DEPTH@
|
2007-03-22 10:30:00 -07:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = widget
|
|
|
|
LIBRARY_NAME = widget_windows
|
2012-01-03 19:10:06 -08:00
|
|
|
EXPORT_LIBRARY = 1
|
|
|
|
IS_COMPONENT = 1
|
|
|
|
RESFILE = widget.res
|
|
|
|
MODULE_NAME = nsWidgetWinModule
|
2007-03-22 10:30:00 -07:00
|
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
|
2012-11-02 04:54:44 -07:00
|
|
|
ifdef MOZ_METRO
|
|
|
|
DIRS = winrt
|
|
|
|
endif
|
|
|
|
|
2011-03-03 08:20:02 -08:00
|
|
|
CPPSRCS = \
|
|
|
|
nsWindow.cpp \
|
|
|
|
nsWindowGfx.cpp \
|
|
|
|
nsWindowDbg.cpp \
|
|
|
|
nsAppShell.cpp \
|
|
|
|
nsToolkit.cpp \
|
|
|
|
nsFilePicker.cpp \
|
|
|
|
nsScreenWin.cpp \
|
|
|
|
nsScreenManagerWin.cpp \
|
|
|
|
nsLookAndFeel.cpp \
|
|
|
|
nsUXThemeData.cpp \
|
|
|
|
nsNativeThemeWin.cpp \
|
|
|
|
nsWinGesture.cpp \
|
|
|
|
nsIdleServiceWin.cpp \
|
|
|
|
nsSound.cpp \
|
|
|
|
nsIMM32Handler.cpp \
|
|
|
|
WindowHook.cpp \
|
|
|
|
WinTaskbar.cpp \
|
|
|
|
TaskbarPreview.cpp \
|
|
|
|
TaskbarTabPreview.cpp \
|
|
|
|
TaskbarWindowPreview.cpp \
|
|
|
|
TaskbarPreviewButton.cpp \
|
|
|
|
JumpListBuilder.cpp \
|
|
|
|
JumpListItem.cpp \
|
|
|
|
GfxInfo.cpp \
|
|
|
|
WidgetTraceEvent.cpp \
|
2011-06-24 07:20:03 -07:00
|
|
|
AudioSession.cpp \
|
2012-01-03 19:10:06 -08:00
|
|
|
nsWidgetFactory.cpp \
|
2012-01-04 02:21:44 -08:00
|
|
|
WinUtils.cpp \
|
2012-03-05 19:20:28 -08:00
|
|
|
WinMouseScrollHandler.cpp \
|
2011-03-03 08:20:02 -08:00
|
|
|
$(NULL)
|
2008-02-21 12:49:24 -08:00
|
|
|
|
2010-11-21 16:29:47 -08:00
|
|
|
ifdef MOZ_CRASHREPORTER
|
|
|
|
CPPSRCS += LSPAnnotator.cpp
|
|
|
|
endif
|
|
|
|
|
2008-02-21 12:49:24 -08:00
|
|
|
ifdef NS_PRINTING
|
|
|
|
CPPSRCS += \
|
2007-03-22 10:30:00 -07:00
|
|
|
nsPrintOptionsWin.cpp \
|
|
|
|
nsPrintSettingsWin.cpp \
|
|
|
|
nsDeviceContextSpecWin.cpp \
|
|
|
|
$(NULL)
|
2008-02-21 12:49:24 -08:00
|
|
|
endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
CPPSRCS += \
|
2010-07-27 05:47:42 -07:00
|
|
|
KeyboardLayout.cpp \
|
2009-01-05 10:17:44 -08:00
|
|
|
IEnumFE.cpp \
|
|
|
|
nsDataObj.cpp \
|
|
|
|
nsDataObjCollection.cpp \
|
2007-03-22 10:30:00 -07:00
|
|
|
nsNativeDragTarget.cpp \
|
|
|
|
nsNativeDragSource.cpp \
|
|
|
|
nsDragService.cpp \
|
2009-01-05 10:17:44 -08:00
|
|
|
nsClipboard.cpp \
|
2007-03-22 10:30:00 -07:00
|
|
|
nsImageClipboard.cpp \
|
|
|
|
nsBidiKeyboard.cpp \
|
|
|
|
$(NULL)
|
2009-08-25 12:13:42 -07:00
|
|
|
ifdef NS_ENABLE_TSF
|
|
|
|
CPPSRCS += nsTextStore.cpp
|
|
|
|
endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
DEFINES += -D_IMPL_NS_WIDGET -DMOZ_UNICODE
|
|
|
|
|
2010-06-06 03:37:44 -07:00
|
|
|
ifdef MOZ_ENABLE_D3D9_LAYER
|
|
|
|
DEFINES += -DMOZ_ENABLE_D3D9_LAYER
|
|
|
|
endif
|
|
|
|
|
2010-09-30 15:53:47 -07:00
|
|
|
ifdef MOZ_ENABLE_D3D10_LAYER
|
|
|
|
DEFINES += -DMOZ_ENABLE_D3D10_LAYER
|
|
|
|
endif
|
|
|
|
|
2012-01-03 19:10:06 -08:00
|
|
|
SHARED_LIBRARY_LIBS = \
|
|
|
|
../xpwidgets/$(LIB_PREFIX)xpwidgets_s.$(LIB_SUFFIX) \
|
|
|
|
$(NULL)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-08-13 16:04:39 -07:00
|
|
|
EXPORTS = nsdefs.h WindowHook.h
|
2011-06-24 07:20:03 -07:00
|
|
|
EXPORTS_NAMESPACES = mozilla/widget
|
|
|
|
EXPORTS_mozilla/widget = AudioSession.h
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
LOCAL_INCLUDES = \
|
|
|
|
-I. \
|
|
|
|
-I$(srcdir)/../xpwidgets \
|
2012-05-17 00:04:16 -07:00
|
|
|
-I$(srcdir)/../shared \
|
2007-03-22 10:30:00 -07:00
|
|
|
-I$(srcdir) \
|
2011-07-11 07:05:07 -07:00
|
|
|
-I$(topsrcdir)/layout/generic \
|
|
|
|
-I$(topsrcdir)/layout/xul/base/src \
|
2009-06-16 11:59:35 -07:00
|
|
|
-I$(topsrcdir)/toolkit/xre \
|
2011-02-11 17:56:11 -08:00
|
|
|
-I$(topsrcdir)/xpcom/base \
|
2012-09-22 12:28:35 -07:00
|
|
|
-I$(topsrcdir)/content/events/src \
|
2007-03-22 10:30:00 -07:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
|
2009-11-06 14:33:12 -08:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
|
|
|
|
2009-12-09 21:15:56 -08:00
|
|
|
ifdef ENABLE_TESTS
|
|
|
|
TOOL_DIRS += tests
|
|
|
|
endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
2009-05-18 11:15:05 -07:00
|
|
|
|
2012-05-25 23:44:00 -07:00
|
|
|
CXXFLAGS += $(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS)
|