Bug 1452182 [wpt PR 9921] - [css-grid] Minimum width items should include margins...
[gecko.git] / settings.gradle
blob84916a3e91c2250ce2092f2528fbc1fcbd14a09c
1 // You might think topsrcdir is '.', but that's not true when the Gradle build
2 // is launched from within IntelliJ.
3 def topsrcdir = rootProject.projectDir.absolutePath
5 def commandLine = ["${topsrcdir}/mach", "environment", "--format", "json", "--verbose"]
6 def proc = commandLine.execute(null, new File(topsrcdir))
7 def standardOutput = new ByteArrayOutputStream()
8 proc.consumeProcessOutput(standardOutput, standardOutput)
9 proc.waitFor()
11 // Only show the output if something went wrong.
12 if (proc.exitValue() != 0) {
13     throw new GradleException("Process '${commandLine}' finished with non-zero exit value ${proc.exitValue()}:\n\n${standardOutput.toString()}")
16 import groovy.json.JsonSlurper
17 def slurper = new JsonSlurper()
18 def json = slurper.parseText(standardOutput.toString())
20 if (json.substs.MOZ_BUILD_APP != 'mobile/android') {
21     throw new GradleException("Building with Gradle is only supported for Fennec, i.e., MOZ_BUILD_APP == 'mobile/android'.")
24 // Set the Android SDK location.  This is the *least specific* mechanism, which
25 // is unfortunate: we'd prefer to use the *most specific* mechanism.  That is,
26 // local.properties (first 'sdk.dir', then 'android.dir') and then the
27 // environment variable ANDROID_HOME will override this.  That's unfortunate,
28 // but it's hard to automatically arrange better.
29 System.setProperty('android.home', json.substs.ANDROID_SDK_ROOT)
31 include ':app'
32 include ':geckoview'
33 include ':geckoview_example'
34 include ':omnijar'
35 include ':thirdparty'
37 project(':app').projectDir = new File("${json.topsrcdir}/mobile/android/app")
38 project(':geckoview').projectDir = new File("${json.topsrcdir}/mobile/android/geckoview")
39 project(':geckoview_example').projectDir = new File("${json.topsrcdir}/mobile/android/geckoview_example")
40 project(':omnijar').projectDir = new File("${json.topsrcdir}/mobile/android/app/omnijar")
41 project(':thirdparty').projectDir = new File("${json.topsrcdir}/mobile/android/thirdparty")
43 // The Gradle instance is shared between settings.gradle and all the
44 // other build.gradle files (see
45 // http://forums.gradle.org/gradle/topics/define_extension_properties_from_settings_xml).
46 // We use this ext property to pass the per-object-directory mozconfig
47 // between scripts.  This lets us execute set-up code before we gradle
48 // tries to configure the project even once, and as a side benefit
49 // saves invoking |mach environment| multiple times.
50 gradle.ext.mozconfig = json