Bug 1964465 - remove unused build configs for geckoview lite/debug. r=geckoview-reviewers,bhearsum,nalexander

The builds themselves were removed in bug 1778172.

Differential Revision: https://phabricator.services.mozilla.com/D247926
This commit is contained in:
Julien Cristau
2025-05-07 12:52:13 +00:00
committed by jcristau@mozilla.com
parent c624b2fa7d
commit 8d89b12789
9 changed files with 0 additions and 86 deletions

View File

@@ -1,7 +0,0 @@
. "$topsrcdir/mobile/android/config/mozconfigs/common"
ac_add_options --enable-geckoview-lite
. "$topsrcdir/mobile/android/config/mozconfigs/android-aarch64/debug"
. "$topsrcdir/mobile/android/config/mozconfigs/common.override"

View File

@@ -1,14 +0,0 @@
. "$topsrcdir/mobile/android/config/mozconfigs/common"
# Global options
ac_add_options --enable-debug
# Android
ac_add_options --target=arm-linux-androideabi
ac_add_options --enable-geckoview-lite
export MOZILLA_OFFICIAL=1
ac_add_options --with-branding=mobile/android/branding/nightly
. "$topsrcdir/mobile/android/config/mozconfigs/common.override"

View File

@@ -1,14 +0,0 @@
. "$topsrcdir/mobile/android/config/mozconfigs/common"
# Global options
ac_add_options --enable-debug
# Android
ac_add_options --target=i686-linux-android
ac_add_options --enable-geckoview-lite
export MOZILLA_OFFICIAL=1
ac_add_options --with-branding=mobile/android/branding/nightly
. "$topsrcdir/mobile/android/config/mozconfigs/common.override"

View File

@@ -1,7 +0,0 @@
. "$topsrcdir/mobile/android/config/mozconfigs/common"
ac_add_options --enable-geckoview-lite
. "$topsrcdir/mobile/android/config/mozconfigs/android-x86_64/debug"
. "$topsrcdir/mobile/android/config/mozconfigs/common.override"

View File

@@ -1,10 +0,0 @@
# 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/.
config = {
"stage_platform": "android-aarch64-lite-debug",
"mozconfig_platform": "android-aarch64",
"extra_mozconfig_content": ["ac_add_options --enable-geckoview-lite"],
"debug_build": True,
}

View File

@@ -1,10 +0,0 @@
# 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/.
config = {
"stage_platform": "android-arm-lite-debug",
"mozconfig_platform": "android-arm",
"extra_mozconfig_content": ["ac_add_options --enable-geckoview-lite"],
"debug_build": True,
}

View File

@@ -1,10 +0,0 @@
# 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/.
config = {
"stage_platform": "android-x86_64-lite-debug",
"mozconfig_platform": "android-x86_64",
"extra_mozconfig_content": ["ac_add_options --enable-geckoview-lite"],
"debug_build": True,
}

View File

@@ -1,10 +0,0 @@
# 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/.
config = {
"stage_platform": "android-x86-lite-debug",
"mozconfig_platform": "android-x86",
"extra_mozconfig_content": ["ac_add_options --enable-geckoview-lite"],
"debug_build": True,
}

View File

@@ -271,7 +271,6 @@ class BuildOptionParser:
"arm": path_base + "%s_arm.py",
"arm-lite": path_base + "%s_arm_lite.py",
"arm-debug": path_base + "%s_arm_debug.py",
"arm-lite-debug": path_base + "%s_arm_debug_lite.py",
"arm-gradle": path_base + "%s_arm_gradle.py",
"arm-profile-generate": path_base + "%s_arm_profile_generate.py",
"rusttests": path_base + "%s_rusttests.py",
@@ -279,12 +278,10 @@ class BuildOptionParser:
"x86": path_base + "%s_x86.py",
"x86-lite": path_base + "%s_x86_lite.py",
"x86-debug": path_base + "%s_x86_debug.py",
"x86-lite-debug": path_base + "%s_x86_debug_lite.py",
"x86-profile-generate": path_base + "%s_x86_profile_generate.py",
"x86_64": path_base + "%s_x86_64.py",
"x86_64-lite": path_base + "%s_x86_64_lite.py",
"x86_64-debug": path_base + "%s_x86_64_debug.py",
"x86_64-lite-debug": path_base + "%s_x86_64_debug_lite.py",
"x86_64-debug-isolated-process": path_base
+ "%s_x86_64_debug_isolated_process.py",
"x86_64-profile-generate": path_base + "%s_x86_64_profile_generate.py",
@@ -294,7 +291,6 @@ class BuildOptionParser:
"aarch64-pgo": path_base + "%s_aarch64_pgo.py",
"aarch64-debug": path_base + "%s_aarch64_debug.py",
"aarch64-fenix-debug": path_base + "%s_aarch64_fenix_debug.py",
"aarch64-lite-debug": path_base + "%s_aarch64_debug_lite.py",
"aarch64-debug-searchfox": path_base + "%s_aarch64_debug_searchfox.py",
"aarch64-profile-generate": path_base + "%s_aarch64_profile_generate.py",
"android-geckoview-docs": path_base + "%s_geckoview_docs.py",