mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
20 lines
574 B
Makefile
20 lines
574 B
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/.
|
|
|
|
modules := \
|
|
healthreporter.jsm \
|
|
profile.jsm \
|
|
providers.jsm \
|
|
$(NULL)
|
|
|
|
MAIN_JS_MODULE := HealthReport.jsm
|
|
MAIN_JS_MODULE_PATH = $(FINAL_TARGET)/modules
|
|
MAIN_JS_MODULE_FLAGS := $(extra_pp_flags)
|
|
PP_TARGETS += MAIN_JS_MODULE
|
|
|
|
MODULES := $(modules)
|
|
MODULES_PATH = $(FINAL_TARGET)/modules/services/healthreport
|
|
MODULES_FLAGS := $(extra_pp_flags)
|
|
PP_TARGETS += MODULES
|