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

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

Issue 1921553009: Add CMake path to gradle (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: No Duplication 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
« no previous file with comments | « platform_tools/android/apps/build.gradle ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 android { 8 android {
9 compileSdkVersion 19 9 compileSdkVersion 19
10 buildToolsVersion "22.0.1" 10 buildToolsVersion "22.0.1"
11 defaultConfig { 11 defaultConfig {
12 applicationId "org.skia.vulkanviewer" 12 applicationId "org.skia.vulkanviewer"
13 minSdkVersion 19 13 minSdkVersion 19
14 targetSdkVersion 19 14 targetSdkVersion 19
15 versionCode 1 15 versionCode 1
16 versionName "1.0" 16 versionName "1.0"
17 signingConfig signingConfigs.debug 17 signingConfig signingConfigs.debug
18 } 18 }
19 sourceSets.main.jni.srcDirs = [] //disable automatic ndk-build call 19 sourceSets.main.jni.srcDirs = [] //disable automatic ndk-build call
20 sourceSets.main.jniLibs.srcDir "src/main/libs" 20 sourceSets.main.jniLibs.srcDir "src/main/libs"
21 productFlavors { arm {}; arm64 {}; x86 {}; x86_64 {}; mips {}; mips64 {}; } 21 productFlavors { arm {}; arm64 {}; x86 {}; x86_64 {}; mips {}; mips64 {}; }
22 22
23 setupSkiaLibraryBuild(project, applicationVariants, "--vulkan CopyVulkanView erDeps") 23 setupSkiaLibraryBuild(project, applicationVariants, "--vulkan CopyVulkanView erDeps", true)
24 } 24 }
OLDNEW
« no previous file with comments | « platform_tools/android/apps/build.gradle ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698