1package { 2 // See: http://go/android-license-faq 3 // A large-scale-change added 'default_applicable_licenses' to import 4 // all of the 'license_kinds' from "system_bt_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: ["system_bt_license"], 8} 9 10filegroup { 11 name: "BluetoothHalSources", 12 srcs: [ 13 "snoop_logger.cc", 14 "snoop_logger_socket.cc", 15 "snoop_logger_socket_thread.cc", 16 "syscall_wrapper_impl.cc", 17 ], 18} 19 20filegroup { 21 name: "BluetoothHalTestSources", 22 srcs: [ 23 "snoop_logger_socket_test.cc", 24 "snoop_logger_socket_thread_test.cc", 25 "snoop_logger_test.cc", 26 ], 27} 28 29filegroup { 30 name: "BluetoothHalSources_hci_host", 31 srcs: [ 32 "hci_hal_host_rootcanal.cc", 33 ], 34} 35 36filegroup { 37 name: "BluetoothHalSources_hci_android_hidl", 38 srcs: [ 39 "hci_hal_android_hidl.cc", 40 ], 41} 42 43filegroup { 44 name: "BluetoothHalTestSources_hci_host", 45 srcs: [ 46 "hci_hal_host_test.cc", 47 ], 48} 49 50filegroup { 51 name: "BluetoothHalTestSources_hci_android_hidl", 52 srcs: [ 53 "hci_hal_android_hidl_test.cc", 54 ], 55} 56 57filegroup { 58 name: "BluetoothHalFake", 59 srcs: [ 60 "hci_hal_fake.cc", 61 ], 62} 63 64filegroup { 65 name: "BluetoothFacade_hci_hal", 66 srcs: [ 67 "facade.cc", 68 ], 69} 70 71filegroup { 72 name: "BluetoothHalFuzzSources", 73 srcs: [ 74 "fuzz/fuzz_hci_hal.cc", 75 ], 76} 77