OLD | NEW |
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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 "bluez/bluetooth_local_gatt_service_bluez.cc", | 209 "bluez/bluetooth_local_gatt_service_bluez.cc", |
210 "bluez/bluetooth_local_gatt_service_bluez.h", | 210 "bluez/bluetooth_local_gatt_service_bluez.h", |
211 "bluez/bluetooth_pairing_bluez.cc", | 211 "bluez/bluetooth_pairing_bluez.cc", |
212 "bluez/bluetooth_pairing_bluez.h", | 212 "bluez/bluetooth_pairing_bluez.h", |
213 "bluez/bluetooth_remote_gatt_characteristic_bluez.cc", | 213 "bluez/bluetooth_remote_gatt_characteristic_bluez.cc", |
214 "bluez/bluetooth_remote_gatt_characteristic_bluez.h", | 214 "bluez/bluetooth_remote_gatt_characteristic_bluez.h", |
215 "bluez/bluetooth_remote_gatt_descriptor_bluez.cc", | 215 "bluez/bluetooth_remote_gatt_descriptor_bluez.cc", |
216 "bluez/bluetooth_remote_gatt_descriptor_bluez.h", | 216 "bluez/bluetooth_remote_gatt_descriptor_bluez.h", |
217 "bluez/bluetooth_remote_gatt_service_bluez.cc", | 217 "bluez/bluetooth_remote_gatt_service_bluez.cc", |
218 "bluez/bluetooth_remote_gatt_service_bluez.h", | 218 "bluez/bluetooth_remote_gatt_service_bluez.h", |
| 219 "bluez/bluetooth_service_attribute_value_bluez.cc", |
| 220 "bluez/bluetooth_service_attribute_value_bluez.h", |
219 "bluez/bluetooth_service_record_bluez.cc", | 221 "bluez/bluetooth_service_record_bluez.cc", |
220 "bluez/bluetooth_service_record_bluez.h", | 222 "bluez/bluetooth_service_record_bluez.h", |
221 "bluez/bluetooth_socket_bluez.cc", | 223 "bluez/bluetooth_socket_bluez.cc", |
222 "bluez/bluetooth_socket_bluez.h", | 224 "bluez/bluetooth_socket_bluez.h", |
223 "dbus/bluetooth_adapter_client.cc", | 225 "dbus/bluetooth_adapter_client.cc", |
224 "dbus/bluetooth_adapter_client.h", | 226 "dbus/bluetooth_adapter_client.h", |
225 "dbus/bluetooth_agent_manager_client.cc", | 227 "dbus/bluetooth_agent_manager_client.cc", |
226 "dbus/bluetooth_agent_manager_client.h", | 228 "dbus/bluetooth_agent_manager_client.h", |
227 "dbus/bluetooth_agent_service_provider.cc", | 229 "dbus/bluetooth_agent_service_provider.cc", |
228 "dbus/bluetooth_agent_service_provider.h", | 230 "dbus/bluetooth_agent_service_provider.h", |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 jni_package = "bluetooth" | 393 jni_package = "bluetooth" |
392 } | 394 } |
393 | 395 |
394 android_library("java") { | 396 android_library("java") { |
395 java_files = java_sources_needing_jni | 397 java_files = java_sources_needing_jni |
396 deps = [ | 398 deps = [ |
397 "//base:base_java", | 399 "//base:base_java", |
398 ] | 400 ] |
399 } | 401 } |
400 } | 402 } |
OLD | NEW |