2016-04-21 14:59:44 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2015 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
|
|
compileSdkVersion 19
|
|
|
|
buildToolsVersion "22.0.1"
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.skia.vulkanviewer"
|
2016-04-27 15:48:56 +00:00
|
|
|
minSdkVersion 19
|
2016-04-21 14:59:44 +00:00
|
|
|
targetSdkVersion 19
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
signingConfig signingConfigs.debug
|
|
|
|
}
|
|
|
|
sourceSets.main.jni.srcDirs = [] //disable automatic ndk-build call
|
|
|
|
sourceSets.main.jniLibs.srcDir "src/main/libs"
|
|
|
|
productFlavors { arm {}; arm64 {}; x86 {}; x86_64 {}; mips {}; mips64 {}; }
|
2016-04-27 15:48:56 +00:00
|
|
|
|
2016-05-02 12:33:20 +00:00
|
|
|
setupSkiaLibraryBuild(project, applicationVariants, "--vulkan CopyVulkanViewerDeps", true)
|
2016-04-21 14:59:44 +00:00
|
|
|
}
|