| 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 20 matching lines...) Expand all Loading... |
| 31 "mailbox_to_surface_bridge.cc", | 31 "mailbox_to_surface_bridge.cc", |
| 32 "mailbox_to_surface_bridge.h", | 32 "mailbox_to_surface_bridge.h", |
| 33 "non_presenting_gvr_delegate.cc", | 33 "non_presenting_gvr_delegate.cc", |
| 34 "non_presenting_gvr_delegate.h", | 34 "non_presenting_gvr_delegate.h", |
| 35 "textures/insecure_content_permanent_texture.cc", | 35 "textures/insecure_content_permanent_texture.cc", |
| 36 "textures/insecure_content_permanent_texture.h", | 36 "textures/insecure_content_permanent_texture.h", |
| 37 "textures/insecure_content_transient_texture.cc", | 37 "textures/insecure_content_transient_texture.cc", |
| 38 "textures/insecure_content_transient_texture.h", | 38 "textures/insecure_content_transient_texture.h", |
| 39 "textures/ui_texture.cc", | 39 "textures/ui_texture.cc", |
| 40 "textures/ui_texture.h", | 40 "textures/ui_texture.h", |
| 41 "textures/url_bar_texture.cc", |
| 42 "textures/url_bar_texture.h", |
| 41 "ui_elements/permanent_security_warning.cc", | 43 "ui_elements/permanent_security_warning.cc", |
| 42 "ui_elements/permanent_security_warning.h", | 44 "ui_elements/permanent_security_warning.h", |
| 43 "ui_elements/textured_element.cc", | 45 "ui_elements/textured_element.cc", |
| 44 "ui_elements/textured_element.h", | 46 "ui_elements/textured_element.h", |
| 45 "ui_elements/transient_security_warning.cc", | 47 "ui_elements/transient_security_warning.cc", |
| 46 "ui_elements/transient_security_warning.h", | 48 "ui_elements/transient_security_warning.h", |
| 47 "ui_elements/ui_element.cc", | 49 "ui_elements/ui_element.cc", |
| 48 "ui_elements/ui_element.h", | 50 "ui_elements/ui_element.h", |
| 51 "ui_elements/url_bar.cc", |
| 52 "ui_elements/url_bar.h", |
| 49 "ui_interface.cc", | 53 "ui_interface.cc", |
| 50 "ui_interface.h", | 54 "ui_interface.h", |
| 51 "ui_scene.cc", | 55 "ui_scene.cc", |
| 52 "ui_scene.h", | 56 "ui_scene.h", |
| 53 "ui_scene_manager.cc", | 57 "ui_scene_manager.cc", |
| 54 "ui_scene_manager.h", | 58 "ui_scene_manager.h", |
| 55 "vr_browser_interface.h", | 59 "vr_browser_interface.h", |
| 56 "vr_compositor.cc", | 60 "vr_compositor.cc", |
| 57 "vr_compositor.h", | 61 "vr_compositor.h", |
| 58 "vr_controller.cc", | 62 "vr_controller.cc", |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 # See https://crbug.com/704305 for details. | 148 # See https://crbug.com/704305 for details. |
| 145 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] | 149 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] |
| 146 | 150 |
| 147 data = [ | 151 data = [ |
| 148 "test/data/sample_inline.gltf", | 152 "test/data/sample_inline.gltf", |
| 149 "test/data/sample_external.gltf", | 153 "test/data/sample_external.gltf", |
| 150 "test/data/sample.bin", | 154 "test/data/sample.bin", |
| 151 "test/data/sample.glb", | 155 "test/data/sample.glb", |
| 152 ] | 156 ] |
| 153 } | 157 } |
| OLD | NEW |