From 1c6c3b60c1a29faa09a5356cd5570e1b19f0ae04 Mon Sep 17 00:00:00 2001 From: Nick Alexander Date: Tue, 26 Jan 2016 11:54:00 -0800 Subject: [PATCH] Bug 1234629 - Post: Add Gradle support for bouncer. r=me --- mobile/android/app/build.gradle | 4 +- mobile/android/bouncer/Makefile.in | 5 ++ mobile/android/bouncer/build.gradle | 76 +++++++++++++++++++++++++++++ settings.gradle | 5 ++ 4 files changed, 89 insertions(+), 1 deletion(-) create mode 100644 mobile/android/bouncer/build.gradle diff --git a/mobile/android/app/build.gradle b/mobile/android/app/build.gradle index 6e398500d79..ee02af5b644 100644 --- a/mobile/android/app/build.gradle +++ b/mobile/android/app/build.gradle @@ -114,7 +114,9 @@ android { } assets { - if (mozconfig.substs.MOZ_ANDROID_DISTRIBUTION_DIRECTORY) { + if (mozconfig.substs.MOZ_ANDROID_DISTRIBUTION_DIRECTORY && !mozconfig.substs.MOZ_ANDROID_PACKAGE_INSTALL_BOUNCER) { + // If we are packaging the bouncer, it will have the distribution, so don't put + // it in the main APK as well. srcDir "${mozconfig.substs.MOZ_ANDROID_DISTRIBUTION_DIRECTORY}/assets" } srcDir "${topsrcdir}/mobile/android/app/assets" diff --git a/mobile/android/bouncer/Makefile.in b/mobile/android/bouncer/Makefile.in index efc6841a04a..058d70c25c5 100644 --- a/mobile/android/bouncer/Makefile.in +++ b/mobile/android/bouncer/Makefile.in @@ -22,4 +22,9 @@ manifest_FLAGS += \ -DMOZ_ANDROID_SHARED_FXACCOUNT_TYPE="$(MOZ_ANDROID_SHARED_FXACCOUNT_TYPE)" \ $(NULL) +# Targets built very early during a Gradle build. +gradle-targets: $(abspath AndroidManifest.xml) + +.PHONY: gradle-targets + libs:: $(ANDROID_APK_NAME).apk diff --git a/mobile/android/bouncer/build.gradle b/mobile/android/bouncer/build.gradle new file mode 100644 index 00000000000..84f5bd0c0a0 --- /dev/null +++ b/mobile/android/bouncer/build.gradle @@ -0,0 +1,76 @@ +buildDir "${topobjdir}/gradle/build/mobile/android/bouncer" + +apply plugin: 'com.android.application' + +android { + compileSdkVersion 23 + buildToolsVersion "23.0.1" + + defaultConfig { + targetSdkVersion 23 + minSdkVersion 15 + applicationId mozconfig.substs.ANDROID_PACKAGE_NAME + } + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_7 + targetCompatibility JavaVersion.VERSION_1_7 + } + + dexOptions { + javaMaxHeapSize "2g" + } + + lintOptions { + abortOnError false + } + + buildTypes { + release { + minifyEnabled false + } + } + + sourceSets { + main { + manifest.srcFile "${topobjdir}/mobile/android/bouncer/AndroidManifest.xml" + assets { + if (mozconfig.substs.MOZ_ANDROID_DISTRIBUTION_DIRECTORY) { + srcDir "${mozconfig.substs.MOZ_ANDROID_DISTRIBUTION_DIRECTORY}/assets" + } + } + java { + srcDir 'java' + } + res { + srcDir "${topsrcdir}/${mozconfig.substs.MOZ_BRANDING_DIRECTORY}/res" // For the icon. + srcDir 'res' + } + } + } +} + +task generateCodeAndResources(type:Exec) { + workingDir "${topobjdir}" + + commandLine mozconfig.substs.GMAKE + args '-C' + args "${topobjdir}/mobile/android/bouncer" + args 'gradle-targets' + + // Only show the output if something went wrong. + ignoreExitValue = true + standardOutput = new ByteArrayOutputStream() + errorOutput = standardOutput + doLast { + if (execResult.exitValue != 0) { + throw new GradleException("Process '${commandLine}' finished with non-zero exit value ${execResult.exitValue}:\n\n${standardOutput.toString()}") + } + } +} + +afterEvaluate { + android.applicationVariants.all { + preBuild.dependsOn generateCodeAndResources + } +} diff --git a/settings.gradle b/settings.gradle index 266c76dcdad..d3c0ddef474 100644 --- a/settings.gradle +++ b/settings.gradle @@ -36,6 +36,11 @@ project(':app').projectDir = new File("${json.topsrcdir}/mobile/android/app") 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).