| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "bluetooth_adapter.cc", | 75 "bluetooth_adapter.cc", |
| 76 "bluetooth_adapter.h", | 76 "bluetooth_adapter.h", |
| 77 "bluetooth_adapter_android.cc", | 77 "bluetooth_adapter_android.cc", |
| 78 "bluetooth_adapter_android.h", | 78 "bluetooth_adapter_android.h", |
| 79 "bluetooth_adapter_factory.cc", | 79 "bluetooth_adapter_factory.cc", |
| 80 "bluetooth_adapter_factory.h", | 80 "bluetooth_adapter_factory.h", |
| 81 "bluetooth_adapter_factory_wrapper.cc", | 81 "bluetooth_adapter_factory_wrapper.cc", |
| 82 "bluetooth_adapter_factory_wrapper.h", | 82 "bluetooth_adapter_factory_wrapper.h", |
| 83 "bluetooth_adapter_mac.h", | 83 "bluetooth_adapter_mac.h", |
| 84 "bluetooth_adapter_mac.mm", | 84 "bluetooth_adapter_mac.mm", |
| 85 "bluetooth_adapter_mac_metrics.h", |
| 86 "bluetooth_adapter_mac_metrics.mm", |
| 85 "bluetooth_adapter_win.cc", | 87 "bluetooth_adapter_win.cc", |
| 86 "bluetooth_adapter_win.h", | 88 "bluetooth_adapter_win.h", |
| 87 "bluetooth_advertisement.cc", | 89 "bluetooth_advertisement.cc", |
| 88 "bluetooth_advertisement.h", | 90 "bluetooth_advertisement.h", |
| 89 "bluetooth_channel_mac.h", | 91 "bluetooth_channel_mac.h", |
| 90 "bluetooth_channel_mac.mm", | 92 "bluetooth_channel_mac.mm", |
| 91 "bluetooth_classic_device_mac.h", | 93 "bluetooth_classic_device_mac.h", |
| 92 "bluetooth_classic_device_mac.mm", | 94 "bluetooth_classic_device_mac.mm", |
| 93 "bluetooth_classic_win.cc", | 95 "bluetooth_classic_win.cc", |
| 94 "bluetooth_classic_win.h", | 96 "bluetooth_classic_win.h", |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 } | 440 } |
| 439 | 441 |
| 440 android_library("java") { | 442 android_library("java") { |
| 441 java_files = java_sources_needing_jni | 443 java_files = java_sources_needing_jni |
| 442 deps = [ | 444 deps = [ |
| 443 "//base:base_java", | 445 "//base:base_java", |
| 444 "//components/location/android:location_java", | 446 "//components/location/android:location_java", |
| 445 ] | 447 ] |
| 446 } | 448 } |
| 447 } | 449 } |
| OLD | NEW |