blob: d4f09a3017829c72822ff69e778e7e37c94a4cbb [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"],
29 srcs: ["src/**/*.java"],
30
31 libs: [
32 "android.test.runner",
33 "android.test.base",
34 ],
35
36 static_libs: [
37 "androidx.test.rules",
Fangqiu Su643e9082023-04-24 17:59:26 +000038 "androidx.test.uiautomator_uiautomator",
Colin Cross946a0fd2019-05-07 11:22:05 -070039 "app-helpers-core",
40 "launcher-helper-lib",
41 "metrics-helper-lib",
42 "platform-test-annotations",
43 "settings-helper",
44 "sysui-helper",
45 "timeresult-helper-lib",
46 "truth-prebuilt",
Colin Cross946a0fd2019-05-07 11:22:05 -070047 ],
48
49 //sdk_version: "current",
50}