OSDN Git Service

Merge changes from topic "bt-hfp-fix-phone-number-buffer-underflow-nyc-dev" into...
[android-x86/system-bt.git] / types / Android.bp
1 // Bluetooth types
2 cc_library_static {
3     name: "libbluetooth-types",
4     vendor_available: true,
5     defaults: ["fluoride_types_defaults"],
6     cflags: [
7         /* we export all classes, so change default visibility, instead of having EXPORT_SYMBOL on each class*/
8         "-fvisibility=default",
9     ],
10     host_supported: true,
11     srcs: [
12         "raw_address.cc",
13     ],
14     export_include_dirs: ["./"],
15 }
16
17 // ========================================================
18 cc_test {
19     name: "net_test_types",
20     test_suites: ["device-tests"],
21     defaults: ["fluoride_defaults"],
22     host_supported: true,
23     srcs: [
24         "test/raw_address_unittest.cc",
25     ],
26 }