| 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("//chrome/common/features.gni") | 5 import("//chrome/common/features.gni") |
| 6 import("//device/vr/features/features.gni") | 6 import("//device/vr/features/features.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "textures/ui_texture.h", | 53 "textures/ui_texture.h", |
| 54 "textures/url_bar_texture.cc", | 54 "textures/url_bar_texture.cc", |
| 55 "textures/url_bar_texture.h", | 55 "textures/url_bar_texture.h", |
| 56 "ui_browser_interface.h", | 56 "ui_browser_interface.h", |
| 57 "ui_elements/audio_capture_indicator.cc", | 57 "ui_elements/audio_capture_indicator.cc", |
| 58 "ui_elements/audio_capture_indicator.h", | 58 "ui_elements/audio_capture_indicator.h", |
| 59 "ui_elements/button.cc", | 59 "ui_elements/button.cc", |
| 60 "ui_elements/button.h", | 60 "ui_elements/button.h", |
| 61 "ui_elements/exit_prompt.cc", | 61 "ui_elements/exit_prompt.cc", |
| 62 "ui_elements/exit_prompt.h", | 62 "ui_elements/exit_prompt.h", |
| 63 "ui_elements/exit_prompt_backplane.cc", |
| 64 "ui_elements/exit_prompt_backplane.h", |
| 63 "ui_elements/exit_warning.cc", | 65 "ui_elements/exit_warning.cc", |
| 64 "ui_elements/exit_warning.h", | 66 "ui_elements/exit_warning.h", |
| 65 "ui_elements/loading_indicator.cc", | 67 "ui_elements/loading_indicator.cc", |
| 66 "ui_elements/loading_indicator.h", | 68 "ui_elements/loading_indicator.h", |
| 67 "ui_elements/permanent_security_warning.cc", | 69 "ui_elements/permanent_security_warning.cc", |
| 68 "ui_elements/permanent_security_warning.h", | 70 "ui_elements/permanent_security_warning.h", |
| 69 "ui_elements/screen_capture_indicator.cc", | 71 "ui_elements/screen_capture_indicator.cc", |
| 70 "ui_elements/screen_capture_indicator.h", | 72 "ui_elements/screen_capture_indicator.h", |
| 71 "ui_elements/screen_dimmer.cc", | 73 "ui_elements/screen_dimmer.cc", |
| 72 "ui_elements/screen_dimmer.h", | 74 "ui_elements/screen_dimmer.h", |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 "//ui/gl", | 224 "//ui/gl", |
| 223 ] | 225 ] |
| 224 | 226 |
| 225 data = [ | 227 data = [ |
| 226 "test/data/sample_inline.gltf", | 228 "test/data/sample_inline.gltf", |
| 227 "test/data/sample_external.gltf", | 229 "test/data/sample_external.gltf", |
| 228 "test/data/sample.bin", | 230 "test/data/sample.bin", |
| 229 "test/data/sample.glb", | 231 "test/data/sample.glb", |
| 230 ] | 232 ] |
| 231 } | 233 } |
| OLD | NEW |