blob: f15e533fee2b4b17754bd6cd7ac011a462477af0 [file] [log] [blame]
Rhed Jaod6593e92021-06-17 17:58:45 +08001// Copyright (C) 2021 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 {
Aditya Choudharyb4262272024-01-31 11:09:29 +000016 default_team: "trendy_team_framework_android_packages",
Rhed Jaod6593e92021-06-17 17:58:45 +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 "frameworks_base_license"
20 // to get the below license kinds:
21 // SPDX-license-identifier-Apache-2.0
22 default_applicable_licenses: ["frameworks_base_license"],
23}
24
25android_test {
26 name: "AppEnumerationInternalTests",
27 srcs: [
28 "src/**/*.java",
29 ],
30 static_libs: [
31 "compatibility-device-util-axt",
32 "androidx.test.runner",
Krzysztof KosiƄskibbe98fe32023-10-06 20:25:28 +000033 "truth",
Rhed Jaof5f55f42022-04-13 17:53:56 +080034 "Harrier",
Rhed Jaod6593e92021-06-17 17:58:45 +080035 ],
36 platform_apis: true,
Rhed Jao6f9e9d42023-02-13 08:49:00 +000037 certificate: "platform",
Rhed Jaod6593e92021-06-17 17:58:45 +080038 test_suites: ["device-tests"],
Yike27a6af82022-08-01 13:30:51 +080039 data: [
40 ":AppEnumerationCrossUserPackageVisibilityTestApp",
41 ":AppEnumerationHasAppOpPermissionTestApp",
42 ":AppEnumerationSharedUserTestApp",
43 ":AppEnumerationSyncProviderTestApp",
44 ],
Rhed Jaod6593e92021-06-17 17:58:45 +080045}