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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 "bluetooth_low_energy_discovery_manager_mac.h", | 94 "bluetooth_low_energy_discovery_manager_mac.h", |
95 "bluetooth_low_energy_discovery_manager_mac.mm", | 95 "bluetooth_low_energy_discovery_manager_mac.mm", |
96 "bluetooth_low_energy_peripheral_delegate.h", | 96 "bluetooth_low_energy_peripheral_delegate.h", |
97 "bluetooth_low_energy_peripheral_delegate.mm", | 97 "bluetooth_low_energy_peripheral_delegate.mm", |
98 "bluetooth_low_energy_win.cc", | 98 "bluetooth_low_energy_win.cc", |
99 "bluetooth_low_energy_win.h", | 99 "bluetooth_low_energy_win.h", |
100 "bluetooth_remote_gatt_characteristic.cc", | 100 "bluetooth_remote_gatt_characteristic.cc", |
101 "bluetooth_remote_gatt_characteristic.h", | 101 "bluetooth_remote_gatt_characteristic.h", |
102 "bluetooth_remote_gatt_characteristic_android.cc", | 102 "bluetooth_remote_gatt_characteristic_android.cc", |
103 "bluetooth_remote_gatt_characteristic_android.h", | 103 "bluetooth_remote_gatt_characteristic_android.h", |
104 "bluetooth_remote_gatt_characteristic_mac.h", | |
105 "bluetooth_remote_gatt_characteristic_mac.mm", | |
106 "bluetooth_remote_gatt_characteristic_win.cc", | 104 "bluetooth_remote_gatt_characteristic_win.cc", |
107 "bluetooth_remote_gatt_characteristic_win.h", | 105 "bluetooth_remote_gatt_characteristic_win.h", |
108 "bluetooth_remote_gatt_descriptor.cc", | 106 "bluetooth_remote_gatt_descriptor.cc", |
109 "bluetooth_remote_gatt_descriptor.h", | 107 "bluetooth_remote_gatt_descriptor.h", |
110 "bluetooth_remote_gatt_descriptor_android.cc", | 108 "bluetooth_remote_gatt_descriptor_android.cc", |
111 "bluetooth_remote_gatt_descriptor_android.h", | 109 "bluetooth_remote_gatt_descriptor_android.h", |
112 "bluetooth_remote_gatt_descriptor_win.cc", | 110 "bluetooth_remote_gatt_descriptor_win.cc", |
113 "bluetooth_remote_gatt_descriptor_win.h", | 111 "bluetooth_remote_gatt_descriptor_win.h", |
114 "bluetooth_remote_gatt_service.cc", | 112 "bluetooth_remote_gatt_service.cc", |
115 "bluetooth_remote_gatt_service.h", | 113 "bluetooth_remote_gatt_service.h", |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 jni_package = "bluetooth" | 386 jni_package = "bluetooth" |
389 } | 387 } |
390 | 388 |
391 android_library("java") { | 389 android_library("java") { |
392 java_files = java_sources_needing_jni | 390 java_files = java_sources_needing_jni |
393 deps = [ | 391 deps = [ |
394 "//base:base_java", | 392 "//base:base_java", |
395 ] | 393 ] |
396 } | 394 } |
397 } | 395 } |
OLD | NEW |