blob: a2db9faf72bacf27b197d8ee51651ee7c7ccfe07 [file] [log] [blame]
Justin Moreyba94b3d2014-06-10 16:23:32 -05001apply plugin: 'java'
2
Chad Brubaker62190cd2015-04-03 12:17:33 -07003sourceSets {
4 stub {
5 java.srcDirs = [
6 'src/stub/java'
7 ]
8 }
9}
Justin Moreyba94b3d2014-06-10 16:23:32 -050010// this is the "Unbundled Conscrypt jar"
11sourceSets.main {
12 java.srcDirs = [
13 'src/main/java',
14 'src/compat/java',
15 ]
Chad Brubaker62190cd2015-04-03 12:17:33 -070016 compileClasspath += sourceSets.stub.output
Justin Moreyba94b3d2014-06-10 16:23:32 -050017}
18
19compileJava.options.encoding = 'UTF-8'
20compileJava.options.compilerArgs += ['-Xmaxwarns', '9999999']
21
22dependencies {
23 compile getAndroidPrebuilt('9')
24}