| 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 22 matching lines...) Expand all Loading... |
| 33 "bluetooth_adapter_factory.cc", | 33 "bluetooth_adapter_factory.cc", |
| 34 "bluetooth_adapter_factory.h", | 34 "bluetooth_adapter_factory.h", |
| 35 "bluetooth_adapter_factory_wrapper.cc", | 35 "bluetooth_adapter_factory_wrapper.cc", |
| 36 "bluetooth_adapter_factory_wrapper.h", | 36 "bluetooth_adapter_factory_wrapper.h", |
| 37 "bluetooth_adapter_mac.h", | 37 "bluetooth_adapter_mac.h", |
| 38 "bluetooth_adapter_mac.mm", | 38 "bluetooth_adapter_mac.mm", |
| 39 "bluetooth_adapter_win.cc", | 39 "bluetooth_adapter_win.cc", |
| 40 "bluetooth_adapter_win.h", | 40 "bluetooth_adapter_win.h", |
| 41 "bluetooth_advertisement.cc", | 41 "bluetooth_advertisement.cc", |
| 42 "bluetooth_advertisement.h", | 42 "bluetooth_advertisement.h", |
| 43 "bluetooth_audio_sink.cc", | |
| 44 "bluetooth_audio_sink.h", | |
| 45 "bluetooth_channel_mac.h", | 43 "bluetooth_channel_mac.h", |
| 46 "bluetooth_channel_mac.mm", | 44 "bluetooth_channel_mac.mm", |
| 47 "bluetooth_classic_device_mac.h", | 45 "bluetooth_classic_device_mac.h", |
| 48 "bluetooth_classic_device_mac.mm", | 46 "bluetooth_classic_device_mac.mm", |
| 49 "bluetooth_classic_win.cc", | 47 "bluetooth_classic_win.cc", |
| 50 "bluetooth_classic_win.h", | 48 "bluetooth_classic_win.h", |
| 51 "bluetooth_common.h", | 49 "bluetooth_common.h", |
| 52 "bluetooth_device.cc", | 50 "bluetooth_device.cc", |
| 53 "bluetooth_device.h", | 51 "bluetooth_device.h", |
| 54 "bluetooth_device_android.cc", | 52 "bluetooth_device_android.cc", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 | 179 |
| 182 if (is_chromeos || is_linux) { | 180 if (is_chromeos || is_linux) { |
| 183 if (use_dbus) { | 181 if (use_dbus) { |
| 184 sources += [ | 182 sources += [ |
| 185 "bluez/bluetooth_adapter_bluez.cc", | 183 "bluez/bluetooth_adapter_bluez.cc", |
| 186 "bluez/bluetooth_adapter_bluez.h", | 184 "bluez/bluetooth_adapter_bluez.h", |
| 187 "bluez/bluetooth_adapter_profile_bluez.cc", | 185 "bluez/bluetooth_adapter_profile_bluez.cc", |
| 188 "bluez/bluetooth_adapter_profile_bluez.h", | 186 "bluez/bluetooth_adapter_profile_bluez.h", |
| 189 "bluez/bluetooth_advertisement_bluez.cc", | 187 "bluez/bluetooth_advertisement_bluez.cc", |
| 190 "bluez/bluetooth_advertisement_bluez.h", | 188 "bluez/bluetooth_advertisement_bluez.h", |
| 191 "bluez/bluetooth_audio_sink_bluez.cc", | |
| 192 "bluez/bluetooth_audio_sink_bluez.h", | |
| 193 "bluez/bluetooth_device_bluez.cc", | 189 "bluez/bluetooth_device_bluez.cc", |
| 194 "bluez/bluetooth_device_bluez.h", | 190 "bluez/bluetooth_device_bluez.h", |
| 195 "bluez/bluetooth_gatt_characteristic_bluez.cc", | 191 "bluez/bluetooth_gatt_characteristic_bluez.cc", |
| 196 "bluez/bluetooth_gatt_characteristic_bluez.h", | 192 "bluez/bluetooth_gatt_characteristic_bluez.h", |
| 197 "bluez/bluetooth_gatt_connection_bluez.cc", | 193 "bluez/bluetooth_gatt_connection_bluez.cc", |
| 198 "bluez/bluetooth_gatt_connection_bluez.h", | 194 "bluez/bluetooth_gatt_connection_bluez.h", |
| 199 "bluez/bluetooth_gatt_descriptor_bluez.cc", | 195 "bluez/bluetooth_gatt_descriptor_bluez.cc", |
| 200 "bluez/bluetooth_gatt_descriptor_bluez.h", | 196 "bluez/bluetooth_gatt_descriptor_bluez.h", |
| 201 "bluez/bluetooth_gatt_service_bluez.cc", | 197 "bluez/bluetooth_gatt_service_bluez.cc", |
| 202 "bluez/bluetooth_gatt_service_bluez.h", | 198 "bluez/bluetooth_gatt_service_bluez.h", |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 } | 388 } |
| 393 | 389 |
| 394 android_library("java") { | 390 android_library("java") { |
| 395 java_files = java_sources_needing_jni | 391 java_files = java_sources_needing_jni |
| 396 deps = [ | 392 deps = [ |
| 397 "//base:base_java", | 393 "//base:base_java", |
| 398 "//components/location/android:location_java", | 394 "//components/location/android:location_java", |
| 399 ] | 395 ] |
| 400 } | 396 } |
| 401 } | 397 } |
| OLD | NEW |