Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(667)

Side by Side Diff: platform_tools/android/apps/visualbench/build.gradle

Issue 1306953006: Run Appurify bot in release mode (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: revert changes to skia_android.gypi Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | tools/buildbot_spec.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 apply plugin: 'com.android.application' 1 apply plugin: 'com.android.application'
2 2
3 android { 3 android {
4 compileSdkVersion 19 4 compileSdkVersion 19
5 buildToolsVersion "22.0.1" 5 buildToolsVersion "22.0.1"
6 6
7 defaultConfig { 7 defaultConfig {
8 applicationId "com.skia.visualbench" 8 applicationId "com.skia.visualbench"
9 minSdkVersion 19 9 minSdkVersion 19
10 signingConfig signingConfigs.debug
10 targetSdkVersion 19 11 targetSdkVersion 19
11 versionCode 1 12 versionCode 1
12 versionName "1.0" 13 versionName "1.0"
13 } 14 }
14 15
15 sourceSets.main.jni.srcDirs = [] //disable automatic ndk-build call 16 sourceSets.main.jni.srcDirs = [] //disable automatic ndk-build call
16 sourceSets.main.jniLibs.srcDir "src/main/libs" 17 sourceSets.main.jniLibs.srcDir "src/main/libs"
17 18
18 productFlavors { 19 productFlavors {
19 arm {} 20 arm {}
(...skipping 17 matching lines...) Expand all
37 buildNativeLib.onlyIf { !project.hasProperty("suppressNativeBuild") } 38 buildNativeLib.onlyIf { !project.hasProperty("suppressNativeBuild") }
38 39
39 TaskCollection<Task> assembleTask 40 TaskCollection<Task> assembleTask
40 assembleTask = project.tasks.matching { 41 assembleTask = project.tasks.matching {
41 it.name.contains("assemble") && 42 it.name.contains("assemble") &&
42 it.name.toLowerCase().endsWith(variant.name.toLowerCase()) 43 it.name.toLowerCase().endsWith(variant.name.toLowerCase())
43 } 44 }
44 assembleTask.getAt(0).dependsOn buildNativeLib 45 assembleTask.getAt(0).dependsOn buildNativeLib
45 } 46 }
46 } 47 }
OLDNEW
« no previous file with comments | « no previous file | tools/buildbot_spec.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698