| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "//components/rappor", |
| 62 "//components/security_state/core", |
| 62 "//content/public/browser", | 63 "//content/public/browser", |
| 63 "//content/public/common", | 64 "//content/public/common", |
| 64 "//device/vr", | 65 "//device/vr", |
| 65 "//ui/android", | 66 "//ui/android", |
| 66 "//ui/base", | 67 "//ui/base", |
| 67 "//ui/display", | 68 "//ui/display", |
| 68 "//ui/gl", | 69 "//ui/gl", |
| 69 "//ui/gl/init", | 70 "//ui/gl/init", |
| 70 ] | 71 ] |
| 71 | 72 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 87 test("vr_shell_unittests") { | 88 test("vr_shell_unittests") { |
| 88 sources = [ | 89 sources = [ |
| 89 "ui_elements_unittest.cc", | 90 "ui_elements_unittest.cc", |
| 90 "ui_scene_unittest.cc", | 91 "ui_scene_unittest.cc", |
| 91 ] | 92 ] |
| 92 | 93 |
| 93 deps = [ | 94 deps = [ |
| 94 ":vr_common", | 95 ":vr_common", |
| 95 "//base/test:run_all_unittests", | 96 "//base/test:run_all_unittests", |
| 96 "//base/test:test_support", | 97 "//base/test:test_support", |
| 98 "//chrome/browser", |
| 97 "//testing/gtest", | 99 "//testing/gtest", |
| 100 "//third_party/WebKit/public:blink", |
| 98 "//ui/gfx/geometry", | 101 "//ui/gfx/geometry", |
| 99 ] | 102 ] |
| 100 } | 103 } |
| 101 } | 104 } |
| OLD | NEW |