| 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_helpers.cc", |
| 233 "dbus/bluetooth_gatt_attribute_helpers.h", |
| 232 "dbus/bluetooth_gatt_attribute_value_delegate.cc", | 234 "dbus/bluetooth_gatt_attribute_value_delegate.cc", |
| 233 "dbus/bluetooth_gatt_attribute_value_delegate.h", | 235 "dbus/bluetooth_gatt_attribute_value_delegate.h", |
| 234 "dbus/bluetooth_gatt_characteristic_client.cc", | 236 "dbus/bluetooth_gatt_characteristic_client.cc", |
| 235 "dbus/bluetooth_gatt_characteristic_client.h", | 237 "dbus/bluetooth_gatt_characteristic_client.h", |
| 236 "dbus/bluetooth_gatt_characteristic_delegate_wrapper.cc", | 238 "dbus/bluetooth_gatt_characteristic_delegate_wrapper.cc", |
| 237 "dbus/bluetooth_gatt_characteristic_delegate_wrapper.h", | 239 "dbus/bluetooth_gatt_characteristic_delegate_wrapper.h", |
| 238 "dbus/bluetooth_gatt_characteristic_service_provider.cc", | 240 "dbus/bluetooth_gatt_characteristic_service_provider.cc", |
| 239 "dbus/bluetooth_gatt_characteristic_service_provider.h", | 241 "dbus/bluetooth_gatt_characteristic_service_provider.h", |
| 240 "dbus/bluetooth_gatt_characteristic_service_provider_impl.cc", | 242 "dbus/bluetooth_gatt_characteristic_service_provider_impl.cc", |
| 241 "dbus/bluetooth_gatt_characteristic_service_provider_impl.h", | 243 "dbus/bluetooth_gatt_characteristic_service_provider_impl.h", |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 jni_package = "bluetooth" | 386 jni_package = "bluetooth" |
| 385 } | 387 } |
| 386 | 388 |
| 387 android_library("java") { | 389 android_library("java") { |
| 388 java_files = java_sources_needing_jni | 390 java_files = java_sources_needing_jni |
| 389 deps = [ | 391 deps = [ |
| 390 "//base:base_java", | 392 "//base:base_java", |
| 391 ] | 393 ] |
| 392 } | 394 } |
| 393 } | 395 } |
| OLD | NEW |