Bug 793274 - Make sure to have enough frames pushed to the AudioStream before startin...
[gecko.git] / b2g / build.mk
blob87fdb931143d09529f35637c1f1cb5768a09425a
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 ifndef LIBXUL_SDK
6 include $(topsrcdir)/toolkit/toolkit-tiers.mk
7 else
8 ifdef ENABLE_TESTS
9 tier_testharness_dirs += \
10 testing/mochitest \
11 $(NULL)
12 endif
13 endif
15 TIERS += app
17 ifdef MOZ_EXTENSIONS
18 tier_app_dirs += extensions
19 endif
21 tier_app_dirs += \
22 $(MOZ_BRANDING_DIRECTORY) \
23 b2g \
24 $(NULL)
27 installer:
28 @$(MAKE) -C b2g/installer installer
30 package:
31 @$(MAKE) -C b2g/installer
33 install::
34 @echo "B2G can't be installed directly."
35 @exit 1
37 upload::
38 @$(MAKE) -C b2g/installer upload
40 ifdef ENABLE_TESTS
41 # Implemented in testing/testsuite-targets.mk
43 mochitest-browser-chrome:
44 $(RUN_MOCHITEST) --browser-chrome
45 $(CHECK_TEST_ERROR)
47 mochitest:: mochitest-browser-chrome
49 .PHONY: mochitest-browser-chrome
50 endif