| 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 25 matching lines...) Expand all Loading... |
| 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", | 42 "vr_web_contents_observer.cc", |
| 43 "vr_web_contents_observer.h", | 43 "vr_web_contents_observer.h", |
| 44 ] | 44 ] |
| 45 | 45 |
| 46 if (enable_vr_shell) { |
| 47 defines += [ "ENABLE_VR_SHELL" ] |
| 48 } |
| 46 if (enable_vr_shell_ui_dev) { | 49 if (enable_vr_shell_ui_dev) { |
| 47 assert(enable_vr_shell) | 50 assert(enable_vr_shell) |
| 48 defines += [ "ENABLE_VR_SHELL_UI_DEV" ] | 51 defines += [ "ENABLE_VR_SHELL_UI_DEV" ] |
| 49 } | 52 } |
| 50 | 53 |
| 51 deps = [ | 54 deps = [ |
| 52 ":vr_shell_jni_headers", | 55 ":vr_shell_jni_headers", |
| 53 "//base", | 56 "//base", |
| 54 "//cc", | 57 "//cc", |
| 55 "//content/public/browser", | 58 "//content/public/browser", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 82 | 85 |
| 83 deps = [ | 86 deps = [ |
| 84 ":vr_common", | 87 ":vr_common", |
| 85 "//base/test:run_all_unittests", | 88 "//base/test:run_all_unittests", |
| 86 "//base/test:test_support", | 89 "//base/test:test_support", |
| 87 "//testing/gtest", | 90 "//testing/gtest", |
| 88 "//ui/gfx/geometry", | 91 "//ui/gfx/geometry", |
| 89 ] | 92 ] |
| 90 } | 93 } |
| 91 } | 94 } |
| OLD | NEW |