summaryrefslogtreecommitdiffstats
path: root/settings.gradle
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-12-25 23:29:47 +0000
committerMoonchild <moonchild@palemoon.org>2020-12-25 23:29:47 +0000
commit9f004841a248c7c17f536be77d7af67de7b3f39b (patch)
tree4efbf2cb6c89ba8427ca48bd1615416105234d7a /settings.gradle
parent62568d94d5e7b9b3cccb3d7cbf5b284005568845 (diff)
downloadUXP-9f004841a248c7c17f536be77d7af67de7b3f39b.tar
UXP-9f004841a248c7c17f536be77d7af67de7b3f39b.tar.gz
UXP-9f004841a248c7c17f536be77d7af67de7b3f39b.tar.lz
UXP-9f004841a248c7c17f536be77d7af67de7b3f39b.tar.xz
UXP-9f004841a248c7c17f536be77d7af67de7b3f39b.zip
Issue #1053 - Part 1c: Remove references to mobile/android targets and paths
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle56
1 files changed, 1 insertions, 55 deletions
diff --git a/settings.gradle b/settings.gradle
index d581dcd41..9d75e3242 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,55 +1 @@
-// You might think topsrcdir is '.', but that's not true when the Gradle build
-// is launched from within IntelliJ.
-def topsrcdir = rootProject.projectDir.absolutePath
-
-def commandLine = ["${topsrcdir}/mach", "environment", "--format", "json", "--verbose"]
-def proc = commandLine.execute(null, new File(topsrcdir))
-def standardOutput = new ByteArrayOutputStream()
-proc.consumeProcessOutput(standardOutput, standardOutput)
-proc.waitFor()
-
-// Only show the output if something went wrong.
-if (proc.exitValue() != 0) {
- throw new GradleException("Process '${commandLine}' finished with non-zero exit value ${proc.exitValue()}:\n\n${standardOutput.toString()}")
-}
-
-import groovy.json.JsonSlurper
-def slurper = new JsonSlurper()
-def json = slurper.parseText(standardOutput.toString())
-
-if (json.substs.MOZ_BUILD_APP != 'mobile/android') {
- throw new GradleException("Building with Gradle is only supported for Fennec, i.e., MOZ_BUILD_APP == 'mobile/android'.")
-}
-
-// Set the Android SDK location. This is the *least specific* mechanism, which
-// is unfortunate: we'd prefer to use the *most specific* mechanism. That is,
-// local.properties (first 'sdk.dir', then 'android.dir') and then the
-// environment variable ANDROID_HOME will override this. That's unfortunate,
-// but it's hard to automatically arrange better.
-System.setProperty('android.home', json.substs.ANDROID_SDK_ROOT)
-
-include ':app'
-include ':geckoview'
-include ':geckoview_example'
-include ':omnijar'
-include ':thirdparty'
-
-project(':app').projectDir = new File("${json.topsrcdir}/mobile/android/app")
-project(':geckoview').projectDir = new File("${json.topsrcdir}/mobile/android/geckoview")
-project(':geckoview_example').projectDir = new File("${json.topsrcdir}/mobile/android/geckoview_example")
-project(':omnijar').projectDir = new File("${json.topsrcdir}/mobile/android/app/omnijar")
-project(':thirdparty').projectDir = new File("${json.topsrcdir}/mobile/android/thirdparty")
-
-if (json.substs.MOZ_ANDROID_PACKAGE_INSTALL_BOUNCER) {
- include ':bouncer'
- project(':bouncer').projectDir = new File("${json.topsrcdir}/mobile/android/bouncer")
-}
-
-// The Gradle instance is shared between settings.gradle and all the
-// other build.gradle files (see
-// http://forums.gradle.org/gradle/topics/define_extension_properties_from_settings_xml).
-// We use this ext property to pass the per-object-directory mozconfig
-// between scripts. This lets us execute set-up code before we gradle
-// tries to configure the project even once, and as a side benefit
-// saves invoking |mach environment| multiple times.
-gradle.ext.mozconfig = json
+throw new GradleException("Building with Gradle is not supported.")