| 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 24 matching lines...) Expand all Loading... |
| 35 "non_presenting_gvr_delegate.cc", | 35 "non_presenting_gvr_delegate.cc", |
| 36 "non_presenting_gvr_delegate.h", | 36 "non_presenting_gvr_delegate.h", |
| 37 "textures/close_button_texture.cc", | 37 "textures/close_button_texture.cc", |
| 38 "textures/close_button_texture.h", | 38 "textures/close_button_texture.h", |
| 39 "textures/insecure_content_permanent_texture.cc", | 39 "textures/insecure_content_permanent_texture.cc", |
| 40 "textures/insecure_content_permanent_texture.h", | 40 "textures/insecure_content_permanent_texture.h", |
| 41 "textures/insecure_content_transient_texture.cc", | 41 "textures/insecure_content_transient_texture.cc", |
| 42 "textures/insecure_content_transient_texture.h", | 42 "textures/insecure_content_transient_texture.h", |
| 43 "textures/loading_indicator_texture.cc", | 43 "textures/loading_indicator_texture.cc", |
| 44 "textures/loading_indicator_texture.h", | 44 "textures/loading_indicator_texture.h", |
| 45 "textures/system_indicator_texture.cc", |
| 46 "textures/system_indicator_texture.h", |
| 45 "textures/ui_texture.cc", | 47 "textures/ui_texture.cc", |
| 46 "textures/ui_texture.h", | 48 "textures/ui_texture.h", |
| 47 "textures/url_bar_texture.cc", | 49 "textures/url_bar_texture.cc", |
| 48 "textures/url_bar_texture.h", | 50 "textures/url_bar_texture.h", |
| 51 "ui_elements/audio_capture_indicator.cc", |
| 52 "ui_elements/audio_capture_indicator.h", |
| 49 "ui_elements/close_button.cc", | 53 "ui_elements/close_button.cc", |
| 50 "ui_elements/close_button.h", | 54 "ui_elements/close_button.h", |
| 51 "ui_elements/loading_indicator.cc", | 55 "ui_elements/loading_indicator.cc", |
| 52 "ui_elements/loading_indicator.h", | 56 "ui_elements/loading_indicator.h", |
| 53 "ui_elements/permanent_security_warning.cc", | 57 "ui_elements/permanent_security_warning.cc", |
| 54 "ui_elements/permanent_security_warning.h", | 58 "ui_elements/permanent_security_warning.h", |
| 55 "ui_elements/textured_element.cc", | 59 "ui_elements/textured_element.cc", |
| 56 "ui_elements/textured_element.h", | 60 "ui_elements/textured_element.h", |
| 57 "ui_elements/transient_security_warning.cc", | 61 "ui_elements/transient_security_warning.cc", |
| 58 "ui_elements/transient_security_warning.h", | 62 "ui_elements/transient_security_warning.h", |
| 59 "ui_elements/ui_element.cc", | 63 "ui_elements/ui_element.cc", |
| 60 "ui_elements/ui_element.h", | 64 "ui_elements/ui_element.h", |
| 61 "ui_elements/url_bar.cc", | 65 "ui_elements/url_bar.cc", |
| 62 "ui_elements/url_bar.h", | 66 "ui_elements/url_bar.h", |
| 67 "ui_elements/video_capture_indicator.cc", |
| 68 "ui_elements/video_capture_indicator.h", |
| 63 "ui_interface.h", | 69 "ui_interface.h", |
| 64 "ui_scene.cc", | 70 "ui_scene.cc", |
| 65 "ui_scene.h", | 71 "ui_scene.h", |
| 66 "ui_scene_manager.cc", | 72 "ui_scene_manager.cc", |
| 67 "ui_scene_manager.h", | 73 "ui_scene_manager.h", |
| 68 "vr_browser_interface.h", | 74 "vr_browser_interface.h", |
| 69 "vr_compositor.cc", | 75 "vr_compositor.cc", |
| 70 "vr_compositor.h", | 76 "vr_compositor.h", |
| 71 "vr_controller.cc", | 77 "vr_controller.cc", |
| 72 "vr_controller.h", | 78 "vr_controller.h", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 # See https://crbug.com/704305 for details. | 167 # See https://crbug.com/704305 for details. |
| 162 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] | 168 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] |
| 163 | 169 |
| 164 data = [ | 170 data = [ |
| 165 "test/data/sample_inline.gltf", | 171 "test/data/sample_inline.gltf", |
| 166 "test/data/sample_external.gltf", | 172 "test/data/sample_external.gltf", |
| 167 "test/data/sample.bin", | 173 "test/data/sample.bin", |
| 168 "test/data/sample.glb", | 174 "test/data/sample.glb", |
| 169 ] | 175 ] |
| 170 } | 176 } |
| OLD | NEW |