| 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_webvr) | 9 assert(enable_webvr) |
| 10 | 10 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 "vr_gl_util.cc", | 37 "vr_gl_util.cc", |
| 38 "vr_gl_util.h", | 38 "vr_gl_util.h", |
| 39 "vr_input_manager.cc", | 39 "vr_input_manager.cc", |
| 40 "vr_input_manager.h", | 40 "vr_input_manager.h", |
| 41 "vr_math.cc", | 41 "vr_math.cc", |
| 42 "vr_math.h", | 42 "vr_math.h", |
| 43 "vr_omnibox.cc", | 43 "vr_omnibox.cc", |
| 44 "vr_omnibox.h", | 44 "vr_omnibox.h", |
| 45 "vr_shell.cc", | 45 "vr_shell.cc", |
| 46 "vr_shell.h", | 46 "vr_shell.h", |
| 47 "vr_shell_command_buffer_gl.cc", |
| 48 "vr_shell_command_buffer_gl.h", |
| 47 "vr_shell_delegate.cc", | 49 "vr_shell_delegate.cc", |
| 48 "vr_shell_delegate.h", | 50 "vr_shell_delegate.h", |
| 49 "vr_shell_gl.cc", | 51 "vr_shell_gl.cc", |
| 50 "vr_shell_gl.h", | 52 "vr_shell_gl.h", |
| 53 "vr_shell_gpu_renderer.cc", |
| 54 "vr_shell_gpu_renderer.h", |
| 51 "vr_shell_renderer.cc", | 55 "vr_shell_renderer.cc", |
| 52 "vr_shell_renderer.h", | 56 "vr_shell_renderer.h", |
| 53 "vr_usage_monitor.cc", | 57 "vr_usage_monitor.cc", |
| 54 "vr_usage_monitor.h", | 58 "vr_usage_monitor.h", |
| 55 "vr_web_contents_observer.cc", | 59 "vr_web_contents_observer.cc", |
| 56 "vr_web_contents_observer.h", | 60 "vr_web_contents_observer.h", |
| 57 ] | 61 ] |
| 58 | 62 |
| 59 if (enable_vr_shell_ui_dev) { | 63 if (enable_vr_shell_ui_dev) { |
| 60 defines += [ "ENABLE_VR_SHELL_UI_DEV" ] | 64 defines += [ "ENABLE_VR_SHELL_UI_DEV" ] |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 ":vr_common", | 110 ":vr_common", |
| 107 "//base/test:run_all_unittests", | 111 "//base/test:run_all_unittests", |
| 108 "//base/test:test_support", | 112 "//base/test:test_support", |
| 109 "//chrome/browser", | 113 "//chrome/browser", |
| 110 "//testing/gtest", | 114 "//testing/gtest", |
| 111 "//third_party/WebKit/public:blink", | 115 "//third_party/WebKit/public:blink", |
| 112 "//ui/gfx/geometry", | 116 "//ui/gfx/geometry", |
| 113 ] | 117 ] |
| 114 } | 118 } |
| 115 } | 119 } |
| OLD | NEW |