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