2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:23 +04: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/.
|
|
|
|
|
2017-04-11 16:47:28 +03:00
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'Build Config & IDE Support')
|
|
|
|
|
|
|
|
with Files('bouncer/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'Distributions')
|
|
|
|
|
|
|
|
with Files('branding/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'General')
|
|
|
|
|
|
|
|
with Files('build/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'Build Config & IDE Support')
|
|
|
|
|
|
|
|
with Files('config/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'Build Config & IDE Support')
|
|
|
|
|
|
|
|
with Files('docs/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'General')
|
|
|
|
|
|
|
|
with Files('geckoview/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'GeckoView')
|
|
|
|
|
|
|
|
with Files('geckoview/src/main/aidl/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'Audio/Video')
|
|
|
|
|
|
|
|
with Files('geckoview/src/main/java/org/mozilla/gecko/mozglue/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'Audio/Video')
|
|
|
|
|
|
|
|
with Files('geckoview_example/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'GeckoView')
|
|
|
|
|
|
|
|
with Files('gradle/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'Build Config & IDE Support')
|
|
|
|
|
|
|
|
with Files('search/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'Search Activity')
|
|
|
|
|
|
|
|
with Files('services/**'):
|
|
|
|
BUG_COMPONENT = ('Android Background Services', 'Android Sync')
|
|
|
|
|
|
|
|
with Files('themes/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'Theme and Visual Design')
|
|
|
|
|
|
|
|
with Files('thirdparty/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'General')
|
|
|
|
|
2013-02-26 00:47:23 +04:00
|
|
|
CONFIGURE_SUBST_FILES += ['installer/Makefile']
|
|
|
|
|
|
|
|
DIRS += [
|
|
|
|
'../locales',
|
|
|
|
'locales',
|
2014-10-02 04:14:07 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_ANDROID_MLS_STUMBLER']:
|
|
|
|
DIRS += ['stumbler']
|
|
|
|
|
|
|
|
DIRS += [
|
2013-02-26 00:47:23 +04:00
|
|
|
'base',
|
|
|
|
'chrome',
|
|
|
|
'components',
|
2016-06-09 04:37:06 +03:00
|
|
|
'extensions',
|
2013-02-26 00:47:23 +04:00
|
|
|
'modules',
|
|
|
|
'themes/core',
|
2017-05-23 00:27:13 +03:00
|
|
|
'themes/geckoview',
|
2013-02-26 00:47:23 +04:00
|
|
|
'app',
|
|
|
|
'fonts',
|
|
|
|
]
|
|
|
|
|
2016-01-28 02:28:31 +03:00
|
|
|
if CONFIG['MOZ_ANDROID_PACKAGE_INSTALL_BOUNCER']:
|
|
|
|
DIRS += ['bouncer'] # No ordering implied with respect to base.
|
|
|
|
|
2016-03-16 02:02:01 +03:00
|
|
|
TEST_DIRS += [
|
|
|
|
'tests',
|
|
|
|
]
|
2015-12-06 02:30:49 +03:00
|
|
|
|
|
|
|
SPHINX_TREES['fennec'] = 'docs'
|