| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 "dbus/bluetooth_agent_service_provider.cc", | 222 "dbus/bluetooth_agent_service_provider.cc", |
| 223 "dbus/bluetooth_agent_service_provider.h", | 223 "dbus/bluetooth_agent_service_provider.h", |
| 224 "dbus/bluetooth_dbus_client_bundle.cc", | 224 "dbus/bluetooth_dbus_client_bundle.cc", |
| 225 "dbus/bluetooth_dbus_client_bundle.h", | 225 "dbus/bluetooth_dbus_client_bundle.h", |
| 226 "dbus/bluetooth_device_client.cc", | 226 "dbus/bluetooth_device_client.cc", |
| 227 "dbus/bluetooth_device_client.h", | 227 "dbus/bluetooth_device_client.h", |
| 228 "dbus/bluetooth_gatt_application_service_provider.cc", | 228 "dbus/bluetooth_gatt_application_service_provider.cc", |
| 229 "dbus/bluetooth_gatt_application_service_provider.h", | 229 "dbus/bluetooth_gatt_application_service_provider.h", |
| 230 "dbus/bluetooth_gatt_application_service_provider_impl.cc", | 230 "dbus/bluetooth_gatt_application_service_provider_impl.cc", |
| 231 "dbus/bluetooth_gatt_application_service_provider_impl.h", | 231 "dbus/bluetooth_gatt_application_service_provider_impl.h", |
| 232 "dbus/bluetooth_gatt_attribute_value_delegate.cc", |
| 232 "dbus/bluetooth_gatt_attribute_value_delegate.h", | 233 "dbus/bluetooth_gatt_attribute_value_delegate.h", |
| 233 "dbus/bluetooth_gatt_characteristic_client.cc", | 234 "dbus/bluetooth_gatt_characteristic_client.cc", |
| 234 "dbus/bluetooth_gatt_characteristic_client.h", | 235 "dbus/bluetooth_gatt_characteristic_client.h", |
| 235 "dbus/bluetooth_gatt_characteristic_delegate_wrapper.cc", | 236 "dbus/bluetooth_gatt_characteristic_delegate_wrapper.cc", |
| 236 "dbus/bluetooth_gatt_characteristic_delegate_wrapper.h", | 237 "dbus/bluetooth_gatt_characteristic_delegate_wrapper.h", |
| 237 "dbus/bluetooth_gatt_characteristic_service_provider.cc", | 238 "dbus/bluetooth_gatt_characteristic_service_provider.cc", |
| 238 "dbus/bluetooth_gatt_characteristic_service_provider.h", | 239 "dbus/bluetooth_gatt_characteristic_service_provider.h", |
| 239 "dbus/bluetooth_gatt_characteristic_service_provider_impl.cc", | 240 "dbus/bluetooth_gatt_characteristic_service_provider_impl.cc", |
| 240 "dbus/bluetooth_gatt_characteristic_service_provider_impl.h", | 241 "dbus/bluetooth_gatt_characteristic_service_provider_impl.h", |
| 241 "dbus/bluetooth_gatt_descriptor_client.cc", | 242 "dbus/bluetooth_gatt_descriptor_client.cc", |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 jni_package = "bluetooth" | 384 jni_package = "bluetooth" |
| 384 } | 385 } |
| 385 | 386 |
| 386 android_library("java") { | 387 android_library("java") { |
| 387 java_files = java_sources_needing_jni | 388 java_files = java_sources_needing_jni |
| 388 deps = [ | 389 deps = [ |
| 389 "//base:base_java", | 390 "//base:base_java", |
| 390 ] | 391 ] |
| 391 } | 392 } |
| 392 } | 393 } |
| OLD | NEW |