blob: f3f52018bb7d64d95c7e7460e540ebc5272c9dfe [file] [log] [blame]
Colin Cross946a0fd2019-05-07 11:22:05 -07001// Copyright (C) 2018 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
Bob Badour6695ff82021-02-12 17:08:01 -080015package {
16 // See: http://go/android-license-faq
17 // A large-scale-change added 'default_applicable_licenses' to import
18 // all of the 'license_kinds' from "packages_apps_Settings_license"
19 // to get the below license kinds:
20 // SPDX-license-identifier-Apache-2.0
21 default_applicable_licenses: ["packages_apps_Settings_license"],
22}
23
Colin Cross946a0fd2019-05-07 11:22:05 -070024android_test {
25 name: "SettingsUITests",
26 platform_apis: true,
27 certificate: "platform",
28 test_suites: ["device-tests"],
Milton Wu940e5d02023-06-16 17:21:22 +080029 srcs: [
30 "src/**/*.java",
31 "src/**/*.kt",
32 ],
Colin Cross946a0fd2019-05-07 11:22:05 -070033
34 libs: [
35 "android.test.runner",
36 "android.test.base",
37 ],
38
39 static_libs: [
Milton Wu940e5d02023-06-16 17:21:22 +080040 "androidx.test.ext.junit",
Colin Cross946a0fd2019-05-07 11:22:05 -070041 "androidx.test.rules",
Fangqiu Su643e9082023-04-24 17:59:26 +000042 "androidx.test.uiautomator_uiautomator",
Colin Cross946a0fd2019-05-07 11:22:05 -070043 "app-helpers-core",
44 "launcher-helper-lib",
45 "metrics-helper-lib",
46 "platform-test-annotations",
47 "settings-helper",
48 "sysui-helper",
49 "timeresult-helper-lib",
Krzysztof KosiƄski0efd6d82023-10-24 23:03:57 +000050 "truth",
josephpv31b044e2023-10-04 18:14:20 +000051 "flag-junit",
Colin Cross946a0fd2019-05-07 11:22:05 -070052 ],
53
54 //sdk_version: "current",
55}