1package { 2 default_applicable_licenses: ["hardware_interfaces_license"], 3} 4 5cc_library_static { 6 name: "android.hardware.bluetooth.async", 7 vendor_available: true, 8 host_supported: true, 9 srcs: [ 10 "async_fd_watcher.cc", 11 ], 12 export_include_dirs: ["."], 13 shared_libs: [ 14 "liblog", 15 ], 16 cflags: [ 17 "-Wall", 18 "-Werror", 19 ], 20} 21 22cc_test { 23 name: "bluetooth-vendor-interface-async-test", 24 host_supported: true, 25 srcs: [ 26 "test/async_fd_watcher_unittest.cc", 27 ], 28 shared_libs: [ 29 "liblog", 30 "libutils", 31 ], 32 static_libs: [ 33 "android.hardware.bluetooth.async", 34 "libgmock", 35 ], 36 cflags: [ 37 "-Wall", 38 "-Werror", 39 ], 40 test_suites: ["general-tests"], 41} 42