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

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

Issue 2004633002: Add drawer with state information (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Format_old 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
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 apply plugin: 'com.android.application' 7 apply plugin: 'com.android.application'
8
9 dependencies {
10 compile 'com.android.support:support-v13:23.3.0'
djsollen 2016/05/24 17:32:40 does this add more requirements for things people
liyuqian 2016/05/24 20:18:05 I successfully ran android_make Viewer_APK --vulka
11 compile 'com.android.support:appcompat-v7:23.3.0'
12 }
13
8 android { 14 android {
9 compileSdkVersion 19 15 compileSdkVersion 23
djsollen 2016/05/24 17:32:40 why do we need to update these versions?
liyuqian 2016/05/24 20:18:05 Done. Now only compileSdkVersion is 23, others are
10 buildToolsVersion "22.0.1" 16 buildToolsVersion "22.0.1"
11 defaultConfig { 17 defaultConfig {
12 applicationId "org.skia.viewer" 18 applicationId "org.skia.viewer"
13 minSdkVersion 19 19 minSdkVersion 21
14 targetSdkVersion 19 20 targetSdkVersion 23
15 versionCode 1 21 versionCode 1
16 versionName "1.0" 22 versionName "1.0"
17 signingConfig signingConfigs.debug 23 signingConfig signingConfigs.debug
18 } 24 }
19 sourceSets.main.jni.srcDirs = [] //disable automatic ndk-build call 25 sourceSets.main.jni.srcDirs = [] //disable automatic ndk-build call
20 sourceSets.main.jniLibs.srcDir "src/main/libs" 26 sourceSets.main.jniLibs.srcDir "src/main/libs"
21 productFlavors { arm {}; arm64 {}; x86 {}; x86_64 {}; mips {}; mips64 {}; } 27 productFlavors { arm {}; arm64 {}; x86 {}; x86_64 {}; mips {}; mips64 {}; }
22 28
23 setupSkiaLibraryBuild(project, applicationVariants, "--vulkan CopyViewerDeps ", true) 29 setupSkiaLibraryBuild(project, applicationVariants, "--vulkan CopyViewerDeps ", true)
24 } 30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698