xref: /aosp_15_r20/external/volley/cronet/build.gradle (revision a494ed5db247d14ea5602de4a744bb4a531fd3a7)
1dependencies {
2    implementation project(":core")
3    implementation "androidx.annotation:annotation:1.0.1"
4    compileOnly "org.chromium.net:cronet-embedded:76.3809.111"
5
6    testImplementation project(":testing")
7    testImplementation "org.chromium.net:cronet-embedded:76.3809.111"
8    testImplementation "junit:junit:4.12"
9    testImplementation "org.mockito:mockito-core:2.19.0"
10    testImplementation "org.robolectric:robolectric:3.4.2"
11}
12
13publishing {
14    publications {
15        library(MavenPublication) {
16            artifactId 'volley-cronet'
17            pom {
18                name = 'Volley Cronet'
19                description = 'Cronet support for Volley.'
20            }
21            artifact "$buildDir/outputs/aar/cronet-release.aar"
22        }
23    }
24}
25