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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 "bluetooth_device_mac.mm", | 76 "bluetooth_device_mac.mm", |
77 "bluetooth_device_win.cc", | 77 "bluetooth_device_win.cc", |
78 "bluetooth_device_win.h", | 78 "bluetooth_device_win.h", |
79 "bluetooth_discovery_filter.cc", | 79 "bluetooth_discovery_filter.cc", |
80 "bluetooth_discovery_filter.h", | 80 "bluetooth_discovery_filter.h", |
81 "bluetooth_discovery_manager_mac.h", | 81 "bluetooth_discovery_manager_mac.h", |
82 "bluetooth_discovery_manager_mac.mm", | 82 "bluetooth_discovery_manager_mac.mm", |
83 "bluetooth_discovery_session.cc", | 83 "bluetooth_discovery_session.cc", |
84 "bluetooth_discovery_session.h", | 84 "bluetooth_discovery_session.h", |
85 "bluetooth_discovery_session_outcome.h", | 85 "bluetooth_discovery_session_outcome.h", |
| 86 "bluetooth_export.h", |
86 "bluetooth_gatt_characteristic.cc", | 87 "bluetooth_gatt_characteristic.cc", |
87 "bluetooth_gatt_characteristic.h", | 88 "bluetooth_gatt_characteristic.h", |
88 "bluetooth_gatt_connection.cc", | 89 "bluetooth_gatt_connection.cc", |
89 "bluetooth_gatt_connection.h", | 90 "bluetooth_gatt_connection.h", |
90 "bluetooth_gatt_descriptor.cc", | 91 "bluetooth_gatt_descriptor.cc", |
91 "bluetooth_gatt_descriptor.h", | 92 "bluetooth_gatt_descriptor.h", |
92 "bluetooth_gatt_notify_session.cc", | 93 "bluetooth_gatt_notify_session.cc", |
93 "bluetooth_gatt_notify_session.h", | 94 "bluetooth_gatt_notify_session.h", |
94 "bluetooth_gatt_service.cc", | 95 "bluetooth_gatt_service.cc", |
95 "bluetooth_gatt_service.h", | 96 "bluetooth_gatt_service.h", |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 } | 412 } |
412 | 413 |
413 android_library("java") { | 414 android_library("java") { |
414 java_files = java_sources_needing_jni | 415 java_files = java_sources_needing_jni |
415 deps = [ | 416 deps = [ |
416 "//base:base_java", | 417 "//base:base_java", |
417 "//components/location/android:location_java", | 418 "//components/location/android:location_java", |
418 ] | 419 ] |
419 } | 420 } |
420 } | 421 } |
OLD | NEW |