blob: e68af2acf546cd5237de7aeafc9f5a55c59a7015 [file] [log] [blame]
// Bluetooth types
package {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "system_bt_license"
// to get the below license kinds:
// SPDX-license-identifier-Apache-2.0
default_applicable_licenses: ["system_bt_license"],
}
cc_library_headers {
name: "libbt-rootcanal-types-header",
export_include_dirs: ["./"],
vendor_available: true,
host_supported: true,
}
cc_library_static {
name: "libbt-rootcanal-types",
vendor_available: true,
defaults: ["fluoride_types_defaults"],
cflags: [
/* we export all classes, so change default visibility, instead of having EXPORT_SYMBOL on each class*/
"-fvisibility=default",
],
host_supported: true,
srcs: [
"bluetooth/uuid.cc",
],
header_libs: ["libbt-rootcanal-types-header"],
export_header_lib_headers: ["libbt-rootcanal-types-header"],
}
cc_test {
name: "rootcanal-test_types",
test_suites: ["device-tests"],
defaults: ["fluoride_defaults"],
host_supported: true,
srcs: [
"test/bluetooth/uuid_unittest.cc",
],
static_libs: [
"libbt-rootcanal-types",
],
}