gecko-dev/mobile/android/moz.build
Nick Alexander c46ec74815 Bug 1580356 - Remove Fennec (Firefox for Android). r=snorp,mshal
This does many things:

1) stops producing (and consuming) `FennecJNI*` JNI wrappers
2) removes the :app and :thirdparty Gradle projects
3) removes relevant pieces of the Gradle target configuration
4) updates lints
5) purges old configurations

After this commit, the `mobile/android` project/application builds
only GeckoView.

Differential Revision: https://phabricator.services.mozilla.com/D46536

--HG--
extra : moz-landing-system : lando
2019-10-04 20:55:11 +00:00

71 lines
1.8 KiB
Python

# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# 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/.
with Files('**'):
BUG_COMPONENT = ('Firefox for Android', 'Build Config & IDE Support')
SCHEDULES.exclusive = ['android']
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/**'):
BUG_COMPONENT = ('GeckoView', 'General')
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 = ('GeckoView', 'General')
with Files('gradle/**'):
BUG_COMPONENT = ('Firefox for Android', 'Build Config & IDE Support')
with Files('themes/**'):
BUG_COMPONENT = ('Firefox for Android', 'Theme and Visual Design')
CONFIGURE_SUBST_FILES += ['installer/Makefile']
DIRS += [
'../locales',
'locales',
]
DIRS += [
'actors',
'base',
'chrome',
'components',
'extensions',
'modules',
'themes/core',
'themes/geckoview',
'app',
'fonts',
]
TEST_DIRS += [
'tests',
]
TEST_HARNESS_FILES.testing.mochitest.tests.junit += [
'geckoview/src/androidTest/assets/www/hello.html',
'geckoview/src/androidTest/assets/www/simple_redirect.sjs',
]
SPHINX_TREES['fennec'] = 'docs'
with Files('docs/**'):
SCHEDULES.exclusive = ['docs']