| 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("vr/features.gni") | 5 import("vr/features.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/rules.gni") # For generate_jni(). | 10 import("//build/config/android/rules.gni") # For generate_jni(). |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "//device/sensors", | 99 "//device/sensors", |
| 100 "//device/sensors/public/cpp:full", | 100 "//device/sensors/public/cpp:full", |
| 101 "//device/sensors/public/interfaces", | 101 "//device/sensors/public/interfaces", |
| 102 "//device/wake_lock", | 102 "//device/wake_lock", |
| 103 "//mojo/common", | 103 "//mojo/common", |
| 104 "//mojo/edk/system", | 104 "//mojo/edk/system", |
| 105 "//mojo/public/cpp/bindings", | 105 "//mojo/public/cpp/bindings", |
| 106 "//net", | 106 "//net", |
| 107 "//testing/gmock", | 107 "//testing/gmock", |
| 108 "//testing/gtest", | 108 "//testing/gtest", |
| 109 "//third_party/WebKit/public:blink", | |
| 110 "//third_party/WebKit/public:blink_headers", | 109 "//third_party/WebKit/public:blink_headers", |
| 111 "//tools/usb_gadget", | 110 "//tools/usb_gadget", |
| 112 "//url", | 111 "//url", |
| 113 ] | 112 ] |
| 114 | 113 |
| 115 if (is_linux && !is_chromeos && use_dbus) { | 114 if (is_linux && !is_chromeos && use_dbus) { |
| 116 sources += [ "battery/battery_status_manager_linux_unittest.cc" ] | 115 sources += [ "battery/battery_status_manager_linux_unittest.cc" ] |
| 117 deps += [ "//dbus:test_support" ] | 116 deps += [ "//dbus:test_support" ] |
| 118 } | 117 } |
| 119 | 118 |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 ] | 313 ] |
| 315 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] | 314 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] |
| 316 } | 315 } |
| 317 | 316 |
| 318 java_cpp_enum("bluetooth_test_javagen") { | 317 java_cpp_enum("bluetooth_test_javagen") { |
| 319 sources = [ | 318 sources = [ |
| 320 "bluetooth/test/bluetooth_test.h", | 319 "bluetooth/test/bluetooth_test.h", |
| 321 ] | 320 ] |
| 322 } | 321 } |
| 323 } | 322 } |
| OLD | NEW |