blob: d5852b30141b7dd147cd406a566c06f1615b79aa [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 {
Aditya Choudhary4f5c1ac2024-02-05 15:41:26 +000016 default_team: "trendy_team_android_settings_app",
Bob Badour6695ff82021-02-12 17:08:01 -080017 // See: http://go/android-license-faq
18 // A large-scale-change added 'default_applicable_licenses' to import
19 // all of the 'license_kinds' from "packages_apps_Settings_license"
20 // to get the below license kinds:
21 // SPDX-license-identifier-Apache-2.0
22 default_applicable_licenses: ["packages_apps_Settings_license"],
23}
24
Colin Cross946a0fd2019-05-07 11:22:05 -070025android_test {
26 name: "SettingsUITests",
27 platform_apis: true,
28 certificate: "platform",
29 test_suites: ["device-tests"],
Milton Wu940e5d02023-06-16 17:21:22 +080030 srcs: [
31 "src/**/*.java",
32 "src/**/*.kt",
33 ],
Colin Cross946a0fd2019-05-07 11:22:05 -070034
35 libs: [
36 "android.test.runner",
37 "android.test.base",
38 ],
39
40 static_libs: [
Milton Wu940e5d02023-06-16 17:21:22 +080041 "androidx.test.ext.junit",
Colin Cross946a0fd2019-05-07 11:22:05 -070042 "androidx.test.rules",
Fangqiu Su643e9082023-04-24 17:59:26 +000043 "androidx.test.uiautomator_uiautomator",
Colin Cross946a0fd2019-05-07 11:22:05 -070044 "app-helpers-core",
45 "launcher-helper-lib",
46 "metrics-helper-lib",
47 "platform-test-annotations",
48 "settings-helper",
49 "sysui-helper",
50 "timeresult-helper-lib",
Krzysztof KosiƄski0efd6d82023-10-24 23:03:57 +000051 "truth",
josephpv31b044e2023-10-04 18:14:20 +000052 "flag-junit",
Colin Cross946a0fd2019-05-07 11:22:05 -070053 ],
54
55 //sdk_version: "current",
56}