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

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

Issue 2018603003: Remove VisualBench and its Android implementation. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 7 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
OLDNEW
(Empty)
1 apply plugin: 'com.android.application'
2
3 android {
4 compileSdkVersion 19
5 buildToolsVersion "22.0.1"
6
7 defaultConfig {
8 applicationId "com.skia.visualbench"
9 minSdkVersion 19
10 signingConfig signingConfigs.debug
11 targetSdkVersion 19
12 versionCode 1
13 versionName "1.0"
14 }
15
16 sourceSets.main.jni.srcDirs = [] //disable automatic ndk-build call
17 sourceSets.main.jniLibs.srcDir "src/main/libs"
18
19 productFlavors {
20 arm {}
21 arm64 {}
22 x86 {}
23 x86_64 {}
24 mips {}
25 mips64 {}
26 }
27
28 // make sure that app is built and shared libraries are copied to correct di rectories
29 setupSkiaLibraryBuild(project, applicationVariants, "CopyVisualBenchDeps")
30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698