| 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 16 matching lines...) Expand all Loading... |
| 27 "vr_compositor.h", | 27 "vr_compositor.h", |
| 28 "vr_controller.cc", | 28 "vr_controller.cc", |
| 29 "vr_controller.h", | 29 "vr_controller.h", |
| 30 "vr_gesture.h", | 30 "vr_gesture.h", |
| 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_omnibox.cc", |
| 38 "vr_omnibox.h", |
| 37 "vr_shell.cc", | 39 "vr_shell.cc", |
| 38 "vr_shell.h", | 40 "vr_shell.h", |
| 39 "vr_shell_delegate.cc", | 41 "vr_shell_delegate.cc", |
| 40 "vr_shell_delegate.h", | 42 "vr_shell_delegate.h", |
| 41 "vr_shell_gl.cc", | 43 "vr_shell_gl.cc", |
| 42 "vr_shell_gl.h", | 44 "vr_shell_gl.h", |
| 43 "vr_shell_renderer.cc", | 45 "vr_shell_renderer.cc", |
| 44 "vr_shell_renderer.h", | 46 "vr_shell_renderer.h", |
| 45 "vr_usage_monitor.cc", | 47 "vr_usage_monitor.cc", |
| 46 "vr_usage_monitor.h", | 48 "vr_usage_monitor.h", |
| 47 "vr_web_contents_observer.cc", | 49 "vr_web_contents_observer.cc", |
| 48 "vr_web_contents_observer.h", | 50 "vr_web_contents_observer.h", |
| 49 ] | 51 ] |
| 50 | 52 |
| 51 if (enable_vr_shell) { | 53 if (enable_vr_shell) { |
| 52 defines += [ "ENABLE_VR_SHELL" ] | 54 defines += [ "ENABLE_VR_SHELL" ] |
| 53 } | 55 } |
| 54 if (enable_vr_shell_ui_dev) { | 56 if (enable_vr_shell_ui_dev) { |
| 55 assert(enable_vr_shell) | 57 assert(enable_vr_shell) |
| 56 defines += [ "ENABLE_VR_SHELL_UI_DEV" ] | 58 defines += [ "ENABLE_VR_SHELL_UI_DEV" ] |
| 57 } | 59 } |
| 58 | 60 |
| 59 deps = [ | 61 deps = [ |
| 60 ":vr_shell_jni_headers", | 62 ":vr_shell_jni_headers", |
| 61 "//base", | 63 "//base", |
| 62 "//cc", | 64 "//cc", |
| 65 "//components/omnibox/browser", |
| 63 "//components/rappor", | 66 "//components/rappor", |
| 64 "//components/security_state/core", | 67 "//components/security_state/core", |
| 65 "//content/public/browser", | 68 "//content/public/browser", |
| 66 "//content/public/common", | 69 "//content/public/common", |
| 67 "//device/vr", | 70 "//device/vr", |
| 68 "//ui/android", | 71 "//ui/android", |
| 69 "//ui/base", | 72 "//ui/base", |
| 70 "//ui/display", | 73 "//ui/display", |
| 71 "//ui/gl", | 74 "//ui/gl", |
| 72 "//ui/gl/init", | 75 "//ui/gl/init", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 99 ":vr_common", | 102 ":vr_common", |
| 100 "//base/test:run_all_unittests", | 103 "//base/test:run_all_unittests", |
| 101 "//base/test:test_support", | 104 "//base/test:test_support", |
| 102 "//chrome/browser", | 105 "//chrome/browser", |
| 103 "//testing/gtest", | 106 "//testing/gtest", |
| 104 "//third_party/WebKit/public:blink", | 107 "//third_party/WebKit/public:blink", |
| 105 "//ui/gfx/geometry", | 108 "//ui/gfx/geometry", |
| 106 ] | 109 ] |
| 107 } | 110 } |
| 108 } | 111 } |
| OLD | NEW |