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')
|
2017-08-25 22:31:54 +03:00
|
|
|
SCHEDULES.exclusive = ['android']
|
2017-04-11 16:47:28 +03:00
|
|
|
|
|
|
|
with Files('branding/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'General')
|
|
|
|
|
|
|
|
with Files('config/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'Build Config & IDE Support')
|
|
|
|
|
|
|
|
with Files('docs/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'General')
|
|
|
|
|
|
|
|
with Files('geckoview/**'):
|
2019-01-16 17:18:45 +03:00
|
|
|
BUG_COMPONENT = ('GeckoView', 'General')
|
2017-04-11 16:47:28 +03:00
|
|
|
|
|
|
|
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/**'):
|
2019-01-16 17:18:45 +03:00
|
|
|
BUG_COMPONENT = ('GeckoView', 'General')
|
2017-04-11 16:47:28 +03:00
|
|
|
|
|
|
|
with Files('gradle/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'Build Config & IDE Support')
|
|
|
|
|
|
|
|
with Files('themes/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'Theme and Visual Design')
|
|
|
|
|
2013-02-26 00:47:23 +04:00
|
|
|
CONFIGURE_SUBST_FILES += ['installer/Makefile']
|
|
|
|
|
|
|
|
DIRS += [
|
|
|
|
'../locales',
|
|
|
|
'locales',
|
2014-10-02 04:14:07 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
DIRS += [
|
2019-09-20 21:15:25 +03:00
|
|
|
'actors',
|
2013-02-26 00:47:23 +04:00
|
|
|
'base',
|
|
|
|
'chrome',
|
|
|
|
'components',
|
|
|
|
'modules',
|
|
|
|
'themes/core',
|
2017-05-23 00:27:13 +03:00
|
|
|
'themes/geckoview',
|
2013-02-26 00:47:23 +04:00
|
|
|
'app',
|
|
|
|
'fonts',
|
|
|
|
]
|
|
|
|
|
2016-03-16 02:02:01 +03:00
|
|
|
TEST_DIRS += [
|
|
|
|
'tests',
|
|
|
|
]
|
2015-12-06 02:30:49 +03:00
|
|
|
|
2019-09-11 19:43:52 +03:00
|
|
|
TEST_HARNESS_FILES.testing.mochitest.tests.junit += [
|
|
|
|
'geckoview/src/androidTest/assets/www/hello.html',
|
|
|
|
'geckoview/src/androidTest/assets/www/simple_redirect.sjs',
|
|
|
|
]
|
|
|
|
|
2019-11-06 23:09:51 +03:00
|
|
|
SPHINX_TREES['/mobile/android'] = 'docs'
|
2017-10-02 21:22:56 +03:00
|
|
|
|
|
|
|
with Files('docs/**'):
|
|
|
|
SCHEDULES.exclusive = ['docs']
|