42 lines
1.7 KiB
Text
42 lines
1.7 KiB
Text
# Many things aren't appropriate for a frontend-only build.
|
|
MOZ_AUTOMATION_BUILD_SYMBOLS=0
|
|
MOZ_AUTOMATION_PACKAGE=0
|
|
MOZ_AUTOMATION_UPLOAD=0
|
|
MOZ_AUTOMATION_PACKAGE_GENERATED_SOURCES=0
|
|
|
|
NO_CACHE=1
|
|
NO_NDK=1
|
|
|
|
. "$topsrcdir/mobile/android/config/mozconfigs/common"
|
|
|
|
# We want to download Gradle.
|
|
ac_add_options --with-gradle
|
|
# We want to use (and populate!) the local Nexus repositories.
|
|
export GRADLE_MAVEN_REPOSITORIES="http://localhost:8081/nexus/content/repositories/mozilla/","http://localhost:8081/nexus/content/repositories/google/","http://localhost:8081/nexus/content/repositories/central/","http://localhost:8081/nexus/content/repositories/gradle-plugins","file://$WORKSPACE/android-gradle-dependencies/plugins.gradle.org/m2/"
|
|
# Nexus runs on HTTP
|
|
ac_add_options --allow-insecure-gradle-repositories
|
|
# Some dependencies may be conditionally-loaded (eg. semanticdb compiler plugins)
|
|
ac_add_options --download-all-gradle-dependencies
|
|
|
|
# From here on, just like ../android-arm/nightly.
|
|
|
|
. "$topsrcdir/build/mozconfig.no-compile"
|
|
|
|
ac_add_options --target=arm-linux-androideabi
|
|
|
|
ac_add_options --disable-tests
|
|
|
|
ac_add_options --with-branding=mobile/android/branding/nightly
|
|
|
|
export MOZILLA_OFFICIAL=1
|
|
|
|
# mozconfigs/common.override would be here, but it needs to be last in the file.
|
|
# End ../android-arm/nightly.
|
|
|
|
# Disable Keyfile Loading (and checks) since dependency fetching doesn't need these keys.
|
|
# This overrides the settings in the common android mozconfig
|
|
ac_add_options --without-mozilla-api-keyfile
|
|
ac_add_options --without-google-location-service-api-keyfile
|
|
ac_add_options --without-google-safebrowsing-api-keyfile
|
|
|
|
. "$topsrcdir/mobile/android/config/mozconfigs/common.override"
|