| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "bluetooth_gatt_characteristic.cc", | 64 "bluetooth_gatt_characteristic.cc", |
| 65 "bluetooth_gatt_characteristic.h", | 65 "bluetooth_gatt_characteristic.h", |
| 66 "bluetooth_gatt_connection.cc", | 66 "bluetooth_gatt_connection.cc", |
| 67 "bluetooth_gatt_connection.h", | 67 "bluetooth_gatt_connection.h", |
| 68 "bluetooth_gatt_descriptor.cc", | 68 "bluetooth_gatt_descriptor.cc", |
| 69 "bluetooth_gatt_descriptor.h", | 69 "bluetooth_gatt_descriptor.h", |
| 70 "bluetooth_gatt_notify_session.cc", | 70 "bluetooth_gatt_notify_session.cc", |
| 71 "bluetooth_gatt_notify_session.h", | 71 "bluetooth_gatt_notify_session.h", |
| 72 "bluetooth_gatt_notify_session_android.cc", | 72 "bluetooth_gatt_notify_session_android.cc", |
| 73 "bluetooth_gatt_notify_session_android.h", | 73 "bluetooth_gatt_notify_session_android.h", |
| 74 "bluetooth_gatt_notify_session_win.cc", |
| 75 "bluetooth_gatt_notify_session_win.h", |
| 74 "bluetooth_gatt_service.cc", | 76 "bluetooth_gatt_service.cc", |
| 75 "bluetooth_gatt_service.h", | 77 "bluetooth_gatt_service.h", |
| 76 "bluetooth_init_win.cc", | 78 "bluetooth_init_win.cc", |
| 77 "bluetooth_init_win.h", | 79 "bluetooth_init_win.h", |
| 78 "bluetooth_l2cap_channel_mac.h", | 80 "bluetooth_l2cap_channel_mac.h", |
| 79 "bluetooth_l2cap_channel_mac.mm", | 81 "bluetooth_l2cap_channel_mac.mm", |
| 80 "bluetooth_low_energy_central_manager_delegate.h", | 82 "bluetooth_low_energy_central_manager_delegate.h", |
| 81 "bluetooth_low_energy_central_manager_delegate.mm", | 83 "bluetooth_low_energy_central_manager_delegate.mm", |
| 82 "bluetooth_low_energy_defs_win.cc", | 84 "bluetooth_low_energy_defs_win.cc", |
| 83 "bluetooth_low_energy_defs_win.h", | 85 "bluetooth_low_energy_defs_win.h", |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 jni_package = "bluetooth" | 329 jni_package = "bluetooth" |
| 328 } | 330 } |
| 329 | 331 |
| 330 android_library("java") { | 332 android_library("java") { |
| 331 java_files = java_sources_needing_jni | 333 java_files = java_sources_needing_jni |
| 332 deps = [ | 334 deps = [ |
| 333 "//base:base_java", | 335 "//base:base_java", |
| 334 ] | 336 ] |
| 335 } | 337 } |
| 336 } | 338 } |
| OLD | NEW |