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