| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "bluetooth_adapter.cc", | 67 "bluetooth_adapter.cc", |
| 68 "bluetooth_adapter.h", | 68 "bluetooth_adapter.h", |
| 69 "bluetooth_adapter_android.cc", | 69 "bluetooth_adapter_android.cc", |
| 70 "bluetooth_adapter_android.h", | 70 "bluetooth_adapter_android.h", |
| 71 "bluetooth_adapter_factory.cc", | 71 "bluetooth_adapter_factory.cc", |
| 72 "bluetooth_adapter_factory.h", | 72 "bluetooth_adapter_factory.h", |
| 73 "bluetooth_adapter_factory_wrapper.cc", | 73 "bluetooth_adapter_factory_wrapper.cc", |
| 74 "bluetooth_adapter_factory_wrapper.h", | 74 "bluetooth_adapter_factory_wrapper.h", |
| 75 "bluetooth_adapter_mac.h", | 75 "bluetooth_adapter_mac.h", |
| 76 "bluetooth_adapter_mac.mm", | 76 "bluetooth_adapter_mac.mm", |
| 77 "bluetooth_adapter_mac_metrics.h", |
| 78 "bluetooth_adapter_mac_metrics.mm", |
| 77 "bluetooth_adapter_win.cc", | 79 "bluetooth_adapter_win.cc", |
| 78 "bluetooth_adapter_win.h", | 80 "bluetooth_adapter_win.h", |
| 79 "bluetooth_advertisement.cc", | 81 "bluetooth_advertisement.cc", |
| 80 "bluetooth_advertisement.h", | 82 "bluetooth_advertisement.h", |
| 81 "bluetooth_channel_mac.h", | 83 "bluetooth_channel_mac.h", |
| 82 "bluetooth_channel_mac.mm", | 84 "bluetooth_channel_mac.mm", |
| 83 "bluetooth_classic_device_mac.h", | 85 "bluetooth_classic_device_mac.h", |
| 84 "bluetooth_classic_device_mac.mm", | 86 "bluetooth_classic_device_mac.mm", |
| 85 "bluetooth_classic_win.cc", | 87 "bluetooth_classic_win.cc", |
| 86 "bluetooth_classic_win.h", | 88 "bluetooth_classic_win.h", |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 } | 432 } |
| 431 | 433 |
| 432 android_library("java") { | 434 android_library("java") { |
| 433 java_files = java_sources_needing_jni | 435 java_files = java_sources_needing_jni |
| 434 deps = [ | 436 deps = [ |
| 435 "//base:base_java", | 437 "//base:base_java", |
| 436 "//components/location/android:location_java", | 438 "//components/location/android:location_java", |
| 437 ] | 439 ] |
| 438 } | 440 } |
| 439 } | 441 } |
| OLD | NEW |