| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 "//base/test:test_support", | 71 "//base/test:test_support", |
| 72 "//device/battery", | 72 "//device/battery", |
| 73 "//device/battery:mojo_bindings", | 73 "//device/battery:mojo_bindings", |
| 74 "//device/bluetooth", | 74 "//device/bluetooth", |
| 75 "//device/bluetooth:mocks", | 75 "//device/bluetooth:mocks", |
| 76 "//device/gamepad", | 76 "//device/gamepad", |
| 77 "//device/gamepad:test_helpers", | 77 "//device/gamepad:test_helpers", |
| 78 "//device/geolocation:unittests", | 78 "//device/geolocation:unittests", |
| 79 "//device/nfc", | 79 "//device/nfc", |
| 80 "//device/power_save_blocker", | 80 "//device/power_save_blocker", |
| 81 "//device/video:mojo_bindings", |
| 82 "//device/video:video_capture", |
| 81 "//device/vr", | 83 "//device/vr", |
| 82 "//device/vr:fakes", | 84 "//device/vr:fakes", |
| 83 "//device/vr:mojo_bindings", | 85 "//device/vr:mojo_bindings", |
| 84 "//mojo/common", | 86 "//mojo/common", |
| 85 "//mojo/edk/system", | 87 "//mojo/edk/system", |
| 86 "//mojo/public/cpp/bindings", | 88 "//mojo/public/cpp/bindings", |
| 87 "//net", | 89 "//net", |
| 88 "//testing/gmock", | 90 "//testing/gmock", |
| 89 "//testing/gtest", | 91 "//testing/gtest", |
| 90 "//tools/usb_gadget", | 92 "//tools/usb_gadget", |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 java_files = [ "gamepad/android/junit/src/org/chromium/device/gamepad/Gamepa
dMappingsTest.java" ] | 250 java_files = [ "gamepad/android/junit/src/org/chromium/device/gamepad/Gamepa
dMappingsTest.java" ] |
| 249 deps = [ | 251 deps = [ |
| 250 "//base:base_java", | 252 "//base:base_java", |
| 251 "//base:base_java_test_support", | 253 "//base:base_java_test_support", |
| 252 "//device/gamepad:java", | 254 "//device/gamepad:java", |
| 253 "//third_party/android_tools:android_support_annotations_java", | 255 "//third_party/android_tools:android_support_annotations_java", |
| 254 ] | 256 ] |
| 255 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] | 257 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] |
| 256 } | 258 } |
| 257 } | 259 } |
| OLD | NEW |