[go: nahoru, domu]

blob: 527e2f56b64d5c6a826b4a26f948d5f919993566 [file] [log] [blame]
Chaohui Wang2d495b12019-09-05 14:28:41 +08001/*
2 * Copyright 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Chaohui Wang2d495b12019-09-05 14:28:41 +080017plugins {
18 id("AndroidXPlugin")
19 id("com.android.library")
20 id("androidx.benchmark")
21}
22
23dependencies {
Chaohui Wang6ba25a12019-07-05 11:51:21 +080024 androidTestImplementation(project(":benchmark:benchmark-junit4"))
Alan Viverettea75e3d62021-06-23 17:38:25 -040025 androidTestImplementation(project(":ads:ads-identifier-common"))
26 androidTestImplementation(project(":ads:ads-identifier"))
27 androidTestImplementation(project(":ads:ads-identifier-provider"))
28 androidTestImplementation(project(":ads:ads-identifier-testing"))
Aurimas Liutikasba9f9492021-11-09 09:26:19 -080029 androidTestImplementation("androidx.work:work-runtime:2.7.0")
Aurimas Liutikas86e291f2021-05-24 16:21:40 -070030 androidTestImplementation(libs.junit)
Jeremy Woods675a06d2023-02-01 21:52:03 +000031 androidTestImplementation(libs.multidex)
Aurimas Liutikas86e291f2021-05-24 16:21:40 -070032 androidTestImplementation(libs.truth)
33 androidTestImplementation(libs.testExtJunit)
34 androidTestImplementation(libs.testCore)
35 androidTestImplementation(libs.testRunner)
36 androidTestImplementation(libs.testRules)
37 androidTestImplementation(libs.dexmakerMockito, excludes.bytebuddy)
Chaohui Wang2d495b12019-09-05 14:28:41 +080038}
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070039
40android {
41 namespace "androidx.ads.identifier.benchmark"
Jeremy Woods675a06d2023-02-01 21:52:03 +000042
43 defaultConfig {
44 multiDexEnabled true
45 }
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070046}
Jeff Gaston8ee2f6e2022-11-30 13:24:25 -050047