| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "bluetooth_discovery_manager_mac.h", | 66 "bluetooth_discovery_manager_mac.h", |
| 67 "bluetooth_discovery_manager_mac.mm", | 67 "bluetooth_discovery_manager_mac.mm", |
| 68 "bluetooth_discovery_session.cc", | 68 "bluetooth_discovery_session.cc", |
| 69 "bluetooth_discovery_session.h", | 69 "bluetooth_discovery_session.h", |
| 70 "bluetooth_gatt_characteristic.cc", | 70 "bluetooth_gatt_characteristic.cc", |
| 71 "bluetooth_gatt_characteristic.h", | 71 "bluetooth_gatt_characteristic.h", |
| 72 "bluetooth_gatt_connection.cc", | 72 "bluetooth_gatt_connection.cc", |
| 73 "bluetooth_gatt_connection.h", | 73 "bluetooth_gatt_connection.h", |
| 74 "bluetooth_gatt_connection_chromeos.cc", | 74 "bluetooth_gatt_connection_chromeos.cc", |
| 75 "bluetooth_gatt_connection_chromeos.h", | 75 "bluetooth_gatt_connection_chromeos.h", |
| 76 "bluetooth_gatt_connection_mac.h", |
| 77 "bluetooth_gatt_connection_mac.mm", |
| 76 "bluetooth_gatt_descriptor.cc", | 78 "bluetooth_gatt_descriptor.cc", |
| 77 "bluetooth_gatt_descriptor.h", | 79 "bluetooth_gatt_descriptor.h", |
| 78 "bluetooth_gatt_notify_session.cc", | 80 "bluetooth_gatt_notify_session.cc", |
| 79 "bluetooth_gatt_notify_session.h", | 81 "bluetooth_gatt_notify_session.h", |
| 80 "bluetooth_gatt_notify_session_chromeos.cc", | 82 "bluetooth_gatt_notify_session_chromeos.cc", |
| 81 "bluetooth_gatt_notify_session_chromeos.h", | 83 "bluetooth_gatt_notify_session_chromeos.h", |
| 82 "bluetooth_gatt_service.cc", | 84 "bluetooth_gatt_service.cc", |
| 83 "bluetooth_gatt_service.h", | 85 "bluetooth_gatt_service.h", |
| 84 "bluetooth_init_win.cc", | 86 "bluetooth_init_win.cc", |
| 85 "bluetooth_init_win.h", | 87 "bluetooth_init_win.h", |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 jni_package = "bluetooth" | 207 jni_package = "bluetooth" |
| 206 } | 208 } |
| 207 | 209 |
| 208 android_library("java") { | 210 android_library("java") { |
| 209 java_files = java_sources_needing_jni | 211 java_files = java_sources_needing_jni |
| 210 deps = [ | 212 deps = [ |
| 211 "//base:base_java", | 213 "//base:base_java", |
| 212 ] | 214 ] |
| 213 } | 215 } |
| 214 } | 216 } |
| OLD | NEW |