| 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 20 matching lines...) Expand all Loading... |
| 31 "vr_gl_util.cc", | 31 "vr_gl_util.cc", |
| 32 "vr_gl_util.h", | 32 "vr_gl_util.h", |
| 33 "vr_input_manager.cc", | 33 "vr_input_manager.cc", |
| 34 "vr_input_manager.h", | 34 "vr_input_manager.h", |
| 35 "vr_math.cc", | 35 "vr_math.cc", |
| 36 "vr_math.h", | 36 "vr_math.h", |
| 37 "vr_shell.cc", | 37 "vr_shell.cc", |
| 38 "vr_shell.h", | 38 "vr_shell.h", |
| 39 "vr_shell_delegate.cc", | 39 "vr_shell_delegate.cc", |
| 40 "vr_shell_delegate.h", | 40 "vr_shell_delegate.h", |
| 41 "vr_shell_gl.cc", |
| 42 "vr_shell_gl.h", |
| 41 "vr_shell_renderer.cc", | 43 "vr_shell_renderer.cc", |
| 42 "vr_shell_renderer.h", | 44 "vr_shell_renderer.h", |
| 43 "vr_usage_monitor.cc", | 45 "vr_usage_monitor.cc", |
| 44 "vr_usage_monitor.h", | 46 "vr_usage_monitor.h", |
| 45 "vr_web_contents_observer.cc", | 47 "vr_web_contents_observer.cc", |
| 46 "vr_web_contents_observer.h", | 48 "vr_web_contents_observer.h", |
| 47 ] | 49 ] |
| 48 | 50 |
| 49 if (enable_vr_shell) { | 51 if (enable_vr_shell) { |
| 50 defines += [ "ENABLE_VR_SHELL" ] | 52 defines += [ "ENABLE_VR_SHELL" ] |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 ":vr_common", | 97 ":vr_common", |
| 96 "//base/test:run_all_unittests", | 98 "//base/test:run_all_unittests", |
| 97 "//base/test:test_support", | 99 "//base/test:test_support", |
| 98 "//chrome/browser", | 100 "//chrome/browser", |
| 99 "//testing/gtest", | 101 "//testing/gtest", |
| 100 "//third_party/WebKit/public:blink", | 102 "//third_party/WebKit/public:blink", |
| 101 "//ui/gfx/geometry", | 103 "//ui/gfx/geometry", |
| 102 ] | 104 ] |
| 103 } | 105 } |
| 104 } | 106 } |
| OLD | NEW |