OLD | NEW |
1 mojom = "//components/arc/common/bluetooth.mojom" | 1 mojom = "//components/arc/common/bluetooth.mojom" |
2 public_headers = [ "//device/bluetooth/bluetooth_common.h" ] | 2 public_headers = [ |
| 3 "//device/bluetooth/bluetooth_common.h", |
| 4 "//device/bluetooth/bluez/bluetooth_service_attribute_value_bluez.h", |
| 5 "//device/bluetooth/bluez/bluetooth_service_record_bluez.h", |
| 6 ] |
3 traits_headers = [ "//components/arc/bluetooth/bluetooth_struct_traits.h" ] | 7 traits_headers = [ "//components/arc/bluetooth/bluetooth_struct_traits.h" ] |
| 8 sources = [ |
| 9 "//components/arc/bluetooth/bluetooth_struct_traits.cc", |
| 10 ] |
4 deps = [ | 11 deps = [ |
5 "//device/bluetooth", | 12 "//device/bluetooth", |
6 ] | 13 ] |
7 type_mappings = [ "arc.mojom.BluetoothDeviceType=device::BluetoothTransport" ] | 14 type_mappings = [ |
| 15 "arc.mojom.BluetoothDeviceType=device::BluetoothTransport", |
| 16 "arc.mojom.BluetoothSdpServiceAttr=bluez::BluetoothServiceAttributeValueBlueZ"
, |
| 17 "arc.mojom.BluetoothSdpRecord=bluez::BluetoothServiceRecordBlueZ", |
| 18 ] |
OLD | NEW |