28f89389f0
Change-Id: Ic32eaec6cce1509f07e7cf610717d3b12d335c89 Reviewed-on: https://skia-review.googlesource.com/83921 Reviewed-by: Hal Canary <halcanary@google.com> Commit-Queue: Hal Canary <halcanary@google.com>
31 lines
879 B
Groovy
31 lines
879 B
Groovy
/*
|
|
* Copyright 2017 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'
|
|
|
|
dependencies {
|
|
compile 'com.android.support:support-annotations:24.0.0'
|
|
compile 'com.android.support.test:runner:0.5'
|
|
compile group: 'junit', name: 'junit', version: '4.+'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "22.0.1"
|
|
defaultConfig {
|
|
applicationId "org.skia.skqp"
|
|
minSdkVersion 19
|
|
targetSdkVersion 19
|
|
versionCode 1
|
|
versionName "1.0"
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
sourceSets.main.jni.srcDirs = []
|
|
sourceSets.main.jniLibs.srcDir "src/main/libs"
|
|
productFlavors { arm {}; arm64 {}; x86 {}; x64 {}; arm64vulkan{}; }
|
|
setupSkiaLibraryBuild(project, applicationVariants, "libskqp_app")
|
|
}
|