| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "bluetooth_low_energy_discovery_manager_mac.h", | 86 "bluetooth_low_energy_discovery_manager_mac.h", |
| 87 "bluetooth_low_energy_discovery_manager_mac.mm", | 87 "bluetooth_low_energy_discovery_manager_mac.mm", |
| 88 "bluetooth_low_energy_win.cc", | 88 "bluetooth_low_energy_win.cc", |
| 89 "bluetooth_low_energy_win.h", | 89 "bluetooth_low_energy_win.h", |
| 90 "bluetooth_remote_gatt_characteristic_android.cc", | 90 "bluetooth_remote_gatt_characteristic_android.cc", |
| 91 "bluetooth_remote_gatt_characteristic_android.h", | 91 "bluetooth_remote_gatt_characteristic_android.h", |
| 92 "bluetooth_remote_gatt_characteristic_win.cc", | 92 "bluetooth_remote_gatt_characteristic_win.cc", |
| 93 "bluetooth_remote_gatt_characteristic_win.h", | 93 "bluetooth_remote_gatt_characteristic_win.h", |
| 94 "bluetooth_remote_gatt_descriptor_android.cc", | 94 "bluetooth_remote_gatt_descriptor_android.cc", |
| 95 "bluetooth_remote_gatt_descriptor_android.h", | 95 "bluetooth_remote_gatt_descriptor_android.h", |
| 96 "bluetooth_remote_gatt_descriptor_win.cc", |
| 97 "bluetooth_remote_gatt_descriptor_win.h", |
| 96 "bluetooth_remote_gatt_service_android.cc", | 98 "bluetooth_remote_gatt_service_android.cc", |
| 97 "bluetooth_remote_gatt_service_android.h", | 99 "bluetooth_remote_gatt_service_android.h", |
| 98 "bluetooth_remote_gatt_service_win.cc", | 100 "bluetooth_remote_gatt_service_win.cc", |
| 99 "bluetooth_remote_gatt_service_win.h", | 101 "bluetooth_remote_gatt_service_win.h", |
| 100 "bluetooth_rfcomm_channel_mac.h", | 102 "bluetooth_rfcomm_channel_mac.h", |
| 101 "bluetooth_rfcomm_channel_mac.mm", | 103 "bluetooth_rfcomm_channel_mac.mm", |
| 102 "bluetooth_service_record_win.cc", | 104 "bluetooth_service_record_win.cc", |
| 103 "bluetooth_service_record_win.h", | 105 "bluetooth_service_record_win.h", |
| 104 "bluetooth_socket.cc", | 106 "bluetooth_socket.cc", |
| 105 "bluetooth_socket.h", | 107 "bluetooth_socket.h", |
| (...skipping 221 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 |