Colin Cross | 946a0fd | 2019-05-07 11:22:05 -0700 | [diff] [blame] | 1 | // 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 Badour | 6695ff8 | 2021-02-12 17:08:01 -0800 | [diff] [blame] | 15 | package { |
| 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 Cross | 946a0fd | 2019-05-07 11:22:05 -0700 | [diff] [blame] | 24 | android_test { |
| 25 | name: "SettingsUITests", |
| 26 | platform_apis: true, |
| 27 | certificate: "platform", |
| 28 | test_suites: ["device-tests"], |
Milton Wu | 940e5d0 | 2023-06-16 17:21:22 +0800 | [diff] [blame] | 29 | srcs: [ |
| 30 | "src/**/*.java", |
| 31 | "src/**/*.kt", |
| 32 | ], |
Colin Cross | 946a0fd | 2019-05-07 11:22:05 -0700 | [diff] [blame] | 33 | |
| 34 | libs: [ |
| 35 | "android.test.runner", |
| 36 | "android.test.base", |
| 37 | ], |
| 38 | |
| 39 | static_libs: [ |
Milton Wu | 940e5d0 | 2023-06-16 17:21:22 +0800 | [diff] [blame] | 40 | "androidx.test.ext.junit", |
Colin Cross | 946a0fd | 2019-05-07 11:22:05 -0700 | [diff] [blame] | 41 | "androidx.test.rules", |
Fangqiu Su | 643e908 | 2023-04-24 17:59:26 +0000 | [diff] [blame] | 42 | "androidx.test.uiautomator_uiautomator", |
Colin Cross | 946a0fd | 2019-05-07 11:22:05 -0700 | [diff] [blame] | 43 | "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Ćski | 0efd6d8 | 2023-10-24 23:03:57 +0000 | [diff] [blame] | 50 | "truth", |
josephpv | 31b044e | 2023-10-04 18:14:20 +0000 | [diff] [blame] | 51 | "flag-junit", |
Colin Cross | 946a0fd | 2019-05-07 11:22:05 -0700 | [diff] [blame] | 52 | ], |
| 53 | |
| 54 | //sdk_version: "current", |
| 55 | } |