2009-12-01 13:05:26 -08: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/.
|
2009-12-01 13:05:26 -08:00
|
|
|
|
2012-08-04 11:26:44 -07:00
|
|
|
DEPTH = @DEPTH@
|
2009-12-01 13:05:26 -08:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = gfxipc
|
|
|
|
LIBRARY_NAME = gfxipc_s
|
|
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
EXPORT_LIBRARY = 1
|
|
|
|
|
|
|
|
EXPORTS_NAMESPACES = mozilla/gfx
|
|
|
|
|
|
|
|
EXPORTS_mozilla/gfx = \
|
|
|
|
SharedDIB.h \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
CPPSRCS = SharedDIB.cpp
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
2010-10-25 10:57:13 -07:00
|
|
|
EXPORTS_mozilla/gfx += \
|
|
|
|
SharedDIBWin.h \
|
|
|
|
SharedDIBSurface.h \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
CPPSRCS += \
|
|
|
|
SharedDIBWin.cpp \
|
|
|
|
SharedDIBSurface.cpp \
|
|
|
|
$(NULL)
|
2009-12-01 13:05:26 -08:00
|
|
|
endif
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
2010-10-25 10:57:13 -07:00
|
|
|
|
2012-05-25 23:44:00 -07:00
|
|
|
CXXFLAGS += $(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS) $(TK_CFLAGS)
|