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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 "bluetooth_low_energy_central_manager_delegate.h", | 78 "bluetooth_low_energy_central_manager_delegate.h", |
79 "bluetooth_low_energy_central_manager_delegate.mm", | 79 "bluetooth_low_energy_central_manager_delegate.mm", |
80 "bluetooth_low_energy_defs_win.cc", | 80 "bluetooth_low_energy_defs_win.cc", |
81 "bluetooth_low_energy_defs_win.h", | 81 "bluetooth_low_energy_defs_win.h", |
82 "bluetooth_low_energy_device_mac.h", | 82 "bluetooth_low_energy_device_mac.h", |
83 "bluetooth_low_energy_device_mac.mm", | 83 "bluetooth_low_energy_device_mac.mm", |
84 "bluetooth_low_energy_discovery_manager_mac.h", | 84 "bluetooth_low_energy_discovery_manager_mac.h", |
85 "bluetooth_low_energy_discovery_manager_mac.mm", | 85 "bluetooth_low_energy_discovery_manager_mac.mm", |
86 "bluetooth_low_energy_win.cc", | 86 "bluetooth_low_energy_win.cc", |
87 "bluetooth_low_energy_win.h", | 87 "bluetooth_low_energy_win.h", |
| 88 "bluetooth_low_energy_win_fake.cc", |
| 89 "bluetooth_low_energy_win_fake.h", |
88 "bluetooth_remote_gatt_characteristic_android.cc", | 90 "bluetooth_remote_gatt_characteristic_android.cc", |
89 "bluetooth_remote_gatt_characteristic_android.h", | 91 "bluetooth_remote_gatt_characteristic_android.h", |
90 "bluetooth_remote_gatt_descriptor_android.cc", | 92 "bluetooth_remote_gatt_descriptor_android.cc", |
91 "bluetooth_remote_gatt_descriptor_android.h", | 93 "bluetooth_remote_gatt_descriptor_android.h", |
92 "bluetooth_remote_gatt_service_android.cc", | 94 "bluetooth_remote_gatt_service_android.cc", |
93 "bluetooth_remote_gatt_service_android.h", | 95 "bluetooth_remote_gatt_service_android.h", |
94 "bluetooth_rfcomm_channel_mac.h", | 96 "bluetooth_rfcomm_channel_mac.h", |
95 "bluetooth_rfcomm_channel_mac.mm", | 97 "bluetooth_rfcomm_channel_mac.mm", |
96 "bluetooth_service_record_win.cc", | 98 "bluetooth_service_record_win.cc", |
97 "bluetooth_service_record_win.h", | 99 "bluetooth_service_record_win.h", |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 jni_package = "bluetooth" | 323 jni_package = "bluetooth" |
322 } | 324 } |
323 | 325 |
324 android_library("java") { | 326 android_library("java") { |
325 java_files = java_sources_needing_jni | 327 java_files = java_sources_needing_jni |
326 deps = [ | 328 deps = [ |
327 "//base:base_java", | 329 "//base:base_java", |
328 ] | 330 ] |
329 } | 331 } |
330 } | 332 } |
OLD | NEW |