| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 "bluez/bluetooth_adapter_profile_bluez.cc", | 177 "bluez/bluetooth_adapter_profile_bluez.cc", |
| 178 "bluez/bluetooth_adapter_profile_bluez.h", | 178 "bluez/bluetooth_adapter_profile_bluez.h", |
| 179 "bluez/bluetooth_advertisement_bluez.cc", | 179 "bluez/bluetooth_advertisement_bluez.cc", |
| 180 "bluez/bluetooth_advertisement_bluez.h", | 180 "bluez/bluetooth_advertisement_bluez.h", |
| 181 "bluez/bluetooth_audio_sink_bluez.cc", | 181 "bluez/bluetooth_audio_sink_bluez.cc", |
| 182 "bluez/bluetooth_audio_sink_bluez.h", | 182 "bluez/bluetooth_audio_sink_bluez.h", |
| 183 "bluez/bluetooth_device_bluez.cc", | 183 "bluez/bluetooth_device_bluez.cc", |
| 184 "bluez/bluetooth_device_bluez.h", | 184 "bluez/bluetooth_device_bluez.h", |
| 185 "bluez/bluetooth_gatt_characteristic_bluez.cc", | 185 "bluez/bluetooth_gatt_characteristic_bluez.cc", |
| 186 "bluez/bluetooth_gatt_characteristic_bluez.h", | 186 "bluez/bluetooth_gatt_characteristic_bluez.h", |
| 187 "bluez/bluetooth_gatt_characteristic_delegate_wrapper.cc", |
| 188 "bluez/bluetooth_gatt_characteristic_delegate_wrapper.h", |
| 187 "bluez/bluetooth_gatt_connection_bluez.cc", | 189 "bluez/bluetooth_gatt_connection_bluez.cc", |
| 188 "bluez/bluetooth_gatt_connection_bluez.h", | 190 "bluez/bluetooth_gatt_connection_bluez.h", |
| 189 "bluez/bluetooth_gatt_descriptor_bluez.cc", | 191 "bluez/bluetooth_gatt_descriptor_bluez.cc", |
| 190 "bluez/bluetooth_gatt_descriptor_bluez.h", | 192 "bluez/bluetooth_gatt_descriptor_bluez.h", |
| 193 "bluez/bluetooth_gatt_descriptor_delegate_wrapper.cc", |
| 194 "bluez/bluetooth_gatt_descriptor_delegate_wrapper.h", |
| 191 "bluez/bluetooth_gatt_notify_session_bluez.cc", | 195 "bluez/bluetooth_gatt_notify_session_bluez.cc", |
| 192 "bluez/bluetooth_gatt_notify_session_bluez.h", | 196 "bluez/bluetooth_gatt_notify_session_bluez.h", |
| 193 "bluez/bluetooth_gatt_service_bluez.cc", | 197 "bluez/bluetooth_gatt_service_bluez.cc", |
| 194 "bluez/bluetooth_gatt_service_bluez.h", | 198 "bluez/bluetooth_gatt_service_bluez.h", |
| 195 "bluez/bluetooth_local_gatt_characteristic_bluez.cc", | 199 "bluez/bluetooth_local_gatt_characteristic_bluez.cc", |
| 196 "bluez/bluetooth_local_gatt_characteristic_bluez.h", | 200 "bluez/bluetooth_local_gatt_characteristic_bluez.h", |
| 197 "bluez/bluetooth_local_gatt_descriptor_bluez.cc", | 201 "bluez/bluetooth_local_gatt_descriptor_bluez.cc", |
| 198 "bluez/bluetooth_local_gatt_descriptor_bluez.h", | 202 "bluez/bluetooth_local_gatt_descriptor_bluez.h", |
| 199 "bluez/bluetooth_local_gatt_service_bluez.cc", | 203 "bluez/bluetooth_local_gatt_service_bluez.cc", |
| 200 "bluez/bluetooth_local_gatt_service_bluez.h", | 204 "bluez/bluetooth_local_gatt_service_bluez.h", |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 jni_package = "bluetooth" | 363 jni_package = "bluetooth" |
| 360 } | 364 } |
| 361 | 365 |
| 362 android_library("java") { | 366 android_library("java") { |
| 363 java_files = java_sources_needing_jni | 367 java_files = java_sources_needing_jni |
| 364 deps = [ | 368 deps = [ |
| 365 "//base:base_java", | 369 "//base:base_java", |
| 366 ] | 370 ] |
| 367 } | 371 } |
| 368 } | 372 } |
| OLD | NEW |