1// Copyright (C) 2024 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: ["deviceinfra_license"], 17} 18 19license { 20 name: "deviceinfra_license", 21 visibility: [":__subpackages__"], 22 license_kinds: [ 23 "SPDX-license-identifier-Apache-2.0", 24 ], 25 license_text: [ 26 "LICENSE", 27 ], 28} 29 30filegroup { 31 name: "ats_console_prebuilt", 32 srcs: [ 33 "ats_console_deploy.jar", 34 ], 35} 36 37filegroup { 38 name: "ats_olc_server_local_mode_prebuilt", 39 srcs: [ 40 "ats_olc_server_local_mode_deploy.jar", 41 ], 42} 43 44filegroup { 45 name: "ats_olc_server_prebuilt", 46 srcs: [ 47 "ats_olc_server_deploy.jar", 48 ], 49} 50 51java_import_host { 52 name: "ats_console_deploy", 53 jars: [":ats_console_prebuilt"], 54 installable: true, 55} 56 57java_import_host { 58 name: "ats_olc_server_deploy", 59 jars: [":ats_olc_server_prebuilt"], 60 installable: true, 61} 62 63java_import_host { 64 name: "ats_olc_server_local_mode_deploy", 65 jars: [":ats_olc_server_local_mode_prebuilt"], 66 installable: true, 67} 68