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

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

Issue 1920693002: Complete //device/bt implementation for hosting local GATT attributes. (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/BUILD.gn ('k') | 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 "bluez/bluetooth_adapter_profile_bluez.cc", 177 "bluez/bluetooth_adapter_profile_bluez.cc",
178 "bluez/bluetooth_adapter_profile_bluez.h", 178 "bluez/bluetooth_adapter_profile_bluez.h",
179 "bluez/bluetooth_advertisement_bluez.cc", 179 "bluez/bluetooth_advertisement_bluez.cc",
180 "bluez/bluetooth_advertisement_bluez.h", 180 "bluez/bluetooth_advertisement_bluez.h",
181 "bluez/bluetooth_audio_sink_bluez.cc", 181 "bluez/bluetooth_audio_sink_bluez.cc",
182 "bluez/bluetooth_audio_sink_bluez.h", 182 "bluez/bluetooth_audio_sink_bluez.h",
183 "bluez/bluetooth_device_bluez.cc", 183 "bluez/bluetooth_device_bluez.cc",
184 "bluez/bluetooth_device_bluez.h", 184 "bluez/bluetooth_device_bluez.h",
185 "bluez/bluetooth_gatt_characteristic_bluez.cc", 185 "bluez/bluetooth_gatt_characteristic_bluez.cc",
186 "bluez/bluetooth_gatt_characteristic_bluez.h", 186 "bluez/bluetooth_gatt_characteristic_bluez.h",
187 "bluez/bluetooth_gatt_characteristic_delegate_wrapper.cc",
188 "bluez/bluetooth_gatt_characteristic_delegate_wrapper.h",
187 "bluez/bluetooth_gatt_connection_bluez.cc", 189 "bluez/bluetooth_gatt_connection_bluez.cc",
188 "bluez/bluetooth_gatt_connection_bluez.h", 190 "bluez/bluetooth_gatt_connection_bluez.h",
189 "bluez/bluetooth_gatt_descriptor_bluez.cc", 191 "bluez/bluetooth_gatt_descriptor_bluez.cc",
190 "bluez/bluetooth_gatt_descriptor_bluez.h", 192 "bluez/bluetooth_gatt_descriptor_bluez.h",
193 "bluez/bluetooth_gatt_descriptor_delegate_wrapper.cc",
194 "bluez/bluetooth_gatt_descriptor_delegate_wrapper.h",
191 "bluez/bluetooth_gatt_notify_session_bluez.cc", 195 "bluez/bluetooth_gatt_notify_session_bluez.cc",
192 "bluez/bluetooth_gatt_notify_session_bluez.h", 196 "bluez/bluetooth_gatt_notify_session_bluez.h",
193 "bluez/bluetooth_gatt_service_bluez.cc", 197 "bluez/bluetooth_gatt_service_bluez.cc",
194 "bluez/bluetooth_gatt_service_bluez.h", 198 "bluez/bluetooth_gatt_service_bluez.h",
195 "bluez/bluetooth_local_gatt_characteristic_bluez.cc", 199 "bluez/bluetooth_local_gatt_characteristic_bluez.cc",
196 "bluez/bluetooth_local_gatt_characteristic_bluez.h", 200 "bluez/bluetooth_local_gatt_characteristic_bluez.h",
197 "bluez/bluetooth_local_gatt_descriptor_bluez.cc", 201 "bluez/bluetooth_local_gatt_descriptor_bluez.cc",
198 "bluez/bluetooth_local_gatt_descriptor_bluez.h", 202 "bluez/bluetooth_local_gatt_descriptor_bluez.h",
199 "bluez/bluetooth_local_gatt_service_bluez.cc", 203 "bluez/bluetooth_local_gatt_service_bluez.cc",
200 "bluez/bluetooth_local_gatt_service_bluez.h", 204 "bluez/bluetooth_local_gatt_service_bluez.h",
(...skipping 10 matching lines...) Expand all
211 "dbus/bluetooth_adapter_client.cc", 215 "dbus/bluetooth_adapter_client.cc",
212 "dbus/bluetooth_adapter_client.h", 216 "dbus/bluetooth_adapter_client.h",
213 "dbus/bluetooth_agent_manager_client.cc", 217 "dbus/bluetooth_agent_manager_client.cc",
214 "dbus/bluetooth_agent_manager_client.h", 218 "dbus/bluetooth_agent_manager_client.h",
215 "dbus/bluetooth_agent_service_provider.cc", 219 "dbus/bluetooth_agent_service_provider.cc",
216 "dbus/bluetooth_agent_service_provider.h", 220 "dbus/bluetooth_agent_service_provider.h",
217 "dbus/bluetooth_dbus_client_bundle.cc", 221 "dbus/bluetooth_dbus_client_bundle.cc",
218 "dbus/bluetooth_dbus_client_bundle.h", 222 "dbus/bluetooth_dbus_client_bundle.h",
219 "dbus/bluetooth_device_client.cc", 223 "dbus/bluetooth_device_client.cc",
220 "dbus/bluetooth_device_client.h", 224 "dbus/bluetooth_device_client.h",
225 "dbus/bluetooth_gatt_application_service_provider.cc",
226 "dbus/bluetooth_gatt_application_service_provider.h",
227 "dbus/bluetooth_gatt_application_service_provider_impl.cc",
228 "dbus/bluetooth_gatt_application_service_provider_impl.h",
221 "dbus/bluetooth_gatt_characteristic_client.cc", 229 "dbus/bluetooth_gatt_characteristic_client.cc",
222 "dbus/bluetooth_gatt_characteristic_client.h", 230 "dbus/bluetooth_gatt_characteristic_client.h",
223 "dbus/bluetooth_gatt_characteristic_service_provider.cc", 231 "dbus/bluetooth_gatt_characteristic_service_provider.cc",
224 "dbus/bluetooth_gatt_characteristic_service_provider.h", 232 "dbus/bluetooth_gatt_characteristic_service_provider.h",
225 "dbus/bluetooth_gatt_descriptor_client.cc", 233 "dbus/bluetooth_gatt_descriptor_client.cc",
226 "dbus/bluetooth_gatt_descriptor_client.h", 234 "dbus/bluetooth_gatt_descriptor_client.h",
227 "dbus/bluetooth_gatt_descriptor_service_provider.cc", 235 "dbus/bluetooth_gatt_descriptor_service_provider.cc",
228 "dbus/bluetooth_gatt_descriptor_service_provider.h", 236 "dbus/bluetooth_gatt_descriptor_service_provider.h",
229 "dbus/bluetooth_gatt_manager_client.cc", 237 "dbus/bluetooth_gatt_manager_client.cc",
230 "dbus/bluetooth_gatt_manager_client.h", 238 "dbus/bluetooth_gatt_manager_client.h",
(...skipping 21 matching lines...) Expand all
252 "dbus/bluez_dbus_manager.cc", 260 "dbus/bluez_dbus_manager.cc",
253 "dbus/bluez_dbus_manager.h", 261 "dbus/bluez_dbus_manager.h",
254 "dbus/fake_bluetooth_adapter_client.cc", 262 "dbus/fake_bluetooth_adapter_client.cc",
255 "dbus/fake_bluetooth_adapter_client.h", 263 "dbus/fake_bluetooth_adapter_client.h",
256 "dbus/fake_bluetooth_agent_manager_client.cc", 264 "dbus/fake_bluetooth_agent_manager_client.cc",
257 "dbus/fake_bluetooth_agent_manager_client.h", 265 "dbus/fake_bluetooth_agent_manager_client.h",
258 "dbus/fake_bluetooth_agent_service_provider.cc", 266 "dbus/fake_bluetooth_agent_service_provider.cc",
259 "dbus/fake_bluetooth_agent_service_provider.h", 267 "dbus/fake_bluetooth_agent_service_provider.h",
260 "dbus/fake_bluetooth_device_client.cc", 268 "dbus/fake_bluetooth_device_client.cc",
261 "dbus/fake_bluetooth_device_client.h", 269 "dbus/fake_bluetooth_device_client.h",
270 "dbus/fake_bluetooth_gatt_application_service_provider.cc",
271 "dbus/fake_bluetooth_gatt_application_service_provider.h",
262 "dbus/fake_bluetooth_gatt_characteristic_client.cc", 272 "dbus/fake_bluetooth_gatt_characteristic_client.cc",
263 "dbus/fake_bluetooth_gatt_characteristic_client.h", 273 "dbus/fake_bluetooth_gatt_characteristic_client.h",
264 "dbus/fake_bluetooth_gatt_characteristic_service_provider.cc", 274 "dbus/fake_bluetooth_gatt_characteristic_service_provider.cc",
265 "dbus/fake_bluetooth_gatt_characteristic_service_provider.h", 275 "dbus/fake_bluetooth_gatt_characteristic_service_provider.h",
266 "dbus/fake_bluetooth_gatt_descriptor_client.cc", 276 "dbus/fake_bluetooth_gatt_descriptor_client.cc",
267 "dbus/fake_bluetooth_gatt_descriptor_client.h", 277 "dbus/fake_bluetooth_gatt_descriptor_client.h",
268 "dbus/fake_bluetooth_gatt_descriptor_service_provider.cc", 278 "dbus/fake_bluetooth_gatt_descriptor_service_provider.cc",
269 "dbus/fake_bluetooth_gatt_descriptor_service_provider.h", 279 "dbus/fake_bluetooth_gatt_descriptor_service_provider.h",
270 "dbus/fake_bluetooth_gatt_manager_client.cc", 280 "dbus/fake_bluetooth_gatt_manager_client.cc",
271 "dbus/fake_bluetooth_gatt_manager_client.h", 281 "dbus/fake_bluetooth_gatt_manager_client.h",
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 jni_package = "bluetooth" 369 jni_package = "bluetooth"
360 } 370 }
361 371
362 android_library("java") { 372 android_library("java") {
363 java_files = java_sources_needing_jni 373 java_files = java_sources_needing_jni
364 deps = [ 374 deps = [
365 "//base:base_java", 375 "//base:base_java",
366 ] 376 ]
367 } 377 }
368 } 378 }
OLDNEW
« no previous file with comments | « device/BUILD.gn ('k') | device/bluetooth/bluetooth.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698