Files
hardware_interfaces/bluetooth/aidl/vts/Android.bp
William Escande 515af9d8ba Use the PDL library for HCI packets
Bug: 296427840
Test: mma -j32
Ignore-AOSP-First: Get around auto-merger conflict with udc-mainline-prod
(cherry picked from https://android-review.googlesource.com/q/commit:3943ed1876c07c4af8e23bb5f1636df74678e8c3)
Change-Id: I5dc1d6cd24890e4558ace5b8de4ed6d93a6abc86
2023-09-01 00:35:31 +00:00

58 lines
1.6 KiB
Plaintext

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_test {
name: "VtsHalBluetoothTargetTest",
defaults: [
"VtsHalTargetTestDefaults",
"use_libaidlvintf_gtest_helper_static",
],
srcs: [
"VtsHalBluetoothTargetTest.cpp",
":BluetoothPacketSources",
],
include_dirs: [
"packages/modules/Bluetooth/system/gd",
],
shared_libs: [
"libbase",
"libbinder_ndk",
"libcutils",
],
static_libs: [
"android.hardware.bluetooth-V1-ndk",
"libbluetooth_hci_pdl",
],
test_config: "VtsHalBluetoothTargetTest.xml",
test_suites: [
"general-tests",
"vts",
],
tidy: true,
tidy_checks: [
"-*",
"readability-inconsistent-declaration-parameter-name",
"readability-*",
"-readability-function-size",
"-readability-identifier-length",
"-readability-implicit-bool-conversion",
"-readability-magic-numbers",
"-readability-use-anyofallof",
],
tidy_checks_as_errors: [
"readability-*",
],
tidy_flags: [
"--header-filter=^.*tools\\/rootcanal\\/(model|include|net|desktop)\\/(.(?!\\.pb\\.h))*$",
],
tidy_disabled_srcs: [
":BluetoothPacketSources",
],
}