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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « device/bluetooth/BUILD.gn ('k') | device/bluetooth/bluetooth_adapter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'bluetooth_gatt_notify_session_android.cc', 74 'bluetooth_gatt_notify_session_android.cc',
75 'bluetooth_gatt_notify_session_android.h', 75 'bluetooth_gatt_notify_session_android.h',
76 'bluetooth_gatt_notify_session_win.cc', 76 'bluetooth_gatt_notify_session_win.cc',
77 'bluetooth_gatt_notify_session_win.h', 77 'bluetooth_gatt_notify_session_win.h',
78 'bluetooth_gatt_service.cc', 78 'bluetooth_gatt_service.cc',
79 'bluetooth_gatt_service.h', 79 'bluetooth_gatt_service.h',
80 'bluetooth_init_win.cc', 80 'bluetooth_init_win.cc',
81 'bluetooth_init_win.h', 81 'bluetooth_init_win.h',
82 'bluetooth_l2cap_channel_mac.mm', 82 'bluetooth_l2cap_channel_mac.mm',
83 'bluetooth_l2cap_channel_mac.h', 83 'bluetooth_l2cap_channel_mac.h',
84 'bluetooth_local_gatt_characteristic.cc',
85 'bluetooth_local_gatt_characteristic.h',
86 'bluetooth_local_gatt_descriptor.cc',
87 'bluetooth_local_gatt_descriptor.h',
88 'bluetooth_local_gatt_service.cc',
89 'bluetooth_local_gatt_service.h',
84 'bluetooth_low_energy_central_manager_delegate.mm', 90 'bluetooth_low_energy_central_manager_delegate.mm',
85 'bluetooth_low_energy_central_manager_delegate.h', 91 'bluetooth_low_energy_central_manager_delegate.h',
86 'bluetooth_low_energy_defs_win.cc', 92 'bluetooth_low_energy_defs_win.cc',
87 'bluetooth_low_energy_defs_win.h', 93 'bluetooth_low_energy_defs_win.h',
88 'bluetooth_low_energy_device_mac.h', 94 'bluetooth_low_energy_device_mac.h',
89 'bluetooth_low_energy_device_mac.mm', 95 'bluetooth_low_energy_device_mac.mm',
90 'bluetooth_low_energy_discovery_manager_mac.h', 96 'bluetooth_low_energy_discovery_manager_mac.h',
91 'bluetooth_low_energy_discovery_manager_mac.mm', 97 'bluetooth_low_energy_discovery_manager_mac.mm',
92 'bluetooth_low_energy_win.cc', 98 'bluetooth_low_energy_win.cc',
93 'bluetooth_low_energy_win.h', 99 'bluetooth_low_energy_win.h',
100 'bluetooth_remote_gatt_characteristic.cc',
101 'bluetooth_remote_gatt_characteristic.h',
94 'bluetooth_remote_gatt_characteristic_android.cc', 102 'bluetooth_remote_gatt_characteristic_android.cc',
95 'bluetooth_remote_gatt_characteristic_android.h', 103 'bluetooth_remote_gatt_characteristic_android.h',
96 'bluetooth_remote_gatt_characteristic_win.cc', 104 'bluetooth_remote_gatt_characteristic_win.cc',
97 'bluetooth_remote_gatt_characteristic_win.h', 105 'bluetooth_remote_gatt_characteristic_win.h',
106 'bluetooth_remote_gatt_descriptor.cc',
107 'bluetooth_remote_gatt_descriptor.h',
98 'bluetooth_remote_gatt_descriptor_android.cc', 108 'bluetooth_remote_gatt_descriptor_android.cc',
99 'bluetooth_remote_gatt_descriptor_android.h', 109 'bluetooth_remote_gatt_descriptor_android.h',
100 'bluetooth_remote_gatt_descriptor_win.cc', 110 'bluetooth_remote_gatt_descriptor_win.cc',
101 'bluetooth_remote_gatt_descriptor_win.h', 111 'bluetooth_remote_gatt_descriptor_win.h',
112 'bluetooth_remote_gatt_service.cc',
113 'bluetooth_remote_gatt_service.h',
102 'bluetooth_remote_gatt_service_android.cc', 114 'bluetooth_remote_gatt_service_android.cc',
103 'bluetooth_remote_gatt_service_android.h', 115 'bluetooth_remote_gatt_service_android.h',
104 'bluetooth_remote_gatt_service_win.cc', 116 'bluetooth_remote_gatt_service_win.cc',
105 'bluetooth_remote_gatt_service_win.h', 117 'bluetooth_remote_gatt_service_win.h',
106 'bluetooth_rfcomm_channel_mac.mm', 118 'bluetooth_rfcomm_channel_mac.mm',
107 'bluetooth_rfcomm_channel_mac.h', 119 'bluetooth_rfcomm_channel_mac.h',
108 'bluetooth_service_record_win.cc', 120 'bluetooth_service_record_win.cc',
109 'bluetooth_service_record_win.h', 121 'bluetooth_service_record_win.h',
110 'bluetooth_socket.cc', 122 'bluetooth_socket.cc',
111 'bluetooth_socket.h', 123 'bluetooth_socket.h',
(...skipping 11 matching lines...) Expand all
123 'bluetooth_uuid.h', 135 'bluetooth_uuid.h',
124 ], 136 ],
125 'conditions': [ 137 'conditions': [
126 ['chromeos==1 or OS=="linux"', { 138 ['chromeos==1 or OS=="linux"', {
127 'conditions': [ 139 'conditions': [
128 ['use_dbus==1', { 140 ['use_dbus==1', {
129 'defines': [ 141 'defines': [
130 'DEVICE_BLUETOOTH_IMPLEMENTATION', 142 'DEVICE_BLUETOOTH_IMPLEMENTATION',
131 ], 143 ],
132 'sources': [ 144 'sources': [
133 'bluetooth_adapter_bluez.cc', 145 'bluez/bluetooth_adapter_bluez.cc',
134 'bluetooth_adapter_bluez.h', 146 'bluez/bluetooth_adapter_bluez.h',
135 'bluetooth_adapter_profile_bluez.cc', 147 'bluez/bluetooth_adapter_profile_bluez.cc',
136 'bluetooth_adapter_profile_bluez.h', 148 'bluez/bluetooth_adapter_profile_bluez.h',
137 'bluetooth_advertisement_bluez.cc', 149 'bluez/bluetooth_advertisement_bluez.cc',
138 'bluetooth_advertisement_bluez.h', 150 'bluez/bluetooth_advertisement_bluez.h',
139 'bluetooth_audio_sink_bluez.cc', 151 'bluez/bluetooth_audio_sink_bluez.cc',
140 'bluetooth_audio_sink_bluez.h', 152 'bluez/bluetooth_audio_sink_bluez.h',
141 'bluetooth_device_bluez.cc', 153 'bluez/bluetooth_device_bluez.cc',
142 'bluetooth_device_bluez.h', 154 'bluez/bluetooth_device_bluez.h',
143 'bluetooth_gatt_characteristic_bluez.cc', 155 'bluez/bluetooth_gatt_characteristic_bluez.cc',
144 'bluetooth_gatt_characteristic_bluez.h', 156 'bluez/bluetooth_gatt_characteristic_bluez.h',
145 'bluetooth_gatt_connection_bluez.cc', 157 'bluez/bluetooth_gatt_connection_bluez.cc',
146 'bluetooth_gatt_connection_bluez.h', 158 'bluez/bluetooth_gatt_connection_bluez.h',
147 'bluetooth_gatt_descriptor_bluez.cc', 159 'bluez/bluetooth_gatt_descriptor_bluez.cc',
148 'bluetooth_gatt_descriptor_bluez.h', 160 'bluez/bluetooth_gatt_descriptor_bluez.h',
149 'bluetooth_gatt_notify_session_bluez.cc', 161 'bluez/bluetooth_gatt_notify_session_bluez.cc',
150 'bluetooth_gatt_notify_session_bluez.h', 162 'bluez/bluetooth_gatt_notify_session_bluez.h',
151 'bluetooth_gatt_service_bluez.cc', 163 'bluez/bluetooth_gatt_service_bluez.cc',
152 'bluetooth_gatt_service_bluez.h', 164 'bluez/bluetooth_gatt_service_bluez.h',
153 'bluetooth_local_gatt_characteristic_bluez.cc', 165 'bluez/bluetooth_local_gatt_characteristic_bluez.cc',
154 'bluetooth_local_gatt_characteristic_bluez.h', 166 'bluez/bluetooth_local_gatt_characteristic_bluez.h',
155 'bluetooth_local_gatt_service_bluez.cc', 167 'bluez/bluetooth_local_gatt_descriptor_bluez.cc',
156 'bluetooth_local_gatt_service_bluez.h', 168 'bluez/bluetooth_local_gatt_descriptor_bluez.h',
157 'bluetooth_pairing_bluez.cc', 169 'bluez/bluetooth_local_gatt_service_bluez.cc',
158 'bluetooth_pairing_bluez.h', 170 'bluez/bluetooth_local_gatt_service_bluez.h',
159 'bluetooth_remote_gatt_characteristic_bluez.cc', 171 'bluez/bluetooth_pairing_bluez.cc',
160 'bluetooth_remote_gatt_characteristic_bluez.h', 172 'bluez/bluetooth_pairing_bluez.h',
161 'bluetooth_remote_gatt_service_bluez.cc', 173 'bluez/bluetooth_remote_gatt_characteristic_bluez.cc',
162 'bluetooth_remote_gatt_service_bluez.h', 174 'bluez/bluetooth_remote_gatt_characteristic_bluez.h',
163 'bluetooth_socket_bluez.cc', 175 'bluez/bluetooth_remote_gatt_descriptor_bluez.cc',
164 'bluetooth_socket_bluez.h', 176 'bluez/bluetooth_remote_gatt_descriptor_bluez.h',
177 'bluez/bluetooth_remote_gatt_service_bluez.cc',
178 'bluez/bluetooth_remote_gatt_service_bluez.h',
179 'bluez/bluetooth_socket_bluez.cc',
180 'bluez/bluetooth_socket_bluez.h',
165 'dbus/bluetooth_adapter_client.cc', 181 'dbus/bluetooth_adapter_client.cc',
166 'dbus/bluetooth_adapter_client.h', 182 'dbus/bluetooth_adapter_client.h',
167 'dbus/bluetooth_le_advertising_manager_client.cc', 183 'dbus/bluetooth_le_advertising_manager_client.cc',
168 'dbus/bluetooth_le_advertising_manager_client.h', 184 'dbus/bluetooth_le_advertising_manager_client.h',
169 'dbus/bluetooth_le_advertisement_service_provider.cc', 185 'dbus/bluetooth_le_advertisement_service_provider.cc',
170 'dbus/bluetooth_le_advertisement_service_provider.h', 186 'dbus/bluetooth_le_advertisement_service_provider.h',
171 'dbus/bluetooth_agent_manager_client.cc', 187 'dbus/bluetooth_agent_manager_client.cc',
172 'dbus/bluetooth_agent_manager_client.h', 188 'dbus/bluetooth_agent_manager_client.h',
173 'dbus/bluetooth_agent_service_provider.cc', 189 'dbus/bluetooth_agent_service_provider.cc',
174 'dbus/bluetooth_agent_service_provider.h', 190 'dbus/bluetooth_agent_service_provider.h',
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 ], 438 ],
423 'variables': { 439 'variables': {
424 'java_in_dir': '../../device/bluetooth/android/java', 440 'java_in_dir': '../../device/bluetooth/android/java',
425 }, 441 },
426 'includes': [ '../../build/java.gypi' ], 442 'includes': [ '../../build/java.gypi' ],
427 }, 443 },
428 ], 444 ],
429 }], 445 }],
430 ], 446 ],
431 } 447 }
OLDNEW
« 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