63 lines
1.7 KiB
Plaintext
63 lines
1.7 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",
|
|
":BluetoothHciPacketSources",
|
|
],
|
|
generated_headers: [
|
|
"BluetoothGeneratedPackets_h",
|
|
],
|
|
include_dirs: [
|
|
"packages/modules/Bluetooth/system/gd",
|
|
],
|
|
shared_libs: [
|
|
"libbase",
|
|
"libbinder_ndk",
|
|
"libcutils",
|
|
],
|
|
static_libs: [
|
|
"android.hardware.bluetooth-V1-ndk",
|
|
"libbluetooth-types",
|
|
],
|
|
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",
|
|
":BluetoothHciPacketSources",
|
|
],
|
|
}
|