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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 "bluetooth_gatt_characteristic.cc", | 62 "bluetooth_gatt_characteristic.cc", |
63 "bluetooth_gatt_characteristic.h", | 63 "bluetooth_gatt_characteristic.h", |
64 "bluetooth_gatt_connection.cc", | 64 "bluetooth_gatt_connection.cc", |
65 "bluetooth_gatt_connection.h", | 65 "bluetooth_gatt_connection.h", |
66 "bluetooth_gatt_descriptor.cc", | 66 "bluetooth_gatt_descriptor.cc", |
67 "bluetooth_gatt_descriptor.h", | 67 "bluetooth_gatt_descriptor.h", |
68 "bluetooth_gatt_notify_session.cc", | 68 "bluetooth_gatt_notify_session.cc", |
69 "bluetooth_gatt_notify_session.h", | 69 "bluetooth_gatt_notify_session.h", |
70 "bluetooth_gatt_notify_session_android.cc", | 70 "bluetooth_gatt_notify_session_android.cc", |
71 "bluetooth_gatt_notify_session_android.h", | 71 "bluetooth_gatt_notify_session_android.h", |
| 72 "bluetooth_gatt_notify_session_win.cc", |
| 73 "bluetooth_gatt_notify_session_win.h", |
72 "bluetooth_gatt_service.cc", | 74 "bluetooth_gatt_service.cc", |
73 "bluetooth_gatt_service.h", | 75 "bluetooth_gatt_service.h", |
74 "bluetooth_init_win.cc", | 76 "bluetooth_init_win.cc", |
75 "bluetooth_init_win.h", | 77 "bluetooth_init_win.h", |
76 "bluetooth_l2cap_channel_mac.h", | 78 "bluetooth_l2cap_channel_mac.h", |
77 "bluetooth_l2cap_channel_mac.mm", | 79 "bluetooth_l2cap_channel_mac.mm", |
78 "bluetooth_low_energy_central_manager_delegate.h", | 80 "bluetooth_low_energy_central_manager_delegate.h", |
79 "bluetooth_low_energy_central_manager_delegate.mm", | 81 "bluetooth_low_energy_central_manager_delegate.mm", |
80 "bluetooth_low_energy_defs_win.cc", | 82 "bluetooth_low_energy_defs_win.cc", |
81 "bluetooth_low_energy_defs_win.h", | 83 "bluetooth_low_energy_defs_win.h", |
82 "bluetooth_low_energy_device_mac.h", | 84 "bluetooth_low_energy_device_mac.h", |
83 "bluetooth_low_energy_device_mac.mm", | 85 "bluetooth_low_energy_device_mac.mm", |
84 "bluetooth_low_energy_discovery_manager_mac.h", | 86 "bluetooth_low_energy_discovery_manager_mac.h", |
85 "bluetooth_low_energy_discovery_manager_mac.mm", | 87 "bluetooth_low_energy_discovery_manager_mac.mm", |
86 "bluetooth_low_energy_win.cc", | 88 "bluetooth_low_energy_win.cc", |
87 "bluetooth_low_energy_win.h", | 89 "bluetooth_low_energy_win.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", |
| 92 "bluetooth_remote_gatt_characteristic_win.cc", |
| 93 "bluetooth_remote_gatt_characteristic_win.h", |
90 "bluetooth_remote_gatt_descriptor_android.cc", | 94 "bluetooth_remote_gatt_descriptor_android.cc", |
91 "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", |
92 "bluetooth_remote_gatt_service_android.cc", | 98 "bluetooth_remote_gatt_service_android.cc", |
93 "bluetooth_remote_gatt_service_android.h", | 99 "bluetooth_remote_gatt_service_android.h", |
| 100 "bluetooth_remote_gatt_service_win.cc", |
| 101 "bluetooth_remote_gatt_service_win.h", |
94 "bluetooth_rfcomm_channel_mac.h", | 102 "bluetooth_rfcomm_channel_mac.h", |
95 "bluetooth_rfcomm_channel_mac.mm", | 103 "bluetooth_rfcomm_channel_mac.mm", |
96 "bluetooth_service_record_win.cc", | 104 "bluetooth_service_record_win.cc", |
97 "bluetooth_service_record_win.h", | 105 "bluetooth_service_record_win.h", |
98 "bluetooth_socket.cc", | 106 "bluetooth_socket.cc", |
99 "bluetooth_socket.h", | 107 "bluetooth_socket.h", |
100 "bluetooth_socket_mac.h", | 108 "bluetooth_socket_mac.h", |
101 "bluetooth_socket_mac.mm", | 109 "bluetooth_socket_mac.mm", |
102 "bluetooth_socket_net.cc", | 110 "bluetooth_socket_net.cc", |
103 "bluetooth_socket_net.h", | 111 "bluetooth_socket_net.h", |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 jni_package = "bluetooth" | 329 jni_package = "bluetooth" |
322 } | 330 } |
323 | 331 |
324 android_library("java") { | 332 android_library("java") { |
325 java_files = java_sources_needing_jni | 333 java_files = java_sources_needing_jni |
326 deps = [ | 334 deps = [ |
327 "//base:base_java", | 335 "//base:base_java", |
328 ] | 336 ] |
329 } | 337 } |
330 } | 338 } |
OLD | NEW |