blob: 39037f22fdcb90ea2071ee5b745ba1b2a14d29ce [file] [log] [blame]
Makoto Onukifc007922021-08-16 12:02:39 -07001// 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 {
16 default_applicable_licenses: ["Android-Apache-2.0"],
17}
18
Makoto Onukiec3fd8e2023-03-20 17:17:02 -070019// TODO: Delete this file. It's no longer needed, but removing it on udc-dev will cause
20// a conflict on master.
21
Makoto Onuki68e48882021-09-02 14:59:48 -070022java_defaults {
23 name: "ComponentAliasTests_defaults",
Makoto Onukifc007922021-08-16 12:02:39 -070024 static_libs: [
25 "androidx.test.rules",
26 "compatibility-device-util-axt",
27 "mockito-target-extended-minus-junit4",
Krzysztof KosiƄski60b70872023-10-06 20:11:39 +000028 "truth",
Makoto Onukifc007922021-08-16 12:02:39 -070029 ],
30 libs: ["android.test.base"],
31 srcs: [
32 "src/**/*.java",
33 ],
34 test_suites: [
35 "general-tests",
36 ],
37 platform_apis: true, // We use hidden APIs in the test.
38}