services/healthreport/Makefile.in

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/services/healthreport/Makefile.in	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,45 @@
     1.4 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.5 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.6 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.7 +
     1.8 +modules := \
     1.9 +  healthreporter.jsm \
    1.10 +  profile.jsm \
    1.11 +  providers.jsm \
    1.12 +  $(NULL)
    1.13 +
    1.14 +testing_modules := \
    1.15 +  utils.jsm \
    1.16 +  $(NULL)
    1.17 +
    1.18 +healthreport_depends = \
    1.19 +  HealthReport.jsm \
    1.20 +  ../common/async.js \
    1.21 +  ../common/bagheeraclient.js \
    1.22 +  ../metrics/Metrics.jsm \
    1.23 +  ../metrics/providermanager.jsm \
    1.24 +  ../metrics/dataprovider.jsm \
    1.25 +  ../metrics/storage.jsm \
    1.26 +  healthreporter.jsm \
    1.27 +  profile.jsm \
    1.28 +  providers.jsm \
    1.29 +  $(NULL)
    1.30 +
    1.31 +
    1.32 +MAIN_JS_MODULE := HealthReport.jsm
    1.33 +MAIN_JS_MODULE_PATH = $(FINAL_TARGET)/modules
    1.34 +MAIN_JS_MODULE_FLAGS := $(extra_pp_flags)
    1.35 +PP_TARGETS += MAIN_JS_MODULE
    1.36 +
    1.37 +MODULES := $(modules)
    1.38 +MODULES_PATH = $(FINAL_TARGET)/modules/services/healthreport
    1.39 +MODULES_FLAGS := $(extra_pp_flags)
    1.40 +PP_TARGETS += MODULES
    1.41 +
    1.42 +TESTING_JS_MODULES := $(addprefix modules-testing/,$(testing_modules))
    1.43 +TESTING_JS_MODULE_DIR := services/healthreport
    1.44 +
    1.45 +include $(topsrcdir)/config/rules.mk
    1.46 +
    1.47 +# Add extra prerequisites until bug 837792 is addressed.
    1.48 +$(FINAL_TARGET)/modules/HealthReport.jsm: $(healthreport_depends)

mercurial