| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") # For generate_jni(). | 9 import("//build/config/android/rules.gni") # For generate_jni(). |
| 10 } | 10 } |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 | 172 |
| 173 if ((is_chromeos || is_linux) && use_dbus) { | 173 if ((is_chromeos || is_linux) && use_dbus) { |
| 174 configs += [ "//build/config/linux/dbus" ] | 174 configs += [ "//build/config/linux/dbus" ] |
| 175 | 175 |
| 176 sources += [ | 176 sources += [ |
| 177 "bluetooth/bluez/bluetooth_adapter_profile_bluez_unittest.cc", | 177 "bluetooth/bluez/bluetooth_adapter_profile_bluez_unittest.cc", |
| 178 "bluetooth/bluez/bluetooth_advertisement_bluez_unittest.cc", | 178 "bluetooth/bluez/bluetooth_advertisement_bluez_unittest.cc", |
| 179 "bluetooth/bluez/bluetooth_audio_sink_bluez_unittest.cc", | 179 "bluetooth/bluez/bluetooth_audio_sink_bluez_unittest.cc", |
| 180 "bluetooth/bluez/bluetooth_bluez_unittest.cc", | 180 "bluetooth/bluez/bluetooth_bluez_unittest.cc", |
| 181 "bluetooth/bluez/bluetooth_gatt_bluez_unittest.cc", | 181 "bluetooth/bluez/bluetooth_gatt_bluez_unittest.cc", |
| 182 "bluetooth/bluez/bluetooth_service_attribute_value_bluez_unittest.cc", |
| 183 "bluetooth/bluez/bluetooth_service_record_bluez_unittest.cc", |
| 182 "bluetooth/bluez/bluetooth_socket_bluez_unittest.cc", | 184 "bluetooth/bluez/bluetooth_socket_bluez_unittest.cc", |
| 183 "bluetooth/dbus/bluetooth_gatt_application_service_provider_unittest.cc", | 185 "bluetooth/dbus/bluetooth_gatt_application_service_provider_unittest.cc", |
| 184 "bluetooth/test/bluetooth_test_bluez.cc", | 186 "bluetooth/test/bluetooth_test_bluez.cc", |
| 185 "bluetooth/test/bluetooth_test_bluez.h", | 187 "bluetooth/test/bluetooth_test_bluez.h", |
| 186 ] | 188 ] |
| 187 | 189 |
| 188 deps += [ "//dbus" ] | 190 deps += [ "//dbus" ] |
| 189 } | 191 } |
| 190 | 192 |
| 191 if (is_mac) { | 193 if (is_mac) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 } | 229 } |
| 228 | 230 |
| 229 android_library("bluetooth_test_java") { | 231 android_library("bluetooth_test_java") { |
| 230 java_files = bluetooth_java_sources_needing_jni | 232 java_files = bluetooth_java_sources_needing_jni |
| 231 deps = [ | 233 deps = [ |
| 232 "//base:base_java", | 234 "//base:base_java", |
| 233 "//device/bluetooth:java", | 235 "//device/bluetooth:java", |
| 234 ] | 236 ] |
| 235 } | 237 } |
| 236 } | 238 } |
| OLD | NEW |