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

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
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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 "bluetooth_adapter_bluez.cc", 161 "bluetooth_adapter_bluez.cc",
162 "bluetooth_adapter_bluez.h", 162 "bluetooth_adapter_bluez.h",
163 "bluetooth_adapter_profile_bluez.cc", 163 "bluetooth_adapter_profile_bluez.cc",
164 "bluetooth_adapter_profile_bluez.h", 164 "bluetooth_adapter_profile_bluez.h",
165 "bluetooth_advertisement_bluez.cc", 165 "bluetooth_advertisement_bluez.cc",
166 "bluetooth_advertisement_bluez.h", 166 "bluetooth_advertisement_bluez.h",
167 "bluetooth_audio_sink_bluez.cc", 167 "bluetooth_audio_sink_bluez.cc",
168 "bluetooth_audio_sink_bluez.h", 168 "bluetooth_audio_sink_bluez.h",
169 "bluetooth_device_bluez.cc", 169 "bluetooth_device_bluez.cc",
170 "bluetooth_device_bluez.h", 170 "bluetooth_device_bluez.h",
171 "bluetooth_gatt_characteristic_bluez.cc",
172 "bluetooth_gatt_characteristic_bluez.h",
171 "bluetooth_gatt_connection_bluez.cc", 173 "bluetooth_gatt_connection_bluez.cc",
172 "bluetooth_gatt_connection_bluez.h", 174 "bluetooth_gatt_connection_bluez.h",
175 "bluetooth_gatt_descriptor_bluez.cc",
176 "bluetooth_gatt_descriptor_bluez.h",
173 "bluetooth_gatt_notify_session_bluez.cc", 177 "bluetooth_gatt_notify_session_bluez.cc",
174 "bluetooth_gatt_notify_session_bluez.h", 178 "bluetooth_gatt_notify_session_bluez.h",
179 "bluetooth_gatt_service_bluez.cc",
180 "bluetooth_gatt_service_bluez.h",
181 "bluetooth_local_gatt_characteristic_bluez.cc",
182 "bluetooth_local_gatt_characteristic_bluez.h",
183 "bluetooth_local_gatt_service_bluez.cc",
184 "bluetooth_local_gatt_service_bluez.h",
175 "bluetooth_pairing_bluez.cc", 185 "bluetooth_pairing_bluez.cc",
176 "bluetooth_pairing_bluez.h", 186 "bluetooth_pairing_bluez.h",
177 "bluetooth_remote_gatt_characteristic_bluez.cc", 187 "bluetooth_remote_gatt_characteristic_bluez.cc",
178 "bluetooth_remote_gatt_characteristic_bluez.h", 188 "bluetooth_remote_gatt_characteristic_bluez.h",
179 "bluetooth_remote_gatt_descriptor_bluez.cc",
180 "bluetooth_remote_gatt_descriptor_bluez.h",
181 "bluetooth_remote_gatt_service_bluez.cc", 189 "bluetooth_remote_gatt_service_bluez.cc",
182 "bluetooth_remote_gatt_service_bluez.h", 190 "bluetooth_remote_gatt_service_bluez.h",
183 "bluetooth_socket_bluez.cc", 191 "bluetooth_socket_bluez.cc",
184 "bluetooth_socket_bluez.h", 192 "bluetooth_socket_bluez.h",
185 "dbus/bluetooth_adapter_client.cc", 193 "dbus/bluetooth_adapter_client.cc",
186 "dbus/bluetooth_adapter_client.h", 194 "dbus/bluetooth_adapter_client.h",
187 "dbus/bluetooth_agent_manager_client.cc", 195 "dbus/bluetooth_agent_manager_client.cc",
188 "dbus/bluetooth_agent_manager_client.h", 196 "dbus/bluetooth_agent_manager_client.h",
189 "dbus/bluetooth_agent_service_provider.cc", 197 "dbus/bluetooth_agent_service_provider.cc",
190 "dbus/bluetooth_agent_service_provider.h", 198 "dbus/bluetooth_agent_service_provider.h",
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 jni_package = "bluetooth" 341 jni_package = "bluetooth"
334 } 342 }
335 343
336 android_library("java") { 344 android_library("java") {
337 java_files = java_sources_needing_jni 345 java_files = java_sources_needing_jni
338 deps = [ 346 deps = [
339 "//base:base_java", 347 "//base:base_java",
340 ] 348 ]
341 } 349 }
342 } 350 }
OLDNEW
« no previous file with comments | « no previous file | device/bluetooth/bluetooth_adapter_bluez.h » ('j') | device/bluetooth/bluetooth_gatt_characteristic_bluez.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698