| 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 | 241 |
| 242 if (is_win) { | 242 if (is_win) { |
| 243 sources += [ | 243 sources += [ |
| 244 "bluetooth/bluetooth_classic_win_fake.cc", | 244 "bluetooth/bluetooth_classic_win_fake.cc", |
| 245 "bluetooth/bluetooth_classic_win_fake.h", | 245 "bluetooth/bluetooth_classic_win_fake.h", |
| 246 "bluetooth/bluetooth_low_energy_win_fake.cc", | 246 "bluetooth/bluetooth_low_energy_win_fake.cc", |
| 247 "bluetooth/bluetooth_low_energy_win_fake.h", | 247 "bluetooth/bluetooth_low_energy_win_fake.h", |
| 248 ] | 248 ] |
| 249 | 249 |
| 250 # Needed for "generic_sensor/platform_sensor_and_provider_unittest_win.cc" | 250 # Needed for "generic_sensor/platform_sensor_and_provider_unittest_win.cc" |
| 251 libs = [ "sensorsapi.lib" ] | 251 libs = [ |
| 252 "propsys.lib", |
| 253 "sensorsapi.lib", |
| 254 ] |
| 252 } | 255 } |
| 253 | 256 |
| 254 if (enable_webvr) { | 257 if (enable_webvr) { |
| 255 sources += [ | 258 sources += [ |
| 256 "vr/vr_device_manager_unittest.cc", | 259 "vr/vr_device_manager_unittest.cc", |
| 257 "vr/vr_display_impl_unittest.cc", | 260 "vr/vr_display_impl_unittest.cc", |
| 258 "vr/vr_service_impl_unittest.cc", | 261 "vr/vr_service_impl_unittest.cc", |
| 259 ] | 262 ] |
| 260 | 263 |
| 261 deps += [ | 264 deps += [ |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 ] | 308 ] |
| 306 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] | 309 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] |
| 307 } | 310 } |
| 308 | 311 |
| 309 java_cpp_enum("bluetooth_test_javagen") { | 312 java_cpp_enum("bluetooth_test_javagen") { |
| 310 sources = [ | 313 sources = [ |
| 311 "bluetooth/test/bluetooth_test.h", | 314 "bluetooth/test/bluetooth_test.h", |
| 312 ] | 315 ] |
| 313 } | 316 } |
| 314 } | 317 } |
| OLD | NEW |