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 15package { 16 default_applicable_licenses: ["Android-Apache-2.0"], 17} 18 19filegroup { 20 name: "adservices-clients-sources", 21 srcs: [ 22 "java/**/*.java", 23 ], 24 path: "java", 25 visibility: ["//visibility:private"], 26} 27 28java_library { 29 name: "adservices-clients", 30 // TODO(b/223684663): remove when unhide Topics API. 31 // We use hidden APIs in this clients for now 32 // sdk_version: "module_current", 33 srcs: [ 34 ":adservices-clients-sources", 35 ], 36 static_libs: [ 37 "androidx.concurrent_concurrent-futures", 38 "androidx.annotation_annotation", 39 "guava", 40 ], 41 libs: [ 42 "framework-adservices-lib", 43 "framework-sdksandbox", 44 "framework-annotations-lib", // For @SystemApi, etc 45 "unsupportedappusage", // for android.compat.annotation.UnsupportedAppUsage 46 "framework-adservices", // To access non-API members in this module. 47 "jsr305", 48 "auto_value_annotations", 49 ], 50 plugins: ["auto_value_plugin"], 51 lint: { 52 extra_check_modules: ["AdServicesProdLintChecker"], 53 }, 54} 55