| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 } | 51 } |
| 52 if (enable_vr_shell_ui_dev) { | 52 if (enable_vr_shell_ui_dev) { |
| 53 assert(enable_vr_shell) | 53 assert(enable_vr_shell) |
| 54 defines += [ "ENABLE_VR_SHELL_UI_DEV" ] | 54 defines += [ "ENABLE_VR_SHELL_UI_DEV" ] |
| 55 } | 55 } |
| 56 | 56 |
| 57 deps = [ | 57 deps = [ |
| 58 ":vr_shell_jni_headers", | 58 ":vr_shell_jni_headers", |
| 59 "//base", | 59 "//base", |
| 60 "//cc", | 60 "//cc", |
| 61 "//components/rappor", |
| 61 "//content/public/browser", | 62 "//content/public/browser", |
| 62 "//content/public/common", | 63 "//content/public/common", |
| 63 "//device/vr", | 64 "//device/vr", |
| 64 "//ui/android", | 65 "//ui/android", |
| 65 "//ui/base", | 66 "//ui/base", |
| 66 "//ui/display", | 67 "//ui/display", |
| 67 "//ui/gl", | 68 "//ui/gl", |
| 68 "//ui/gl/init", | 69 "//ui/gl/init", |
| 69 ] | 70 ] |
| 70 | 71 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 91 | 92 |
| 92 deps = [ | 93 deps = [ |
| 93 ":vr_common", | 94 ":vr_common", |
| 94 "//base/test:run_all_unittests", | 95 "//base/test:run_all_unittests", |
| 95 "//base/test:test_support", | 96 "//base/test:test_support", |
| 96 "//testing/gtest", | 97 "//testing/gtest", |
| 97 "//ui/gfx/geometry", | 98 "//ui/gfx/geometry", |
| 98 ] | 99 ] |
| 99 } | 100 } |
| 100 } | 101 } |
| OLD | NEW |