mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 23:31:56 +00:00
c6f2ef4d51
The best kind of patch: bulk deletion. This removes two separate but similar build flags, and an unsupported integration piece. The first packaged Fennec's resources into an ill-defined GeckoView archive; the second built on the first to produce an Android ARchive for external consumption. Neither of these artifacts are supported or have consumers; in fact, they mislead potential consumers, since they're known to be broken. The Gradle build work under the --with-gradle flag, and significant follow-up, is the path forward if Mozilla wants to invest in packaging GeckoView on Android for external consumption. That is, rather than hacking together AAR files, we'll use the well-supported Gradle mechanisms for building and publishing such libraries. MozReview-Commit-ID: 4Z1jJ8z0cyJ --HG-- extra : rebase_source : b8e65f39c286313fe8963bf3832d9b6977ef188f
37 lines
811 B
Python
37 lines
811 B
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/.
|
|
|
|
CONFIGURE_SUBST_FILES += ['installer/Makefile']
|
|
|
|
DIRS += [
|
|
'../locales',
|
|
'locales',
|
|
]
|
|
|
|
if CONFIG['MOZ_ANDROID_MLS_STUMBLER']:
|
|
DIRS += ['stumbler']
|
|
|
|
DIRS += [
|
|
'javaaddons', # Must be built before base.
|
|
'base',
|
|
'chrome',
|
|
'components',
|
|
'extensions',
|
|
'modules',
|
|
'themes/core',
|
|
'app',
|
|
'fonts',
|
|
]
|
|
|
|
if CONFIG['MOZ_ANDROID_PACKAGE_INSTALL_BOUNCER']:
|
|
DIRS += ['bouncer'] # No ordering implied with respect to base.
|
|
|
|
TEST_DIRS += [
|
|
'tests',
|
|
]
|
|
|
|
SPHINX_TREES['fennec'] = 'docs'
|