• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1description = 'Conscrypt: libcore Stub'
2
3configurations {
4    publicApiDocs
5}
6
7dependencies {
8    // This is used for the @Internal annotation processing in JavaDoc
9    publicApiDocs project(':conscrypt-api-doclet')
10
11    // Only compile against this. Other modules will embed the generated code directly.
12    compileOnly project(':conscrypt-constants')
13
14    testImplementation libs.junit
15}
16
17// Disable the javadoc task.
18tasks.withType(Javadoc).configureEach { enabled = false }
19