| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 "//chromeos:test_support_without_gmock", | 175 "//chromeos:test_support_without_gmock", |
| 176 ] | 176 ] |
| 177 } | 177 } |
| 178 | 178 |
| 179 if ((is_chromeos || is_linux) && use_dbus) { | 179 if ((is_chromeos || is_linux) && use_dbus) { |
| 180 configs += [ "//build/config/linux/dbus" ] | 180 configs += [ "//build/config/linux/dbus" ] |
| 181 | 181 |
| 182 sources += [ | 182 sources += [ |
| 183 "bluetooth/bluez/bluetooth_adapter_profile_bluez_unittest.cc", | 183 "bluetooth/bluez/bluetooth_adapter_profile_bluez_unittest.cc", |
| 184 "bluetooth/bluez/bluetooth_advertisement_bluez_unittest.cc", | 184 "bluetooth/bluez/bluetooth_advertisement_bluez_unittest.cc", |
| 185 "bluetooth/bluez/bluetooth_audio_sink_bluez_unittest.cc", | |
| 186 "bluetooth/bluez/bluetooth_bluez_unittest.cc", | 185 "bluetooth/bluez/bluetooth_bluez_unittest.cc", |
| 187 "bluetooth/bluez/bluetooth_gatt_bluez_unittest.cc", | 186 "bluetooth/bluez/bluetooth_gatt_bluez_unittest.cc", |
| 188 "bluetooth/bluez/bluetooth_service_attribute_value_bluez_unittest.cc", | 187 "bluetooth/bluez/bluetooth_service_attribute_value_bluez_unittest.cc", |
| 189 "bluetooth/bluez/bluetooth_service_record_bluez_unittest.cc", | 188 "bluetooth/bluez/bluetooth_service_record_bluez_unittest.cc", |
| 190 "bluetooth/bluez/bluetooth_socket_bluez_unittest.cc", | 189 "bluetooth/bluez/bluetooth_socket_bluez_unittest.cc", |
| 191 "bluetooth/dbus/bluetooth_gatt_application_service_provider_unittest.cc", | 190 "bluetooth/dbus/bluetooth_gatt_application_service_provider_unittest.cc", |
| 192 "bluetooth/test/bluetooth_test_bluez.cc", | 191 "bluetooth/test/bluetooth_test_bluez.cc", |
| 193 "bluetooth/test/bluetooth_test_bluez.h", | 192 "bluetooth/test/bluetooth_test_bluez.h", |
| 194 ] | 193 ] |
| 195 | 194 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 ] | 273 ] |
| 275 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] | 274 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] |
| 276 } | 275 } |
| 277 | 276 |
| 278 java_cpp_enum("bluetooth_test_javagen") { | 277 java_cpp_enum("bluetooth_test_javagen") { |
| 279 sources = [ | 278 sources = [ |
| 280 "bluetooth/test/bluetooth_test.h", | 279 "bluetooth/test/bluetooth_test.h", |
| 281 ] | 280 ] |
| 282 } | 281 } |
| 283 } | 282 } |
| OLD | NEW |