• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1plugins {
2    id 'com.github.johnrengelman.shadow' version '6.0.0'
3}
4
5description = 'Conscrypt: Testing'
6
7sourceSets {
8    main {
9        java {
10            srcDirs = ['src/main/java']
11        }
12    }
13}
14
15dependencies {
16    // Only compile against these. Other modules will embed the generated
17    // constants directly. The stubs libraries should not end up in the
18    // final build.
19    compileOnly project(':conscrypt-constants'),
20                project(':conscrypt-libcore-stub'),
21                project(':conscrypt-android-stub')
22
23    compile libraries.bouncycastle_apis,
24            libraries.bouncycastle_provider
25}
26