0e4732c1a5
Specifically include the header encoding. Initially omitted as it's a bit redundant, the value in having bit-for-bit identical encoding between gralloc4 & imapper5 seems worthwhile enough to keep it. Test: impltests + VtsHalGraphicsMapperStableC Change-Id: Iee37bb97acf40362c301a06f9118938b1a0c2cd9
141 lines
3.6 KiB
Text
141 lines
3.6 KiB
Text
/**
|
|
* Copyright (c) 2022, The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "hardware_interfaces_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["hardware_interfaces_license"],
|
|
}
|
|
|
|
cc_library_headers {
|
|
name: "libimapper_stablec",
|
|
export_include_dirs: ["include"],
|
|
vendor_available: true,
|
|
header_libs: [
|
|
"libarect_headers",
|
|
],
|
|
export_header_lib_headers: [
|
|
"libarect_headers",
|
|
],
|
|
// TODO(b/214400477) Remove apex_available
|
|
apex_available: [
|
|
"//apex_available:platform",
|
|
"com.android.media.swcodec",
|
|
"test_com.android.media.swcodec",
|
|
],
|
|
min_sdk_version: "29",
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libimapper_stablec_abicheck",
|
|
visibility: ["//visibility:private"],
|
|
defaults: [
|
|
"android.hardware.graphics.allocator-ndk_shared",
|
|
"android.hardware.graphics.common-ndk_shared",
|
|
],
|
|
header_libs: [
|
|
"libimapper_stablec",
|
|
],
|
|
srcs: [
|
|
"imapper5_abicheck.cpp",
|
|
],
|
|
header_abi_checker: {
|
|
enabled: true,
|
|
symbol_file: "imapper.map.txt",
|
|
},
|
|
}
|
|
|
|
cc_library_headers {
|
|
name: "libimapper_providerutils",
|
|
vendor_available: true,
|
|
export_include_dirs: ["implutils/include"],
|
|
header_libs: [
|
|
"libbase_headers",
|
|
"libimapper_stablec",
|
|
],
|
|
export_header_lib_headers: [
|
|
"libbase_headers",
|
|
"libimapper_stablec",
|
|
],
|
|
// TODO(b/214400477) Remove apex_available
|
|
apex_available: [
|
|
"//apex_available:platform",
|
|
"com.android.media.swcodec",
|
|
"test_com.android.media.swcodec",
|
|
],
|
|
min_sdk_version: "29",
|
|
}
|
|
|
|
cc_test {
|
|
name: "libimapper_providerutils_tests",
|
|
defaults: [
|
|
"android.hardware.graphics.allocator-ndk_shared",
|
|
"android.hardware.graphics.common-ndk_shared",
|
|
],
|
|
header_libs: [
|
|
"libimapper_providerutils",
|
|
],
|
|
srcs: [
|
|
"implutils/impltests.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libgralloctypes",
|
|
"libhidlbase",
|
|
],
|
|
visibility: [":__subpackages__"],
|
|
cpp_std: "experimental",
|
|
}
|
|
|
|
cc_test {
|
|
name: "VtsHalGraphicsMapperStableC_TargetTest",
|
|
cpp_std: "experimental",
|
|
defaults: [
|
|
"VtsHalTargetTestDefaults",
|
|
"use_libaidlvintf_gtest_helper_static",
|
|
"android.hardware.graphics.allocator-ndk_shared",
|
|
"android.hardware.graphics.common-ndk_shared",
|
|
],
|
|
srcs: [
|
|
"vts/VtsHalGraphicsMapperStableC_TargetTest.cpp",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libbinder_ndk",
|
|
"libbase",
|
|
"libsync",
|
|
"libvndksupport",
|
|
],
|
|
static_libs: [
|
|
"libaidlcommonsupport",
|
|
"libgralloctypes",
|
|
"libgtest",
|
|
],
|
|
header_libs: [
|
|
"libimapper_stablec",
|
|
"libimapper_providerutils",
|
|
],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
test_suites: [
|
|
"general-tests",
|
|
"vts",
|
|
],
|
|
}
|