blob: 12d7b99136ed7f2b0454123e80ca3c74683b0dfe [file] [log] [blame]
Justin Moreyba94b3d2014-06-10 16:23:32 -05001apply plugin: 'java'
2
3// this is the "Unbundled Conscrypt jar"
4sourceSets.main {
5 java.srcDirs = [
6 'src/main/java',
7 'src/compat/java',
8 ]
9}
10
11compileJava.options.encoding = 'UTF-8'
12compileJava.options.compilerArgs += ['-Xmaxwarns', '9999999']
13
14dependencies {
15 compile getAndroidPrebuilt('9')
16}