mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
79 lines
1.8 KiB
Makefile
79 lines
1.8 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@
|
|
|
|
CHROME_DEPS = buildconfig.html
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
USE_RCS_MK := 1
|
|
include $(topsrcdir)/config/makefiles/makeutils.mk
|
|
|
|
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)" \
|
|
-DMOZ_APP_NAME=$(MOZ_APP_NAME) \
|
|
-DMOZ_BUILD_APP=$(MOZ_BUILD_APP) \
|
|
$(NULL)
|
|
|
|
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)"
|
|
endif
|
|
|
|
ifeq (Android,$(OS_TARGET))
|
|
DEFINES += -DANDROID_PACKAGE_NAME=$(ANDROID_PACKAGE_NAME)
|
|
endif
|
|
|
|
source_repo ?= $(call getSourceRepo)
|
|
ifneq (,$(filter http%,$(source_repo)))
|
|
DEFINES += -DSOURCE_REPO="$(source_repo)"
|
|
endif
|
|
|
|
BUILD_HOSTNAME = $(shell hostname -s || hostname)
|
|
DEFINES += -DBUILD_HOSTNAME="$(BUILD_HOSTNAME)"
|
|
|
|
ifdef MOZ_TOOLKIT_SEARCH
|
|
DEFINES += -DMOZ_TOOLKIT_SEARCH
|
|
endif
|
|
|
|
EXTRA_JS_MODULES = \
|
|
debug.js \
|
|
DeferredTask.jsm \
|
|
Deprecated.jsm \
|
|
Dict.jsm \
|
|
Geometry.jsm \
|
|
InlineSpellChecker.jsm \
|
|
PageMenu.jsm \
|
|
PopupNotifications.jsm \
|
|
PropertyListUtils.jsm \
|
|
Task.jsm \
|
|
PrivateBrowsingUtils.jsm \
|
|
$(NULL)
|
|
|
|
EXTRA_PP_JS_MODULES = \
|
|
Services.jsm \
|
|
WindowDraggingUtils.jsm \
|
|
Troubleshoot.jsm \
|
|
UpdateChannel.jsm \
|
|
$(NULL)
|
|
|
|
ifneq (Android,$(OS_TARGET))
|
|
EXTRA_PP_JS_MODULES += LightweightThemeConsumer.jsm
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|