| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "textures/system_indicator_texture.cc", | 47 "textures/system_indicator_texture.cc", |
| 48 "textures/system_indicator_texture.h", | 48 "textures/system_indicator_texture.h", |
| 49 "textures/ui_texture.cc", | 49 "textures/ui_texture.cc", |
| 50 "textures/ui_texture.h", | 50 "textures/ui_texture.h", |
| 51 "textures/url_bar_texture.cc", | 51 "textures/url_bar_texture.cc", |
| 52 "textures/url_bar_texture.h", | 52 "textures/url_bar_texture.h", |
| 53 "ui_elements/audio_capture_indicator.cc", | 53 "ui_elements/audio_capture_indicator.cc", |
| 54 "ui_elements/audio_capture_indicator.h", | 54 "ui_elements/audio_capture_indicator.h", |
| 55 "ui_elements/button.cc", | 55 "ui_elements/button.cc", |
| 56 "ui_elements/button.h", | 56 "ui_elements/button.h", |
| 57 "ui_elements/content_backplane.cc", |
| 58 "ui_elements/content_backplane.h", |
| 57 "ui_elements/exit_prompt.cc", | 59 "ui_elements/exit_prompt.cc", |
| 58 "ui_elements/exit_prompt.h", | 60 "ui_elements/exit_prompt.h", |
| 59 "ui_elements/exit_warning.cc", | 61 "ui_elements/exit_warning.cc", |
| 60 "ui_elements/exit_warning.h", | 62 "ui_elements/exit_warning.h", |
| 61 "ui_elements/loading_indicator.cc", | 63 "ui_elements/loading_indicator.cc", |
| 62 "ui_elements/loading_indicator.h", | 64 "ui_elements/loading_indicator.h", |
| 63 "ui_elements/permanent_security_warning.cc", | 65 "ui_elements/permanent_security_warning.cc", |
| 64 "ui_elements/permanent_security_warning.h", | 66 "ui_elements/permanent_security_warning.h", |
| 65 "ui_elements/screen_capture_indicator.cc", | 67 "ui_elements/screen_capture_indicator.cc", |
| 66 "ui_elements/screen_capture_indicator.h", | 68 "ui_elements/screen_capture_indicator.h", |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 "//ui/gl", | 212 "//ui/gl", |
| 211 ] | 213 ] |
| 212 | 214 |
| 213 data = [ | 215 data = [ |
| 214 "test/data/sample_inline.gltf", | 216 "test/data/sample_inline.gltf", |
| 215 "test/data/sample_external.gltf", | 217 "test/data/sample_external.gltf", |
| 216 "test/data/sample.bin", | 218 "test/data/sample.bin", |
| 217 "test/data/sample.glb", | 219 "test/data/sample.glb", |
| 218 ] | 220 ] |
| 219 } | 221 } |
| OLD | NEW |