OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
6 import("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 assert(enable_vr_shell || enable_webvr) | 9 assert(enable_vr_shell || enable_webvr) |
10 | 10 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 } | 61 } |
62 | 62 |
63 deps = [ | 63 deps = [ |
64 ":vr_shell_jni_headers", | 64 ":vr_shell_jni_headers", |
65 "//base", | 65 "//base", |
66 "//cc", | 66 "//cc", |
67 "//components/rappor", | 67 "//components/rappor", |
68 "//components/security_state/core", | 68 "//components/security_state/core", |
69 "//content/public/browser", | 69 "//content/public/browser", |
70 "//content/public/common", | 70 "//content/public/common", |
| 71 "//device/gamepad", |
71 "//device/vr", | 72 "//device/vr", |
72 "//ui/android", | 73 "//ui/android", |
73 "//ui/base", | 74 "//ui/base", |
74 "//ui/display", | 75 "//ui/display", |
75 "//ui/gl", | 76 "//ui/gl", |
76 "//ui/gl/init", | 77 "//ui/gl/init", |
77 ] | 78 ] |
78 | 79 |
79 libs = [ | 80 libs = [ |
80 "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a", | 81 "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a", |
(...skipping 22 matching lines...) Expand all Loading... |
103 ":vr_common", | 104 ":vr_common", |
104 "//base/test:run_all_unittests", | 105 "//base/test:run_all_unittests", |
105 "//base/test:test_support", | 106 "//base/test:test_support", |
106 "//chrome/browser", | 107 "//chrome/browser", |
107 "//testing/gtest", | 108 "//testing/gtest", |
108 "//third_party/WebKit/public:blink", | 109 "//third_party/WebKit/public:blink", |
109 "//ui/gfx/geometry", | 110 "//ui/gfx/geometry", |
110 ] | 111 ] |
111 } | 112 } |
112 } | 113 } |
OLD | NEW |