1// Copyright (C) 2020 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// TODO(b/139369543): remove android.hidl.base@1.0 16cc_prebuilt_library_shared { 17 name: "android.hidl.base@1.0", 18 arch: { 19 arm: { 20 srcs: ["android.hidl.base@1.0.so-32"], 21 }, 22 arm64: { 23 srcs: ["android.hidl.base@1.0.so-64"], 24 }, 25 }, 26 shared_libs: [ 27 "libhidlbase", 28 "liblog", 29 "libutils", 30 "libcutils", 31 "libc++", 32 "libdl", 33 "libc", 34 "libm", 35 ], 36 compile_multilib: "both", 37 vendor_available: true, 38 strip: { 39 none: true, 40 }, 41 // This module has broken dependencies, libhidltransport and libhwbinder have 42 // hidden visibility, but this is phasing out anyway so just bypass the check. 43 check_elf_files: false, 44} 45