1// Copyright (C) 2023 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//      http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package {
16    default_applicable_licenses: ["Android-Apache-2.0"],
17}
18
19android_test {
20    name: "AdExtServicesGaUxAlreadyEnrolledChannelRowTest",
21    srcs: [
22        "src/com/android/adservices/tests/ui/gaux/alreadyenrolledchannel/ExtGaUxAlreadyEnrolledChannelRowTest.java",
23    ],
24    static_libs: [
25        "adservices-assets",
26        "adservices-service-core",
27        "compatibility-device-util-axt",
28        "truth",
29        "adservices-test-utility",
30        "adservices-ui-cts-root-test-lib",
31        "platform-test-rules",
32    ],
33    libs: [
34        "android.test.base",
35        "framework-adservices-lib",
36    ],
37    test_suites: [
38        "cts_root",
39        "general-tests",
40        "mts-extservices",
41        "mcts-extservices",
42    ],
43    sdk_version: "module_current",
44    max_sdk_version: "32",
45    min_sdk_version: "31",
46    test_config: "AndroidTest.ExtServices.Row.xml",
47    manifest: "AndroidManifestExtServices.xml",
48}
49
50android_test {
51    name: "AdExtServicesGaUxAlreadyEnrolledChannelEuTest",
52    srcs: [
53        "src/com/android/adservices/tests/ui/gaux/alreadyenrolledchannel/ExtGaUxAlreadyEnrolledChannelEuTest.java",
54    ],
55    static_libs: [
56        "adservices-assets",
57        "adservices-service-core",
58        "compatibility-device-util-axt",
59        "truth",
60        "adservices-test-utility",
61        "adservices-ui-cts-root-test-lib",
62        "platform-test-rules",
63    ],
64    libs: [
65        "android.test.base",
66        "framework-adservices-lib",
67    ],
68    test_suites: [
69        "cts_root",
70        "general-tests",
71        "mts-extservices",
72        "mcts-extservices",
73    ],
74    sdk_version: "module_current",
75    max_sdk_version: "32",
76    min_sdk_version: "31",
77    test_config: "AndroidTest.ExtServices.Eu.xml",
78    manifest: "AndroidManifestExtServices.xml",
79}
80