blob: 5b15ea40785e302c5c41ac27c6d1156317f33716 [file] [log] [blame]
Yigit Boyar88c16ce2017-02-08 16:06:14 -08001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Sergey Vasilinets22b62142017-11-22 20:32:27 -080017
Sergey Vasilinets22b62142017-11-22 20:32:27 -080018import android.support.DiffAndDocs
Aurimas Liutikas1187af12017-11-28 15:28:01 -080019import android.support.gmaven.GMavenVersionChecker
Yigit Boyar88c16ce2017-02-08 16:06:14 -080020import com.android.build.gradle.internal.coverage.JacocoPlugin
21import com.android.build.gradle.internal.coverage.JacocoReportTask
22import com.android.build.gradle.internal.tasks.DeviceProviderInstrumentTestTask
Aurimas Liutikasa0150042017-04-21 09:46:12 -070023import org.gradle.api.logging.configuration.ShowStacktrace
Yigit Boyar88c16ce2017-02-08 16:06:14 -080024
Aurimas Liutikas419f9932017-12-18 12:53:17 -080025import javax.tools.ToolProvider
26
Yigit Boyar88c16ce2017-02-08 16:06:14 -080027def supportRoot = ext.supportRootFolder
28if (supportRoot == null) {
29 throw new RuntimeException("variable supportRootFolder is not set. you must set it before" +
30 " including this script")
31}
32def init = new Properties()
33ext.init = init
Alan Viverette1b862372017-03-22 11:32:28 -040034ext.init.debugKeystore = file("${supportRoot}/development/keystore/debug.keystore")
Yigit Boyara9ac19d2017-09-20 16:11:49 -070035rootProject.ext.versionChecker = new GMavenVersionChecker(rootProject)
Aurimas Liutikas9ab3b4c32017-04-19 09:33:27 -070036ext.runningInBuildServer = System.env.DIST_DIR != null && System.env.OUT_DIR != null
Yigit Boyar88c16ce2017-02-08 16:06:14 -080037
38apply from: "${supportRoot}/buildSrc/dependencies.gradle"
Aurimas Liutikas1187af12017-11-28 15:28:01 -080039apply from: "${supportRoot}/buildSrc/build_dependencies.gradle"
Yigit Boyar88c16ce2017-02-08 16:06:14 -080040
Sergey Vasilinets16385352017-12-13 16:56:47 -080041def enableDoclavaAndJDiff(p, dacOptions) {
Yigit Boyar88c16ce2017-02-08 16:06:14 -080042 p.configurations {
43 doclava
44 jdiff
45 }
46
47 p.dependencies {
Aurimas Liutikas419f9932017-12-18 12:53:17 -080048 doclava build_libs.doclava
49 // tools.jar required for com.sun.javadoc
50 doclava files(((URLClassLoader) ToolProvider.getSystemToolClassLoader()).getURLs())
51 jdiff build_libs.jdiff
Aurimas Liutikas1187af12017-11-28 15:28:01 -080052 jdiff build_libs.xml_parser_apis
53 jdiff build_libs.xerces_impl
Yigit Boyar88c16ce2017-02-08 16:06:14 -080054 }
Sergey Vasilinets16385352017-12-13 16:56:47 -080055 def allChecks = DiffAndDocs.configureDiffAndDocs(rootProject, supportRootFolder, dacOptions)
56 createArchive.dependsOn(allChecks)
Yigit Boyar88c16ce2017-02-08 16:06:14 -080057}
58
Aurimas Liutikasbb78f3f2017-06-19 11:30:37 -070059def getFullSdkPath() {
Aurimas Liutikasb06771d2017-04-20 09:46:49 -070060 final String osName = System.getProperty("os.name").toLowerCase();
61 final boolean isMacOsX =
62 osName.contains("mac os x") || osName.contains("darwin") || osName.contains("osx");
63 final String platform = isMacOsX ? 'darwin' : 'linux'
Aurimas Liutikasbb78f3f2017-06-19 11:30:37 -070064 return "${repos.prebuiltsRoot}/fullsdk-${platform}"
65}
66
67def setSdkInLocalPropertiesFile() {
Aurimas Liutikas97c75372017-09-28 17:44:34 -070068 ext.buildToolsVersion = '27.0.0'
Aurimas Liutikasbb78f3f2017-06-19 11:30:37 -070069 final String fullSdkPath = getFullSdkPath();
Yigit Boyar88c16ce2017-02-08 16:06:14 -080070 if (file(fullSdkPath).exists()) {
71 gradle.ext.currentSdk = 26
Alan Viveretteeb9f3322017-03-09 16:29:57 -050072 project.ext.androidJar =
73 files("${fullSdkPath}/platforms/android-${gradle.currentSdk}/android.jar")
74 project.ext.androidSrcJar =
75 file("${fullSdkPath}/platforms/android-${gradle.currentSdk}/android-stubs-src.jar")
Alan Viverette810a1482017-03-20 12:43:43 -040076 project.ext.androidApiTxt = null
Yigit Boyar88c16ce2017-02-08 16:06:14 -080077 File props = file("local.properties")
78 props.write "sdk.dir=${fullSdkPath}"
Aurimas Liutikas3c666002017-03-08 19:30:28 -080079 ext.usingFullSdk = true
Yigit Boyar88c16ce2017-02-08 16:06:14 -080080 } else {
81 gradle.ext.currentSdk = 'current'
Aurimas Liutikas9ab3b4c32017-04-19 09:33:27 -070082 project.ext.androidJar = files("${repos.prebuiltsRoot}/sdk/current/android.jar")
Alan Viverette810a1482017-03-20 12:43:43 -040083 project.ext.androidSrcJar = null
Aurimas Liutikas9ab3b4c32017-04-19 09:33:27 -070084 project.ext.androidApiTxt = file("${repos.prebuiltsRoot}/sdk/api/26.txt")
Aurimas Liutikasbb78f3f2017-06-19 11:30:37 -070085 System.setProperty('android.dir', "${supportRootFolder}/../../")
Yigit Boyar88c16ce2017-02-08 16:06:14 -080086 File props = file("local.properties")
87 props.write "android.dir=../../"
Aurimas Liutikas3c666002017-03-08 19:30:28 -080088 ext.usingFullSdk = false
Yigit Boyar88c16ce2017-02-08 16:06:14 -080089 }
90}
91
92def setupRepoOutAndBuildNumber() {
Yigit Boyaref300662017-05-01 11:52:07 -070093 // common support repo folder which works well for prebuilts.
Yigit Boyar88c16ce2017-02-08 16:06:14 -080094 ext.supportRepoOut = ''
Aurimas Liutikas76542da2017-06-29 17:00:29 -070095 ext.buildNumber = "0"
Yigit Boyar88c16ce2017-02-08 16:06:14 -080096 /*
97 * With the build server you are given two env variables.
98 * The OUT_DIR is a temporary directory you can use to put things during the build.
99 * The DIST_DIR is where you want to save things from the build.
100 *
101 * The build server will copy the contents of DIST_DIR to somewhere and make it available.
102 */
Yigit Boyar7bfacb72017-03-02 14:27:41 -0800103 if (ext.runningInBuildServer) {
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800104 buildDir = new File(System.env.OUT_DIR + '/gradle/frameworks/support/build')
105 .getCanonicalFile()
106 project.ext.distDir = new File(System.env.DIST_DIR).getCanonicalFile()
107
108 // the build server does not pass the build number so we infer it from the last folder of
109 // the dist path.
110 ext.buildNumber = project.ext.distDir.getName()
Aurimas Liutikasa0150042017-04-21 09:46:12 -0700111
112 // the build server should always print out full stack traces for any failures.
113 gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800114 } else {
115 buildDir = file("${ext.supportRootFolder}/../../out/host/gradle/frameworks/support/build")
116 project.ext.distDir = new File("${ext.supportRootFolder}/../../out/dist")
117 }
118 subprojects {
119 // Change buildDir first so that all plugins pick up the new value.
120 project.buildDir = new File("$project.parent.buildDir/../$project.name/build")
121 }
122 ext.supportRepoOut = new File(buildDir, 'support_repo')
123 ext.testApkDistOut = ext.distDir
Yigit Boyar7bfacb72017-03-02 14:27:41 -0800124 ext.testResultsDistDir = new File(distDir, "host-test-reports")
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800125 ext.docsDir = new File(buildDir, 'javadoc')
126}
127
Aurimas Liutikas38e8f4d92017-06-16 08:31:03 -0700128def configureBuildOnServer() {
129 def buildOnServerTask = rootProject.tasks.create("buildOnServer")
130 rootProject.tasks.whenTaskAdded { task ->
Aurimas Liutikas212905f2017-10-09 15:28:28 -0700131 if ("createArchive".equals(task.name) || "distDocs".equals(task.name)) {
Aurimas Liutikas38e8f4d92017-06-16 08:31:03 -0700132 buildOnServerTask.dependsOn task
133 }
134 }
135
136 subprojects {
137 project.tasks.whenTaskAdded { task ->
138 if ("assembleErrorProne".equals(task.name) || "assembleAndroidTest".equals(task.name)) {
139 buildOnServerTask.dependsOn task
140 }
141 }
142 }
143}
144
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800145def configureSubProjects() {
146 // lint every library
147 def lintTask = project.tasks.create("lint")
148 subprojects {
Aurimas Liutikas6509a1a2017-05-09 16:25:43 -0700149 repos.addMavenRepositories(repositories)
150
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800151 // Only modify Android projects.
Aurimas Liutikas419f9932017-12-18 12:53:17 -0800152 if (project.name.equals('noto-emoji-compat')
Hyundo Moonda9ee6b22017-07-21 14:32:12 +0900153 || project.name.equals('support-media-compat-test-lib')) {
Yigit Boyar7bfacb72017-03-02 14:27:41 -0800154 // disable tests and return
155 project.tasks.whenTaskAdded { task ->
156 if (task instanceof org.gradle.api.tasks.testing.Test) {
157 task.enabled = false
158 }
159 }
160 return
161 }
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800162
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800163 project.ext.currentSdk = gradle.ext.currentSdk
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800164
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800165 project.plugins.whenPluginAdded { plugin ->
166 def isAndroidLibrary = "com.android.build.gradle.LibraryPlugin"
167 .equals(plugin.class.name)
168 def isAndroidApp = "com.android.build.gradle.AppPlugin".equals(plugin.class.name)
169 def isJavaLibrary = "org.gradle.api.plugins.JavaPlugin".equals(plugin.class.name)
170
171 if (isAndroidLibrary || isAndroidApp) {
172 project.android.buildToolsVersion = rootProject.buildToolsVersion
173
174 // Enable code coverage for debug builds only if we are not running inside the IDE,
175 // since enabling coverage reports breaks the method parameter resolution in the IDE
176 // debugger.
177 project.android.buildTypes.debug.testCoverageEnabled =
Sergey Vasilinetsac8e72b2017-04-26 15:55:17 -0700178 !project.hasProperty('android.injected.invoked.from.ide')
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800179
180 // Copy the class files in a jar to be later used to generate code coverage report
181 project.android.testVariants.all { v ->
182 // check if the variant has any source files
183 // and test coverage is enabled
184 if (v.buildType.testCoverageEnabled
185 && v.sourceSets.any { !it.java.sourceFiles.isEmpty() }) {
186 def jarifyTask = project.tasks.create(
187 name: "package${v.name.capitalize()}ClassFilesForCoverageReport",
188 type: Jar) {
189 from v.testedVariant.javaCompile.destinationDir
190 exclude "**/R.class"
191 exclude "**/R\$*.class"
192 exclude "**/BuildConfig.class"
193 destinationDir file(project.distDir)
Aurimas Liutikas76542da2017-06-29 17:00:29 -0700194 archiveName "${project.name}-${v.baseName}-allclasses.jar"
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800195 }
Aurimas Liutikas21b7fce2017-06-23 09:52:08 -0700196
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800197 def collectJacocoAntPackages = project.tasks.create(
198 name: "collectJacocoAntPackages",
199 type: Jar) {
Aurimas Liutikas21b7fce2017-06-23 09:52:08 -0700200 inputs.files project.configurations[JacocoPlugin.ANT_CONFIGURATION_NAME]
201 from {
Aurimas Liutikas585a9342017-06-25 16:07:56 -0700202 project.configurations[JacocoPlugin.ANT_CONFIGURATION_NAME]
203 .resolvedConfiguration
204 .resolvedArtifacts.collect{ zipTree(it.getFile()) }} {
Aurimas Liutikas21b7fce2017-06-23 09:52:08 -0700205 // exclude all the signatures the jar might have
206 exclude "META-INF/*.SF"
207 exclude "META-INF/*.DSA"
208 exclude "META-INF/*.RSA"
209 }
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800210 destinationDir file(project.distDir)
Aurimas Liutikas21b7fce2017-06-23 09:52:08 -0700211 archiveName "jacocoant.jar"
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800212 }
Aurimas Liutikas21b7fce2017-06-23 09:52:08 -0700213
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800214 jarifyTask.dependsOn v.getJavaCompiler()
Aurimas Liutikas21b7fce2017-06-23 09:52:08 -0700215 v.assemble.dependsOn jarifyTask , collectJacocoAntPackages
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800216 }
217 }
218
219 // Enforce NewApi lint check as fatal.
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800220 project.android.lintOptions.fatal 'NewApi'
Aurimas Liutikas6c625702017-09-20 14:35:47 -0700221 lintTask.dependsOn {project.lint}
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800222 }
223
224 if (isAndroidLibrary || isJavaLibrary) {
225 // Add library to the aggregate dependency report.
226 task allDeps(type: DependencyReportTask) {}
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800227
Aurimas Liutikas6509a1a2017-05-09 16:25:43 -0700228 project.afterEvaluate {
229 Upload uploadTask = (Upload) project.tasks.uploadArchives;
230 uploadTask.repositories.mavenDeployer {
Aurimas Liutikas279780d2017-08-09 14:03:59 -0700231 repository(url: uri("$rootProject.ext.supportRepoOut"))
232 setUniqueVersion(true)
Aurimas Liutikas6509a1a2017-05-09 16:25:43 -0700233 }
234
235 // Before the upload, make sure the repo is ready.
236 uploadTask.dependsOn rootProject.tasks.prepareRepo
237
Aurimas Liutikas6509a1a2017-05-09 16:25:43 -0700238 // Make the mainupload depend on this one.
239 mainUpload.dependsOn uploadTask
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800240 }
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800241 }
242 }
243
Yigit Boyar7bfacb72017-03-02 14:27:41 -0800244 // Copy instrumentation test APKs and app APKs into the dist dir
245 // For test apks, they are uploaded only if we have java test sources.
246 // For regular app apks, they are uploaded only if they have java sources.
247 project.tasks.whenTaskAdded { task ->
248 if (task.name.startsWith("packageDebug")) {
249 def testApk = task.name.contains("AndroidTest")
250 task.doLast {
251 def source = testApk ? project.android.sourceSets.androidTest
252 : project.android.sourceSets.main
Yigit Boyare606d6d2017-09-07 12:37:36 -0700253 def hasKotlinSources = false
254 if (source.hasProperty('kotlin')) {
255 if (!source.kotlin.files.isEmpty()) {
256 hasKotlinSources = true
257 } else {
258 // kotlin files does not show in java sources due to the *.java filter
259 // so we need to check them manually
260 hasKotlinSources = source.java.sourceDirectoryTrees.any {
261 !fileTree(dir: it.dir, include:'**/*.kt').files.isEmpty()
262 }
263 }
264 }
265 def hasSourceCode = !source.java.sourceFiles.isEmpty() || hasKotlinSources
266 if (task.hasProperty("outputDirectory") && (hasSourceCode || !testApk)) {
Yigit Boyar7bfacb72017-03-02 14:27:41 -0800267 copy {
Aurimas Liutikasef3b4922017-06-28 10:44:59 -0700268 from(task.outputDirectory)
269 include '*.apk'
Yigit Boyar7bfacb72017-03-02 14:27:41 -0800270 into(rootProject.ext.testApkDistOut)
271 rename { String fileName ->
Hyundo Moon9938e172017-07-26 20:51:11 +0900272 // Exclude media-compat-test-* modules from existing support library
273 // presubmit tests.
274 if (fileName.contains("media-compat-test")) {
275 fileName.replace("-debug-androidTest", "")
Yigit Boyar96a0fcd2017-08-25 18:18:28 -0700276 } else {
277 // multiple modules may have the same name so prefix the name with
278 // the module's path to ensure it is unique.
279 // e.g. palette-v7-debug-androidTest.apk becomes
280 // support-palette-v7_palette-v7-debug-androidTest.apk
281 "${project.getPath().replace(':', '-').substring(1)}_${fileName}"
Hyundo Moon9938e172017-07-26 20:51:11 +0900282 }
Yigit Boyar7bfacb72017-03-02 14:27:41 -0800283 }
284 }
285 }
286 }
287 }
288 }
289
290 // copy host side test results to DIST
291 project.tasks.whenTaskAdded { task ->
292 if (task instanceof org.gradle.api.tasks.testing.Test) {
293 def junitReport = task.reports.junitXml
294 if (junitReport.enabled) {
295 def zipTask = project.tasks.create(name : "zipResultsOf${task.name.capitalize()}", type : Zip) {
296 destinationDir(testResultsDistDir)
Yigit Boyar278676d2017-03-10 15:29:11 -0800297 // first one is always :, drop it.
298 archiveName("${project.getPath().split(":").join("_").substring(1)}.zip")
Yigit Boyar7bfacb72017-03-02 14:27:41 -0800299 }
300 if (project.rootProject.ext.runningInBuildServer) {
301 task.ignoreFailures = true
302 }
303 task.finalizedBy zipTask
304 task.doFirst {
305 zipTask.from(junitReport.destination)
306 }
307 }
308 }
309 }
310
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800311 project.afterEvaluate { p ->
312 // remove dependency on the test so that we still get coverage even if some tests fail
313 p.tasks.findAll { it instanceof JacocoReportTask }.each { task ->
314 def toBeRemoved = new ArrayList()
315 def dependencyList = task.taskDependencies.values
316 dependencyList.each { dep ->
317 if (dep instanceof String) {
318 def t = tasks.findByName(dep)
319 if (t instanceof DeviceProviderInstrumentTestTask) {
320 toBeRemoved.add(dep)
321 task.mustRunAfter(t)
322 }
323 }
324 }
325 toBeRemoved.each { dep ->
326 dependencyList.remove(dep)
327 }
328 }
329 }
330 }
331}
332
333def setupRelease() {
334 apply from: "${ext.supportRootFolder}/buildSrc/release.gradle"
335}
336
Yigit Boyar88c16ce2017-02-08 16:06:14 -0800337ext.init.enableDoclavaAndJDiff = this.&enableDoclavaAndJDiff
338ext.init.setSdkInLocalPropertiesFile = this.&setSdkInLocalPropertiesFile
339ext.init.setupRepoOutAndBuildNumber = this.&setupRepoOutAndBuildNumber
340ext.init.setupRelease = this.&setupRelease
Aurimas Liutikas38e8f4d92017-06-16 08:31:03 -0700341ext.init.configureSubProjects = this.&configureSubProjects
Yigit Boyare1bbf712017-03-08 13:52:37 -0800342ext.init.configureBuildOnServer = this.&configureBuildOnServer