diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:50 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:50 +0000 |
commit | def92d1b8e9d373e2f6f27c366d578d97d8960c6 (patch) | |
tree | 2ef34b9ad8bb9a9220e05d60352558b15f513894 /taskcluster/scripts/builder | |
parent | Adding debian version 125.0.3-1. (diff) | |
download | firefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.tar.xz firefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.zip |
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'taskcluster/scripts/builder')
-rwxr-xr-x | taskcluster/scripts/builder/build-android.sh | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/taskcluster/scripts/builder/build-android.sh b/taskcluster/scripts/builder/build-android.sh new file mode 100755 index 0000000000..fd2ecd0e2b --- /dev/null +++ b/taskcluster/scripts/builder/build-android.sh @@ -0,0 +1,35 @@ +#!/bin/sh + +set -e +set -x + +mozconfig=$(mktemp) +cat > $mozconfig <<EOF +# the corresponding geckoview's mozconfig, to pick up its config options +. $MOZCONFIG +# no-compile because we don't need to build native code here +. $GECKO_PATH/build/mozconfig.no-compile + +# Disable Keyfile Loading (and checks) +# 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 + +ac_add_options --disable-nodejs +unset NODEJS + +export GRADLE_MAVEN_REPOSITORIES="file://$MOZ_FETCHES_DIR/geckoview","file://$MOZ_FETCHES_DIR/android-gradle-dependencies/mozilla","file://$MOZ_FETCHES_DIR/android-gradle-dependencies/google","file://$MOZ_FETCHES_DIR/android-gradle-dependencies/central","file://$MOZ_FETCHES_DIR/android-gradle-dependencies/gradle-plugins","file:///$MOZ_FETCHES_DIR/plugins.gradle.org/m2" +EOF +export MOZCONFIG=$mozconfig +GRADLE=$MOZ_FETCHES_DIR/android-gradle-dependencies/gradle-dist/bin/gradle + +./mach configure + +eval $PRE_GRADLEW + +eval $GET_SECRETS + +$GRADLE listRepositories $GRADLEW_ARGS + +eval $POST_GRADLEW |