2003-11-15 07:43:50 +00:00
|
|
|
#
|
2012-05-21 11:12:37 +00: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/.
|
2003-11-15 07:43:50 +00:00
|
|
|
|
|
|
|
|
2012-08-04 18:26:44 +00:00
|
|
|
DEPTH = @DEPTH@
|
2003-11-15 07:43:50 +00:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
2003-11-15 19:33:35 +00:00
|
|
|
CHROME_DEPS = buildconfig.html
|
|
|
|
|
2003-11-15 07:43:50 +00:00
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2008-09-22 18:00:38 +00:00
|
|
|
DEFINES += \
|
|
|
|
-Dtarget="$(target)" \
|
|
|
|
-Dac_configure_args="$(ac_configure_args)" \
|
|
|
|
-DCC="$(CC)" \
|
|
|
|
-DCC_VERSION="$(CC_VERSION)" \
|
|
|
|
-DCFLAGS="$(CFLAGS)" \
|
|
|
|
-DCXX="$(CXX)" \
|
|
|
|
-DCXX_VERSION="$(CXX_VERSION)" \
|
|
|
|
-DCXXFLAGS="$(CXXFLAGS)" \
|
|
|
|
-DCPPFLAGS="$(CPPFLAGS)" \
|
2012-02-24 03:34:18 +00:00
|
|
|
-DMOZ_APP_NAME=$(MOZ_APP_NAME) \
|
|
|
|
-DMOZ_BUILD_APP=$(MOZ_BUILD_APP) \
|
2008-09-22 18:00:38 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2009-12-20 14:25:48 +00:00
|
|
|
MOZ_SOURCE_STAMP ?= $(shell hg -R $(topsrcdir) parent --template="{node|short}\n" 2>/dev/null)
|
|
|
|
ifdef MOZ_SOURCE_STAMP
|
|
|
|
DEFINES += -DSOURCE_CHANGESET="$(MOZ_SOURCE_STAMP)"
|
2008-09-22 18:00:38 +00:00
|
|
|
endif
|
|
|
|
|
2011-08-09 21:16:26 +00:00
|
|
|
ifeq (Android,$(OS_TARGET))
|
|
|
|
DEFINES += -DANDROID_PACKAGE_NAME=$(ANDROID_PACKAGE_NAME)
|
|
|
|
endif
|
|
|
|
|
2012-06-27 15:31:38 +00:00
|
|
|
# strip a trailing slash from the repo URL because it's not always present,
|
|
|
|
# and we want to construct a working URL in buildconfig.html
|
|
|
|
# make+shell+sed = awful
|
|
|
|
_dollar=$$
|
|
|
|
SOURCE_REPO := $(shell cd $(topsrcdir) && hg showconfig paths.default 2>/dev/null | head -n1 | sed -e "s/^ssh:/http:/" -e "s/\/$(_dollar)//" )
|
|
|
|
# extra sanity check for old versions of hg
|
|
|
|
# that don't support showconfig
|
|
|
|
ifeq (http,$(patsubst http%,http,$(SOURCE_REPO)))
|
|
|
|
DEFINES += -DSOURCE_REPO="$(SOURCE_REPO)"
|
2008-09-22 18:00:38 +00:00
|
|
|
endif
|
2004-12-01 00:21:43 +00:00
|
|
|
|
2012-02-09 05:16:47 +00:00
|
|
|
BUILD_HOSTNAME = $(shell hostname -s || hostname)
|
|
|
|
DEFINES += -DBUILD_HOSTNAME="$(BUILD_HOSTNAME)"
|
|
|
|
|
2010-05-30 03:30:04 +00:00
|
|
|
ifdef MOZ_TOOLKIT_SEARCH
|
|
|
|
DEFINES += -DMOZ_TOOLKIT_SEARCH
|
|
|
|
endif
|
|
|
|
|
2012-02-04 17:32:24 +00:00
|
|
|
TEST_DIRS += tests
|
2007-02-17 04:12:28 +00:00
|
|
|
|
2008-10-18 09:57:46 +00:00
|
|
|
EXTRA_JS_MODULES = \
|
2012-08-04 01:22:55 +00:00
|
|
|
debug.js \
|
2012-07-23 20:28:26 +00:00
|
|
|
DeferredTask.jsm \
|
|
|
|
Dict.jsm \
|
2010-08-12 09:51:03 +00:00
|
|
|
Geometry.jsm \
|
2009-10-28 11:15:22 +00:00
|
|
|
InlineSpellChecker.jsm \
|
2012-08-04 01:22:55 +00:00
|
|
|
PageMenu.jsm \
|
2012-07-23 20:28:26 +00:00
|
|
|
PopupNotifications.jsm \
|
2012-10-11 14:00:05 +00:00
|
|
|
PrivateBrowsingUtils.jsm \
|
2012-07-23 20:28:26 +00:00
|
|
|
PropertyListUtils.jsm \
|
2012-08-20 11:51:44 +00:00
|
|
|
Task.jsm \
|
2012-09-10 16:54:41 +00:00
|
|
|
UpdateChannel.jsm \
|
2008-10-18 09:57:46 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2009-10-04 09:28:45 +00:00
|
|
|
EXTRA_PP_JS_MODULES = \
|
|
|
|
LightweightThemeConsumer.jsm \
|
2010-05-30 03:30:04 +00:00
|
|
|
Services.jsm \
|
2010-06-28 06:04:05 +00:00
|
|
|
WindowDraggingUtils.jsm \
|
2012-09-18 20:25:06 +00:00
|
|
|
Troubleshoot.jsm \
|
2009-10-04 09:28:45 +00:00
|
|
|
$(NULL)
|
2008-03-13 19:25:49 +00:00
|
|
|
|
2003-11-15 07:43:50 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|