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

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

Issue 2117793002: Try fix the mac build bot after removing Android SampleApp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Try fix the build bot Created 4 years, 5 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.sample_app"
9 minSdkVersion 9
10 targetSdkVersion 19
11 versionCode 1
12 versionName "1.0"
13 signingConfig signingConfigs.debug
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, "CopySampleAppDeps")
30 }
OLDNEW
« no previous file with comments | « include/views/SkWindow.h ('k') | platform_tools/android/apps/sample_app/src/main/AndroidManifest.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698