| 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 14 matching lines...) Expand all Loading... |
| 25 "fps_meter.cc", | 25 "fps_meter.cc", |
| 26 "fps_meter.h", | 26 "fps_meter.h", |
| 27 "gltf_asset.cc", | 27 "gltf_asset.cc", |
| 28 "gltf_asset.h", | 28 "gltf_asset.h", |
| 29 "gltf_parser.cc", | 29 "gltf_parser.cc", |
| 30 "gltf_parser.h", | 30 "gltf_parser.h", |
| 31 "textures/button_texture.cc", | 31 "textures/button_texture.cc", |
| 32 "textures/button_texture.h", | 32 "textures/button_texture.h", |
| 33 "textures/close_button_texture.cc", | 33 "textures/close_button_texture.cc", |
| 34 "textures/close_button_texture.h", | 34 "textures/close_button_texture.h", |
| 35 "textures/exit_prompt_texture.cc", |
| 36 "textures/exit_prompt_texture.h", |
| 35 "textures/exit_warning_texture.cc", | 37 "textures/exit_warning_texture.cc", |
| 36 "textures/exit_warning_texture.h", | 38 "textures/exit_warning_texture.h", |
| 37 "textures/insecure_content_permanent_texture.cc", | 39 "textures/insecure_content_permanent_texture.cc", |
| 38 "textures/insecure_content_permanent_texture.h", | 40 "textures/insecure_content_permanent_texture.h", |
| 39 "textures/insecure_content_transient_texture.cc", | 41 "textures/insecure_content_transient_texture.cc", |
| 40 "textures/insecure_content_transient_texture.h", | 42 "textures/insecure_content_transient_texture.h", |
| 41 "textures/loading_indicator_texture.cc", | 43 "textures/loading_indicator_texture.cc", |
| 42 "textures/loading_indicator_texture.h", | 44 "textures/loading_indicator_texture.h", |
| 43 "textures/render_text_wrapper.cc", | 45 "textures/render_text_wrapper.cc", |
| 44 "textures/render_text_wrapper.h", | 46 "textures/render_text_wrapper.h", |
| 45 "textures/system_indicator_texture.cc", | 47 "textures/system_indicator_texture.cc", |
| 46 "textures/system_indicator_texture.h", | 48 "textures/system_indicator_texture.h", |
| 47 "textures/ui_texture.cc", | 49 "textures/ui_texture.cc", |
| 48 "textures/ui_texture.h", | 50 "textures/ui_texture.h", |
| 49 "textures/url_bar_texture.cc", | 51 "textures/url_bar_texture.cc", |
| 50 "textures/url_bar_texture.h", | 52 "textures/url_bar_texture.h", |
| 51 "ui_elements/audio_capture_indicator.cc", | 53 "ui_elements/audio_capture_indicator.cc", |
| 52 "ui_elements/audio_capture_indicator.h", | 54 "ui_elements/audio_capture_indicator.h", |
| 53 "ui_elements/button.cc", | 55 "ui_elements/button.cc", |
| 54 "ui_elements/button.h", | 56 "ui_elements/button.h", |
| 57 "ui_elements/exit_prompt.cc", |
| 58 "ui_elements/exit_prompt.h", |
| 55 "ui_elements/exit_warning.cc", | 59 "ui_elements/exit_warning.cc", |
| 56 "ui_elements/exit_warning.h", | 60 "ui_elements/exit_warning.h", |
| 57 "ui_elements/loading_indicator.cc", | 61 "ui_elements/loading_indicator.cc", |
| 58 "ui_elements/loading_indicator.h", | 62 "ui_elements/loading_indicator.h", |
| 59 "ui_elements/permanent_security_warning.cc", | 63 "ui_elements/permanent_security_warning.cc", |
| 60 "ui_elements/permanent_security_warning.h", | 64 "ui_elements/permanent_security_warning.h", |
| 61 "ui_elements/screen_capture_indicator.cc", | 65 "ui_elements/screen_capture_indicator.cc", |
| 62 "ui_elements/screen_capture_indicator.h", | 66 "ui_elements/screen_capture_indicator.h", |
| 63 "ui_elements/screen_dimmer.cc", | 67 "ui_elements/screen_dimmer.cc", |
| 64 "ui_elements/screen_dimmer.h", | 68 "ui_elements/screen_dimmer.h", |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 "//ui/gl", | 208 "//ui/gl", |
| 205 ] | 209 ] |
| 206 | 210 |
| 207 data = [ | 211 data = [ |
| 208 "test/data/sample_inline.gltf", | 212 "test/data/sample_inline.gltf", |
| 209 "test/data/sample_external.gltf", | 213 "test/data/sample_external.gltf", |
| 210 "test/data/sample.bin", | 214 "test/data/sample.bin", |
| 211 "test/data/sample.glb", | 215 "test/data/sample.glb", |
| 212 ] | 216 ] |
| 213 } | 217 } |
| OLD | NEW |