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: ["hardware_interfaces_license"], 17} 18 19cc_defaults { 20 name: "android.hardware.graphics.allocator-ndk_static", 21 static_libs: [ 22 "android.hardware.graphics.allocator-V2-ndk", 23 ], 24 defaults: [ 25 "android.hardware.graphics.common-ndk_static", 26 ], 27} 28 29cc_defaults { 30 name: "android.hardware.graphics.allocator-ndk_shared", 31 shared_libs: [ 32 "android.hardware.graphics.allocator-V2-ndk", 33 ], 34 defaults: [ 35 "android.hardware.graphics.common-ndk_shared", 36 ], 37} 38 39cc_defaults { 40 name: "android.hardware.graphics.common-ndk_static", 41 static_libs: [ 42 "android.hardware.graphics.common-V4-ndk", 43 ], 44} 45 46cc_defaults { 47 name: "android.hardware.graphics.common-ndk_shared", 48 shared_libs: [ 49 "android.hardware.graphics.common-V4-ndk", 50 ], 51} 52 53cc_defaults { 54 name: "android.hardware.graphics.composer3-ndk_static", 55 static_libs: [ 56 "android.hardware.graphics.composer3-V2-ndk", 57 ], 58} 59 60cc_defaults { 61 name: "android.hardware.graphics.composer3-ndk_shared", 62 shared_libs: [ 63 "android.hardware.graphics.composer3-V2-ndk", 64 ], 65} 66