You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
625 B

plugins {
id 'com.github.johnrengelman.shadow' version '6.0.0'
}
description = 'Conscrypt: Testing'
sourceSets {
main {
java {
srcDirs = ['src/main/java']
}
}
}
dependencies {
// Only compile against these. Other modules will embed the generated
// constants directly. The stubs libraries should not end up in the
// final build.
compileOnly project(':conscrypt-constants'),
project(':conscrypt-libcore-stub'),
project(':conscrypt-android-stub')
compile libraries.bouncycastle_apis,
libraries.bouncycastle_provider
}