Files
hardware_interfaces/graphics/mapper/stable-c/Android.bp
Hsin-Yi Chen 219876109a Move libimapper_stablec ABI dumps from prebuilts/abi-dumps
The update process for prebuilts/abi-dumps/platform will be adapted for
trunk stable. The ABI dumps for libimapper_stablec are moved to
"abi-dumps" in this project so that the trunk stable release process
will not affect them.

Test: m libimapper_stablec_abicheck
Test: development/vndk/tools/header-checker/utils/create_reference_dumps.py \
      -libs libimapper_stablec_abicheck --lib-variant PLATFORM \
      -ref-dump-dir hardware/interfaces/graphics/mapper/stable-c/abi-dumps \
      -products aosp_arm64
Bug: 333532038
Change-Id: Ia69daa721ef983c18118bd6d0a70dd5b7a0a47a2
2024-04-16 20:21:56 +08:00

144 lines
3.7 KiB
Plaintext

/**
* 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 {
default_team: "trendy_team_android_core_graphics_stack",
// 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",
ref_dump_dirs: ["abi-dumps"],
},
}
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",
],
}