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 | 4 |
5 if (is_android) { | 5 if (is_android) { |
6 import("//build/config/android/rules.gni") # For generate_jni(). | 6 import("//build/config/android/rules.gni") # For generate_jni(). |
7 } | 7 } |
8 | 8 |
9 config("bluetooth_config") { | 9 config("bluetooth_config") { |
10 if (is_win) { | 10 if (is_win) { |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 "bluetooth_gatt_notify_session.cc", | 78 "bluetooth_gatt_notify_session.cc", |
79 "bluetooth_gatt_notify_session.h", | 79 "bluetooth_gatt_notify_session.h", |
80 "bluetooth_gatt_notify_session_chromeos.cc", | 80 "bluetooth_gatt_notify_session_chromeos.cc", |
81 "bluetooth_gatt_notify_session_chromeos.h", | 81 "bluetooth_gatt_notify_session_chromeos.h", |
82 "bluetooth_gatt_service.cc", | 82 "bluetooth_gatt_service.cc", |
83 "bluetooth_gatt_service.h", | 83 "bluetooth_gatt_service.h", |
84 "bluetooth_init_win.cc", | 84 "bluetooth_init_win.cc", |
85 "bluetooth_init_win.h", | 85 "bluetooth_init_win.h", |
86 "bluetooth_l2cap_channel_mac.h", | 86 "bluetooth_l2cap_channel_mac.h", |
87 "bluetooth_l2cap_channel_mac.mm", | 87 "bluetooth_l2cap_channel_mac.mm", |
| 88 "bluetooth_low_energy_central_manager_delegate.h", |
| 89 "bluetooth_low_energy_central_manager_delegate.mm", |
88 "bluetooth_low_energy_defs_win.cc", | 90 "bluetooth_low_energy_defs_win.cc", |
89 "bluetooth_low_energy_defs_win.h", | 91 "bluetooth_low_energy_defs_win.h", |
90 "bluetooth_low_energy_device_mac.h", | 92 "bluetooth_low_energy_device_mac.h", |
91 "bluetooth_low_energy_device_mac.mm", | 93 "bluetooth_low_energy_device_mac.mm", |
92 "bluetooth_low_energy_discovery_manager_mac.h", | 94 "bluetooth_low_energy_discovery_manager_mac.h", |
93 "bluetooth_low_energy_discovery_manager_mac.mm", | 95 "bluetooth_low_energy_discovery_manager_mac.mm", |
94 "bluetooth_low_energy_win.cc", | 96 "bluetooth_low_energy_win.cc", |
95 "bluetooth_low_energy_win.h", | 97 "bluetooth_low_energy_win.h", |
96 "bluetooth_pairing_chromeos.cc", | 98 "bluetooth_pairing_chromeos.cc", |
97 "bluetooth_pairing_chromeos.h", | 99 "bluetooth_pairing_chromeos.h", |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 jni_package = "bluetooth" | 205 jni_package = "bluetooth" |
204 } | 206 } |
205 | 207 |
206 android_library("java") { | 208 android_library("java") { |
207 java_files = java_sources_needing_jni | 209 java_files = java_sources_needing_jni |
208 deps = [ | 210 deps = [ |
209 "//base:base_java", | 211 "//base:base_java", |
210 ] | 212 ] |
211 } | 213 } |
212 } | 214 } |
OLD | NEW |