| 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 30 matching lines...) Expand all Loading... |
| 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_delegate.cc", | 47 "vr_shell_delegate.cc", |
| 48 "vr_shell_delegate.h", | 48 "vr_shell_delegate.h", |
| 49 "vr_shell_gl.cc", | 49 "vr_shell_gl.cc", |
| 50 "vr_shell_gl.h", | 50 "vr_shell_gl.h", |
| 51 "vr_shell_gpu_renderer.cc", |
| 52 "vr_shell_gpu_renderer.h", |
| 51 "vr_shell_renderer.cc", | 53 "vr_shell_renderer.cc", |
| 52 "vr_shell_renderer.h", | 54 "vr_shell_renderer.h", |
| 53 "vr_usage_monitor.cc", | 55 "vr_usage_monitor.cc", |
| 54 "vr_usage_monitor.h", | 56 "vr_usage_monitor.h", |
| 55 "vr_web_contents_observer.cc", | 57 "vr_web_contents_observer.cc", |
| 56 "vr_web_contents_observer.h", | 58 "vr_web_contents_observer.h", |
| 57 ] | 59 ] |
| 58 | 60 |
| 59 if (enable_vr_shell_ui_dev) { | 61 if (enable_vr_shell_ui_dev) { |
| 60 defines += [ "ENABLE_VR_SHELL_UI_DEV" ] | 62 defines += [ "ENABLE_VR_SHELL_UI_DEV" ] |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 ":vr_common", | 108 ":vr_common", |
| 107 "//base/test:run_all_unittests", | 109 "//base/test:run_all_unittests", |
| 108 "//base/test:test_support", | 110 "//base/test:test_support", |
| 109 "//chrome/browser", | 111 "//chrome/browser", |
| 110 "//testing/gtest", | 112 "//testing/gtest", |
| 111 "//third_party/WebKit/public:blink", | 113 "//third_party/WebKit/public:blink", |
| 112 "//ui/gfx/geometry", | 114 "//ui/gfx/geometry", |
| 113 ] | 115 ] |
| 114 } | 116 } |
| 115 } | 117 } |
| OLD | NEW |