blob: 9a8bcec8e45b82c6b701b1e3711febc4a8e7dbe1 [file] [log] [blame]
Andrei Onea7cede5a2022-09-14 14:57:26 +00001// Copyright (C) 2022 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 {
Ronish Kalia9507a7a2024-02-14 14:20:58 +000016 default_team: "trendy_team_mainline_modularization",
Andrei Onea7cede5a2022-09-14 14:57:26 +000017 default_applicable_licenses: ["Android-Apache-2.0"],
18}
Ronish Kalia9507a7a2024-02-14 14:20:58 +000019
Andrei Onea7cede5a2022-09-14 14:57:26 +000020java_library_host {
21 name: "ClasspathFetcher",
22 srcs: ["ClasspathFetcher.java"],
23 libs: [
24 "cts-tradefed",
25 "tradefed",
26 "compatibility-host-util",
27 "androidx.annotation_annotation",
28 ],
Andrei Onea816b8b62022-10-20 15:21:45 +000029 static_libs: [
30 "compat-classpaths-testing",
Ronish Kalia9507a7a2024-02-14 14:20:58 +000031 "classpath_classes_proto_java",
Andrei Onea816b8b62022-10-20 15:21:45 +000032 ],
Andrei Onea9f4e40c2022-10-26 15:24:56 +000033 visibility: [
34 "//packages/modules/common:__subpackages__",
35 "//packages/modules/SdkExtensions",
36 ],
Ronish Kalia9507a7a2024-02-14 14:20:58 +000037}