2016-07-14 16:16:42 +00:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:23 +00:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# 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/.
|
|
|
|
|
|
|
|
CONFIGURE_SUBST_FILES += ['installer/Makefile']
|
|
|
|
|
|
|
|
DIRS += [
|
|
|
|
'../locales',
|
|
|
|
'locales',
|
2014-10-02 00:14:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_ANDROID_MLS_STUMBLER']:
|
|
|
|
DIRS += ['stumbler']
|
|
|
|
|
|
|
|
DIRS += [
|
2015-06-18 04:47:29 +00:00
|
|
|
'javaaddons', # Must be built before base.
|
2013-02-25 20:47:23 +00:00
|
|
|
'base',
|
|
|
|
'chrome',
|
|
|
|
'components',
|
2016-06-09 01:37:06 +00:00
|
|
|
'extensions',
|
2013-02-25 20:47:23 +00:00
|
|
|
'modules',
|
|
|
|
'themes/core',
|
|
|
|
'app',
|
|
|
|
'fonts',
|
|
|
|
]
|
|
|
|
|
2016-01-27 23:28:31 +00:00
|
|
|
if CONFIG['MOZ_ANDROID_PACKAGE_INSTALL_BOUNCER']:
|
|
|
|
DIRS += ['bouncer'] # No ordering implied with respect to base.
|
|
|
|
|
2016-03-15 23:02:01 +00:00
|
|
|
TEST_DIRS += [
|
|
|
|
'tests',
|
|
|
|
]
|
2015-12-05 23:30:49 +00:00
|
|
|
|
|
|
|
SPHINX_TREES['fennec'] = 'docs'
|