| Andrei Onea | 7cede5a | 2022-09-14 14:57:26 +0000 | [diff] [blame] | 1 | // 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 | |
| 15 | package { |
| Ronish Kalia | 9507a7a | 2024-02-14 14:20:58 +0000 | [diff] [blame] | 16 | default_team: "trendy_team_mainline_modularization", |
| Andrei Onea | 7cede5a | 2022-09-14 14:57:26 +0000 | [diff] [blame] | 17 | default_applicable_licenses: ["Android-Apache-2.0"], |
| 18 | } |
| Ronish Kalia | 9507a7a | 2024-02-14 14:20:58 +0000 | [diff] [blame] | 19 | |
| Andrei Onea | 7cede5a | 2022-09-14 14:57:26 +0000 | [diff] [blame] | 20 | java_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 Onea | 816b8b6 | 2022-10-20 15:21:45 +0000 | [diff] [blame] | 29 | static_libs: [ |
| 30 | "compat-classpaths-testing", |
| Ronish Kalia | 9507a7a | 2024-02-14 14:20:58 +0000 | [diff] [blame] | 31 | "classpath_classes_proto_java", |
| Andrei Onea | 816b8b6 | 2022-10-20 15:21:45 +0000 | [diff] [blame] | 32 | ], |
| Andrei Onea | 9f4e40c | 2022-10-26 15:24:56 +0000 | [diff] [blame] | 33 | visibility: [ |
| 34 | "//packages/modules/common:__subpackages__", |
| 35 | "//packages/modules/SdkExtensions", |
| 36 | ], |
| Ronish Kalia | 9507a7a | 2024-02-14 14:20:58 +0000 | [diff] [blame] | 37 | } |