| 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 21 matching lines...) Expand all Loading... |
| 32 "vr_input_manager.cc", | 32 "vr_input_manager.cc", |
| 33 "vr_input_manager.h", | 33 "vr_input_manager.h", |
| 34 "vr_math.cc", | 34 "vr_math.cc", |
| 35 "vr_math.h", | 35 "vr_math.h", |
| 36 "vr_shell.cc", | 36 "vr_shell.cc", |
| 37 "vr_shell.h", | 37 "vr_shell.h", |
| 38 "vr_shell_delegate.cc", | 38 "vr_shell_delegate.cc", |
| 39 "vr_shell_delegate.h", | 39 "vr_shell_delegate.h", |
| 40 "vr_shell_renderer.cc", | 40 "vr_shell_renderer.cc", |
| 41 "vr_shell_renderer.h", | 41 "vr_shell_renderer.h", |
| 42 "vr_web_contents_observer.cc", |
| 43 "vr_web_contents_observer.h", |
| 42 ] | 44 ] |
| 43 | 45 |
| 44 if (enable_vr_shell_ui_dev) { | 46 if (enable_vr_shell_ui_dev) { |
| 45 assert(enable_vr_shell) | 47 assert(enable_vr_shell) |
| 46 defines += [ "ENABLE_VR_SHELL_UI_DEV" ] | 48 defines += [ "ENABLE_VR_SHELL_UI_DEV" ] |
| 47 } | 49 } |
| 48 | 50 |
| 49 deps = [ | 51 deps = [ |
| 50 ":vr_shell_jni_headers", | 52 ":vr_shell_jni_headers", |
| 51 "//base", | 53 "//base", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 80 | 82 |
| 81 deps = [ | 83 deps = [ |
| 82 ":vr_common", | 84 ":vr_common", |
| 83 "//base/test:run_all_unittests", | 85 "//base/test:run_all_unittests", |
| 84 "//base/test:test_support", | 86 "//base/test:test_support", |
| 85 "//testing/gtest", | 87 "//testing/gtest", |
| 86 "//ui/gfx/geometry", | 88 "//ui/gfx/geometry", |
| 87 ] | 89 ] |
| 88 } | 90 } |
| 89 } | 91 } |
| OLD | NEW |