allwinner_a64/android/external/conscrypt/testing/build.gradle
2018-08-08 16:14:42 +08:00

23 lines
No EOL
578 B
Groovy

description = 'Conscrypt: Testing'
sourceSets {
main {
java {
srcDirs = ['src/main/java']
}
}
}
dependencies {
// Only compile against this. Other modules will embed the generated code directly.
compileOnly project(':conscrypt-constants')
compile project(':conscrypt-libcore-stub'),
libraries.bouncycastle_apis,
libraries.bouncycastle_provider,
libraries.netty_handler
}
// Don't include this artifact in the distribution.
tasks.install.enabled = false
tasks.uploadArchives.enabled = false;