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: "AdExtServicesGaUxDebugChannelEuTest",
21    srcs: [
22        "src/com/android/adservices/tests/ui/gaux/debugchannel/ExtGaUxDebugChannelEuTest.java",
23        "src/com/android/adservices/tests/ui/gaux/debugchannel/AdExtServicesGaUxDebugChannelTestCase.java",
24    ],
25    static_libs: [
26        "adservices-assets",
27        "adservices-service-core",
28        "compatibility-device-util-axt",
29        "truth",
30        "adservices-test-utility",
31        "adservices-ui-cts-root-test-lib",
32        "platform-test-rules",
33    ],
34    libs: [
35        "android.test.base.stubs.system",
36        "framework-adservices-lib",
37    ],
38    test_suites: [
39        "cts_root",
40        "general-tests",
41        "mts-extservices",
42        "mcts-extservices",
43    ],
44    sdk_version: "module_current",
45    max_sdk_version: "32",
46    min_sdk_version: "31",
47    test_config: "AndroidTest.ExtServices.Eu.xml",
48    manifest: "AndroidManifestExtServices.xml",
49}
50
51android_test {
52    name: "AdExtServicesGaUxDebugChannelRowTest",
53    srcs: [
54        "src/com/android/adservices/tests/ui/gaux/debugchannel/ExtGaUxDebugChannelRowTest.java",
55        "src/com/android/adservices/tests/ui/gaux/debugchannel/AdExtServicesGaUxDebugChannelTestCase.java",
56    ],
57    static_libs: [
58        "adservices-assets",
59        "adservices-service-core",
60        "compatibility-device-util-axt",
61        "truth",
62        "adservices-test-utility",
63        "adservices-ui-cts-root-test-lib",
64        "platform-test-rules",
65    ],
66    libs: [
67        "android.test.base.stubs.system",
68        "framework-adservices-lib",
69    ],
70    test_suites: [
71        "cts_root",
72        "general-tests",
73        "mts-extservices",
74        "mcts-extservices",
75    ],
76    sdk_version: "module_current",
77    max_sdk_version: "32",
78    min_sdk_version: "31",
79    test_config: "AndroidTest.ExtServices.Row.xml",
80    manifest: "AndroidManifestExtServices.xml",
81}
82
83android_test {
84    name: "AdExtServicesGaUxDebugChannelApiOffTest",
85    srcs: [
86        "src/com/android/adservices/tests/ui/gaux/debugchannel/ExtGaUxDebugChannelApiOffTest.java",
87        "src/com/android/adservices/tests/ui/gaux/debugchannel/AdExtServicesGaUxDebugChannelTestCase.java",
88    ],
89    static_libs: [
90        "adservices-assets",
91        "adservices-service-core",
92        "compatibility-device-util-axt",
93        "truth",
94        "adservices-test-utility",
95        "adservices-ui-cts-root-test-lib",
96        "platform-test-rules",
97    ],
98    libs: [
99        "android.test.base.stubs.system",
100        "framework-adservices-lib",
101    ],
102    test_suites: [
103        "cts_root",
104        "general-tests",
105        "mts-extservices",
106        "mcts-extservices",
107    ],
108    sdk_version: "module_current",
109    max_sdk_version: "32",
110    min_sdk_version: "31",
111    test_config: "AndroidTest.ExtServices.ApiOff.xml",
112    manifest: "AndroidManifestExtServices.xml",
113}
114