Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6616)

Unified Diff: device/bluetooth/bluetooth.gyp

Issue 1898643002: Refactor device::BluetoothGattXXX classes to split into remote/local. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « device/bluetooth/BUILD.gn ('k') | device/bluetooth/bluetooth_adapter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth.gyp
diff --git a/device/bluetooth/bluetooth.gyp b/device/bluetooth/bluetooth.gyp
index 5f1eaa7e1ff60b2b0fb1152498227da148587d88..4e39639e92c3a650e738c2670056a53727ae249e 100644
--- a/device/bluetooth/bluetooth.gyp
+++ b/device/bluetooth/bluetooth.gyp
@@ -81,6 +81,12 @@
'bluetooth_init_win.h',
'bluetooth_l2cap_channel_mac.mm',
'bluetooth_l2cap_channel_mac.h',
+ 'bluetooth_local_gatt_characteristic.cc',
+ 'bluetooth_local_gatt_characteristic.h',
+ 'bluetooth_local_gatt_descriptor.cc',
+ 'bluetooth_local_gatt_descriptor.h',
+ 'bluetooth_local_gatt_service.cc',
+ 'bluetooth_local_gatt_service.h',
'bluetooth_low_energy_central_manager_delegate.mm',
'bluetooth_low_energy_central_manager_delegate.h',
'bluetooth_low_energy_defs_win.cc',
@@ -91,14 +97,20 @@
'bluetooth_low_energy_discovery_manager_mac.mm',
'bluetooth_low_energy_win.cc',
'bluetooth_low_energy_win.h',
+ 'bluetooth_remote_gatt_characteristic.cc',
+ 'bluetooth_remote_gatt_characteristic.h',
'bluetooth_remote_gatt_characteristic_android.cc',
'bluetooth_remote_gatt_characteristic_android.h',
'bluetooth_remote_gatt_characteristic_win.cc',
'bluetooth_remote_gatt_characteristic_win.h',
+ 'bluetooth_remote_gatt_descriptor.cc',
+ 'bluetooth_remote_gatt_descriptor.h',
'bluetooth_remote_gatt_descriptor_android.cc',
'bluetooth_remote_gatt_descriptor_android.h',
'bluetooth_remote_gatt_descriptor_win.cc',
'bluetooth_remote_gatt_descriptor_win.h',
+ 'bluetooth_remote_gatt_service.cc',
+ 'bluetooth_remote_gatt_service.h',
'bluetooth_remote_gatt_service_android.cc',
'bluetooth_remote_gatt_service_android.h',
'bluetooth_remote_gatt_service_win.cc',
@@ -130,38 +142,42 @@
'DEVICE_BLUETOOTH_IMPLEMENTATION',
],
'sources': [
- 'bluetooth_adapter_bluez.cc',
- 'bluetooth_adapter_bluez.h',
- 'bluetooth_adapter_profile_bluez.cc',
- 'bluetooth_adapter_profile_bluez.h',
- 'bluetooth_advertisement_bluez.cc',
- 'bluetooth_advertisement_bluez.h',
- 'bluetooth_audio_sink_bluez.cc',
- 'bluetooth_audio_sink_bluez.h',
- 'bluetooth_device_bluez.cc',
- 'bluetooth_device_bluez.h',
- 'bluetooth_gatt_characteristic_bluez.cc',
- 'bluetooth_gatt_characteristic_bluez.h',
- 'bluetooth_gatt_connection_bluez.cc',
- 'bluetooth_gatt_connection_bluez.h',
- 'bluetooth_gatt_descriptor_bluez.cc',
- 'bluetooth_gatt_descriptor_bluez.h',
- 'bluetooth_gatt_notify_session_bluez.cc',
- 'bluetooth_gatt_notify_session_bluez.h',
- 'bluetooth_gatt_service_bluez.cc',
- 'bluetooth_gatt_service_bluez.h',
- 'bluetooth_local_gatt_characteristic_bluez.cc',
- 'bluetooth_local_gatt_characteristic_bluez.h',
- 'bluetooth_local_gatt_service_bluez.cc',
- 'bluetooth_local_gatt_service_bluez.h',
- 'bluetooth_pairing_bluez.cc',
- 'bluetooth_pairing_bluez.h',
- 'bluetooth_remote_gatt_characteristic_bluez.cc',
- 'bluetooth_remote_gatt_characteristic_bluez.h',
- 'bluetooth_remote_gatt_service_bluez.cc',
- 'bluetooth_remote_gatt_service_bluez.h',
- 'bluetooth_socket_bluez.cc',
- 'bluetooth_socket_bluez.h',
+ 'bluez/bluetooth_adapter_bluez.cc',
+ 'bluez/bluetooth_adapter_bluez.h',
+ 'bluez/bluetooth_adapter_profile_bluez.cc',
+ 'bluez/bluetooth_adapter_profile_bluez.h',
+ 'bluez/bluetooth_advertisement_bluez.cc',
+ 'bluez/bluetooth_advertisement_bluez.h',
+ 'bluez/bluetooth_audio_sink_bluez.cc',
+ 'bluez/bluetooth_audio_sink_bluez.h',
+ 'bluez/bluetooth_device_bluez.cc',
+ 'bluez/bluetooth_device_bluez.h',
+ 'bluez/bluetooth_gatt_characteristic_bluez.cc',
+ 'bluez/bluetooth_gatt_characteristic_bluez.h',
+ 'bluez/bluetooth_gatt_connection_bluez.cc',
+ 'bluez/bluetooth_gatt_connection_bluez.h',
+ 'bluez/bluetooth_gatt_descriptor_bluez.cc',
+ 'bluez/bluetooth_gatt_descriptor_bluez.h',
+ 'bluez/bluetooth_gatt_notify_session_bluez.cc',
+ 'bluez/bluetooth_gatt_notify_session_bluez.h',
+ 'bluez/bluetooth_gatt_service_bluez.cc',
+ 'bluez/bluetooth_gatt_service_bluez.h',
+ 'bluez/bluetooth_local_gatt_characteristic_bluez.cc',
+ 'bluez/bluetooth_local_gatt_characteristic_bluez.h',
+ 'bluez/bluetooth_local_gatt_descriptor_bluez.cc',
+ 'bluez/bluetooth_local_gatt_descriptor_bluez.h',
+ 'bluez/bluetooth_local_gatt_service_bluez.cc',
+ 'bluez/bluetooth_local_gatt_service_bluez.h',
+ 'bluez/bluetooth_pairing_bluez.cc',
+ 'bluez/bluetooth_pairing_bluez.h',
+ 'bluez/bluetooth_remote_gatt_characteristic_bluez.cc',
+ 'bluez/bluetooth_remote_gatt_characteristic_bluez.h',
+ 'bluez/bluetooth_remote_gatt_descriptor_bluez.cc',
+ 'bluez/bluetooth_remote_gatt_descriptor_bluez.h',
+ 'bluez/bluetooth_remote_gatt_service_bluez.cc',
+ 'bluez/bluetooth_remote_gatt_service_bluez.h',
+ 'bluez/bluetooth_socket_bluez.cc',
+ 'bluez/bluetooth_socket_bluez.h',
'dbus/bluetooth_adapter_client.cc',
'dbus/bluetooth_adapter_client.h',
'dbus/bluetooth_le_advertising_manager_client.cc',
« no previous file with comments | « device/bluetooth/BUILD.gn ('k') | device/bluetooth/bluetooth_adapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698