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

Side by Side Diff: device/bluetooth/bluetooth.gyp

Issue 1872943002: Add support for local services/characteristics/descriptors. (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
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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 'bluetooth_adapter_bluez.cc', 133 'bluetooth_adapter_bluez.cc',
134 'bluetooth_adapter_bluez.h', 134 'bluetooth_adapter_bluez.h',
135 'bluetooth_adapter_profile_bluez.cc', 135 'bluetooth_adapter_profile_bluez.cc',
136 'bluetooth_adapter_profile_bluez.h', 136 'bluetooth_adapter_profile_bluez.h',
137 'bluetooth_advertisement_bluez.cc', 137 'bluetooth_advertisement_bluez.cc',
138 'bluetooth_advertisement_bluez.h', 138 'bluetooth_advertisement_bluez.h',
139 'bluetooth_audio_sink_bluez.cc', 139 'bluetooth_audio_sink_bluez.cc',
140 'bluetooth_audio_sink_bluez.h', 140 'bluetooth_audio_sink_bluez.h',
141 'bluetooth_device_bluez.cc', 141 'bluetooth_device_bluez.cc',
142 'bluetooth_device_bluez.h', 142 'bluetooth_device_bluez.h',
143 'bluetooth_gatt_characteristic_bluez.cc',
ortuno 2016/04/14 17:42:34 The indentation seems wrong? Or is it just the rev
rkc 2016/04/14 19:27:26 Seems fine here.
ortuno 2016/04/14 21:17:37 You used tabs instead of spaces. Seems fixed in la
rkc 2016/04/14 21:59:38 Acknowledged.
144 'bluetooth_gatt_characteristic_bluez.h',
143 'bluetooth_gatt_connection_bluez.cc', 145 'bluetooth_gatt_connection_bluez.cc',
144 'bluetooth_gatt_connection_bluez.h', 146 'bluetooth_gatt_connection_bluez.h',
147 'bluetooth_gatt_descriptor_bluez.cc',
148 'bluetooth_gatt_descriptor_bluez.h',
145 'bluetooth_gatt_notify_session_bluez.cc', 149 'bluetooth_gatt_notify_session_bluez.cc',
146 'bluetooth_gatt_notify_session_bluez.h', 150 'bluetooth_gatt_notify_session_bluez.h',
151 'bluetooth_gatt_service_bluez.cc',
152 'bluetooth_gatt_service_bluez.h',
153 'bluetooth_local_gatt_characteristic_bluez.cc',
154 'bluetooth_local_gatt_characteristic_bluez.h',
155 'bluetooth_local_gatt_service_bluez.cc',
156 'bluetooth_local_gatt_service_bluez.h',
147 'bluetooth_pairing_bluez.cc', 157 'bluetooth_pairing_bluez.cc',
148 'bluetooth_pairing_bluez.h', 158 'bluetooth_pairing_bluez.h',
149 'bluetooth_remote_gatt_characteristic_bluez.cc', 159 'bluetooth_remote_gatt_characteristic_bluez.cc',
150 'bluetooth_remote_gatt_characteristic_bluez.h', 160 'bluetooth_remote_gatt_characteristic_bluez.h',
151 'bluetooth_remote_gatt_descriptor_bluez.cc',
152 'bluetooth_remote_gatt_descriptor_bluez.h',
153 'bluetooth_remote_gatt_service_bluez.cc', 161 'bluetooth_remote_gatt_service_bluez.cc',
154 'bluetooth_remote_gatt_service_bluez.h', 162 'bluetooth_remote_gatt_service_bluez.h',
155 'bluetooth_socket_bluez.cc', 163 'bluetooth_socket_bluez.cc',
156 'bluetooth_socket_bluez.h', 164 'bluetooth_socket_bluez.h',
157 'dbus/bluetooth_adapter_client.cc', 165 'dbus/bluetooth_adapter_client.cc',
158 'dbus/bluetooth_adapter_client.h', 166 'dbus/bluetooth_adapter_client.h',
159 'dbus/bluetooth_le_advertising_manager_client.cc', 167 'dbus/bluetooth_le_advertising_manager_client.cc',
160 'dbus/bluetooth_le_advertising_manager_client.h', 168 'dbus/bluetooth_le_advertising_manager_client.h',
161 'dbus/bluetooth_le_advertisement_service_provider.cc', 169 'dbus/bluetooth_le_advertisement_service_provider.cc',
162 'dbus/bluetooth_le_advertisement_service_provider.h', 170 'dbus/bluetooth_le_advertisement_service_provider.h',
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 ], 422 ],
415 'variables': { 423 'variables': {
416 'java_in_dir': '../../device/bluetooth/android/java', 424 'java_in_dir': '../../device/bluetooth/android/java',
417 }, 425 },
418 'includes': [ '../../build/java.gypi' ], 426 'includes': [ '../../build/java.gypi' ],
419 }, 427 },
420 ], 428 ],
421 }], 429 }],
422 ], 430 ],
423 } 431 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698