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

Side by Side Diff: device/bluetooth/BUILD.gn

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
« no previous file with comments | « no previous file | device/bluetooth/bluetooth.gyp » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/features.gni") 4 import("//build/config/features.gni")
5 5
6 if (is_android) { 6 if (is_android) {
7 import("//build/config/android/rules.gni") # For generate_jni(). 7 import("//build/config/android/rules.gni") # For generate_jni().
8 } 8 }
9 9
10 config("bluetooth_config") { 10 config("bluetooth_config") {
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 "bluetooth_adapter_bluez.cc", 163 "bluetooth_adapter_bluez.cc",
164 "bluetooth_adapter_bluez.h", 164 "bluetooth_adapter_bluez.h",
165 "bluetooth_adapter_profile_bluez.cc", 165 "bluetooth_adapter_profile_bluez.cc",
166 "bluetooth_adapter_profile_bluez.h", 166 "bluetooth_adapter_profile_bluez.h",
167 "bluetooth_advertisement_bluez.cc", 167 "bluetooth_advertisement_bluez.cc",
168 "bluetooth_advertisement_bluez.h", 168 "bluetooth_advertisement_bluez.h",
169 "bluetooth_audio_sink_bluez.cc", 169 "bluetooth_audio_sink_bluez.cc",
170 "bluetooth_audio_sink_bluez.h", 170 "bluetooth_audio_sink_bluez.h",
171 "bluetooth_device_bluez.cc", 171 "bluetooth_device_bluez.cc",
172 "bluetooth_device_bluez.h", 172 "bluetooth_device_bluez.h",
173 "bluetooth_gatt_characteristic_bluez.cc",
174 "bluetooth_gatt_characteristic_bluez.h",
173 "bluetooth_gatt_connection_bluez.cc", 175 "bluetooth_gatt_connection_bluez.cc",
174 "bluetooth_gatt_connection_bluez.h", 176 "bluetooth_gatt_connection_bluez.h",
177 "bluetooth_gatt_descriptor_bluez.cc",
178 "bluetooth_gatt_descriptor_bluez.h",
175 "bluetooth_gatt_notify_session_bluez.cc", 179 "bluetooth_gatt_notify_session_bluez.cc",
176 "bluetooth_gatt_notify_session_bluez.h", 180 "bluetooth_gatt_notify_session_bluez.h",
181 "bluetooth_gatt_service_bluez.cc",
182 "bluetooth_gatt_service_bluez.h",
183 "bluetooth_local_gatt_characteristic_bluez.cc",
184 "bluetooth_local_gatt_characteristic_bluez.h",
185 "bluetooth_local_gatt_service_bluez.cc",
186 "bluetooth_local_gatt_service_bluez.h",
177 "bluetooth_pairing_bluez.cc", 187 "bluetooth_pairing_bluez.cc",
178 "bluetooth_pairing_bluez.h", 188 "bluetooth_pairing_bluez.h",
179 "bluetooth_remote_gatt_characteristic_bluez.cc", 189 "bluetooth_remote_gatt_characteristic_bluez.cc",
180 "bluetooth_remote_gatt_characteristic_bluez.h", 190 "bluetooth_remote_gatt_characteristic_bluez.h",
181 "bluetooth_remote_gatt_descriptor_bluez.cc",
182 "bluetooth_remote_gatt_descriptor_bluez.h",
183 "bluetooth_remote_gatt_service_bluez.cc", 191 "bluetooth_remote_gatt_service_bluez.cc",
184 "bluetooth_remote_gatt_service_bluez.h", 192 "bluetooth_remote_gatt_service_bluez.h",
185 "bluetooth_socket_bluez.cc", 193 "bluetooth_socket_bluez.cc",
186 "bluetooth_socket_bluez.h", 194 "bluetooth_socket_bluez.h",
187 "dbus/bluetooth_adapter_client.cc", 195 "dbus/bluetooth_adapter_client.cc",
188 "dbus/bluetooth_adapter_client.h", 196 "dbus/bluetooth_adapter_client.h",
189 "dbus/bluetooth_agent_manager_client.cc", 197 "dbus/bluetooth_agent_manager_client.cc",
190 "dbus/bluetooth_agent_manager_client.h", 198 "dbus/bluetooth_agent_manager_client.h",
191 "dbus/bluetooth_agent_service_provider.cc", 199 "dbus/bluetooth_agent_service_provider.cc",
192 "dbus/bluetooth_agent_service_provider.h", 200 "dbus/bluetooth_agent_service_provider.h",
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 jni_package = "bluetooth" 343 jni_package = "bluetooth"
336 } 344 }
337 345
338 android_library("java") { 346 android_library("java") {
339 java_files = java_sources_needing_jni 347 java_files = java_sources_needing_jni
340 deps = [ 348 deps = [
341 "//base:base_java", 349 "//base:base_java",
342 ] 350 ]
343 } 351 }
344 } 352 }
OLDNEW
« no previous file with comments | « no previous file | device/bluetooth/bluetooth.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698