Home | History | Annotate | Download | only in benchmark-base
      1 description = 'Conscrypt: Base library for benchmarks'
      2 
      3 // Needs to be binary-compatible with Android minSdkVersion.
      4 sourceCompatibility = androidMinJavaVersion
      5 targetCompatibility = androidMinJavaVersion
      6 
      7 dependencies {
      8     compile project(':conscrypt-testing'),
      9             libraries.junit
     10 }
     11 
     12 // Don't include this artifact in the distribution.
     13 tasks.install.enabled = false
     14 tasks.uploadArchives.enabled = false;
     15