| 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("//device/vr/features/features.gni") | 7 import("//device/vr/features/features.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 assert(enable_vr) | 10 assert(enable_vr) |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "ui_scene_manager.cc", | 79 "ui_scene_manager.cc", |
| 80 "ui_scene_manager.h", | 80 "ui_scene_manager.h", |
| 81 "ui_unsupported_mode.h", | 81 "ui_unsupported_mode.h", |
| 82 "vr_browser_interface.h", | 82 "vr_browser_interface.h", |
| 83 ] | 83 ] |
| 84 | 84 |
| 85 deps = [ | 85 deps = [ |
| 86 "//base", | 86 "//base", |
| 87 "//cc/paint", | 87 "//cc/paint", |
| 88 "//components/security_state/core", | 88 "//components/security_state/core", |
| 89 "//components/toolbar:vector_icons", |
| 89 "//components/url_formatter", | 90 "//components/url_formatter", |
| 90 "//components/vector_icons", | 91 "//components/vector_icons", |
| 91 "//content/public/browser", | 92 "//content/public/browser", |
| 92 "//content/public/common", | 93 "//content/public/common", |
| 93 "//device/vr", | 94 "//device/vr", |
| 94 "//skia", | 95 "//skia", |
| 95 "//ui/base", | 96 "//ui/base", |
| 96 "//ui/display", | 97 "//ui/display", |
| 97 "//ui/gl", | 98 "//ui/gl", |
| 98 "//ui/gl/init", | 99 "//ui/gl/init", |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 "//ui/gl", | 205 "//ui/gl", |
| 205 ] | 206 ] |
| 206 | 207 |
| 207 data = [ | 208 data = [ |
| 208 "test/data/sample_inline.gltf", | 209 "test/data/sample_inline.gltf", |
| 209 "test/data/sample_external.gltf", | 210 "test/data/sample_external.gltf", |
| 210 "test/data/sample.bin", | 211 "test/data/sample.bin", |
| 211 "test/data/sample.glb", | 212 "test/data/sample.glb", |
| 212 ] | 213 ] |
| 213 } | 214 } |
| OLD | NEW |