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