Bug 1523562 [wpt PR 14802] - [Animation Worklet] Upstream worklet animation with...
[gecko.git] / browser / build.mk
blob38f8650d9756a7424c660d4e2a4fc26ffe4a8ca5
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 package:
6 @$(MAKE) -C browser/installer
8 package-compare:
9 @$(MAKE) -C browser/installer package-compare
11 stage-package:
12 @$(MAKE) -C browser/installer stage-package
14 install::
15 @$(MAKE) -C browser/installer install
17 clean::
18 @$(MAKE) -C browser/installer clean
20 distclean::
21 @$(MAKE) -C browser/installer distclean
23 source-package::
24 @$(MAKE) -C browser/installer source-package
26 upload::
27 @$(MAKE) -C browser/installer upload
29 source-upload::
30 @$(MAKE) -C browser/installer source-upload
32 hg-bundle::
33 @$(MAKE) -C browser/installer hg-bundle
35 l10n-check wget-en-US:
36 @$(MAKE) -C browser/locales $@
38 # make -j1 because dependencies in l10n build targets don't work
39 # with parallel builds
40 merge-% installers-% langpack-% chrome-%:
41 $(MAKE) -j1 -C browser/locales $@
43 ifdef ENABLE_TESTS
44 # Implemented in testing/testsuite-targets.mk
46 mochitest-browser-chrome:
47 $(RUN_MOCHITEST) --flavor=browser
48 $(CHECK_TEST_ERROR)
50 mochitest:: mochitest-browser-chrome
52 .PHONY: mochitest-browser-chrome
54 endif