Home | History | Annotate | Download | only in conscrypt
      1 apply plugin: 'java'
      2 
      3 // this is the "Unbundled Conscrypt jar"
      4 sourceSets.main {
      5     java.srcDirs = [
      6         'src/main/java',
      7         'src/compat/java',
      8     ]
      9 }
     10 
     11 compileJava.options.encoding = 'UTF-8'
     12 compileJava.options.compilerArgs += ['-Xmaxwarns', '9999999']
     13 
     14 dependencies {
     15     compile getAndroidPrebuilt('9')
     16 }
     17