mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
5169c0a913
From 9e0ba7f425143f545eb6c4b26a9a96b5ade4d8e9 Mon Sep 17 00:00:00 2001
55 lines
1.2 KiB
Makefile
55 lines
1.2 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 = widget_windows
|
|
MSVC_ENABLE_PGO := 1
|
|
EXPORT_LIBRARY = 1
|
|
IS_COMPONENT = 1
|
|
RESFILE = widget.res
|
|
MODULE_NAME = nsWidgetWinModule
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
DEFINES += -D_IMPL_NS_WIDGET -DMOZ_UNICODE
|
|
|
|
ifdef MOZ_ENABLE_D3D9_LAYER
|
|
DEFINES += -DMOZ_ENABLE_D3D9_LAYER
|
|
endif
|
|
|
|
ifdef MOZ_ENABLE_D3D10_LAYER
|
|
DEFINES += -DMOZ_ENABLE_D3D10_LAYER
|
|
endif
|
|
|
|
SHARED_LIBRARY_LIBS = \
|
|
../xpwidgets/$(LIB_PREFIX)xpwidgets_s.$(LIB_SUFFIX) \
|
|
$(NULL)
|
|
|
|
LOCAL_INCLUDES = \
|
|
-I. \
|
|
-I$(srcdir)/../xpwidgets \
|
|
-I$(srcdir)/../shared \
|
|
-I$(srcdir) \
|
|
-I$(topsrcdir)/layout/generic \
|
|
-I$(topsrcdir)/layout/xul/base/src \
|
|
-I$(topsrcdir)/toolkit/xre \
|
|
-I$(topsrcdir)/xpcom/base \
|
|
-I$(topsrcdir)/content/events/src \
|
|
$(NULL)
|
|
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
CXXFLAGS += $(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS)
|