blob: 95e55d2bca0278dd87377ff8c3012d5f51aa0077 [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
17import static androidx.build.dependencies.DependenciesKt.*
18
19plugins {
20 id("AndroidXPlugin")
21 id("com.android.library")
22 id("androidx.benchmark")
23}
24
25dependencies {
Chaohui Wang6ba25a12019-07-05 11:51:21 +080026 androidTestImplementation(project(":benchmark:benchmark-junit4"))
27 androidTestImplementation(project(":ads-identifier-common"))
28 androidTestImplementation(project(":ads-identifier"))
29 androidTestImplementation(project(":ads-identifier-provider"))
30 androidTestImplementation(project(":ads-identifier-testing"))
Chaohui Wang63929452019-12-06 14:49:57 +080031 androidTestImplementation("androidx.work:work-runtime:2.2.0")
Chaohui Wang6ba25a12019-07-05 11:51:21 +080032 androidTestImplementation(JUNIT)
33 androidTestImplementation(TRUTH)
34 androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
35 androidTestImplementation(ANDROIDX_TEST_CORE)
36 androidTestImplementation(ANDROIDX_TEST_RUNNER)
37 androidTestImplementation(ANDROIDX_TEST_RULES)
Aurimas Liutikas9bf4f7e2021-04-23 14:17:30 -070038 androidTestImplementation(DEXMAKER_MOCKITO, excludes.bytebuddy)
Chaohui Wang2d495b12019-09-05 14:28:41 +080039}