| 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.gni") | 7 import("//device/vr/features.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 assert(enable_vr) | 10 assert(enable_vr) |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "fps_meter.cc", | 23 "fps_meter.cc", |
| 24 "fps_meter.h", | 24 "fps_meter.h", |
| 25 "gltf_asset.cc", | 25 "gltf_asset.cc", |
| 26 "gltf_asset.h", | 26 "gltf_asset.h", |
| 27 "gltf_parser.cc", | 27 "gltf_parser.cc", |
| 28 "gltf_parser.h", | 28 "gltf_parser.h", |
| 29 "mailbox_to_surface_bridge.cc", | 29 "mailbox_to_surface_bridge.cc", |
| 30 "mailbox_to_surface_bridge.h", | 30 "mailbox_to_surface_bridge.h", |
| 31 "non_presenting_gvr_delegate.cc", | 31 "non_presenting_gvr_delegate.cc", |
| 32 "non_presenting_gvr_delegate.h", | 32 "non_presenting_gvr_delegate.h", |
| 33 "textured_element.cc", |
| 34 "textured_element.h", |
| 33 "textures/insecure_content_permanent_texture.cc", | 35 "textures/insecure_content_permanent_texture.cc", |
| 34 "textures/insecure_content_permanent_texture.h", | 36 "textures/insecure_content_permanent_texture.h", |
| 35 "textures/insecure_content_transient_texture.cc", | 37 "textures/insecure_content_transient_texture.cc", |
| 36 "textures/insecure_content_transient_texture.h", | 38 "textures/insecure_content_transient_texture.h", |
| 37 "textures/ui_texture.cc", | 39 "textures/ui_texture.cc", |
| 38 "textures/ui_texture.h", | 40 "textures/ui_texture.h", |
| 39 "ui_element.cc", | 41 "ui_element.cc", |
| 40 "ui_element.h", | 42 "ui_element.h", |
| 43 "ui_elements/permanent_security_warning.cc", |
| 44 "ui_elements/permanent_security_warning.h", |
| 45 "ui_elements/transient_security_warning.cc", |
| 46 "ui_elements/transient_security_warning.h", |
| 41 "ui_interface.cc", | 47 "ui_interface.cc", |
| 42 "ui_interface.h", | 48 "ui_interface.h", |
| 43 "ui_scene.cc", | 49 "ui_scene.cc", |
| 44 "ui_scene.h", | 50 "ui_scene.h", |
| 45 "ui_scene_manager.cc", | 51 "ui_scene_manager.cc", |
| 46 "ui_scene_manager.h", | 52 "ui_scene_manager.h", |
| 47 "vr_compositor.cc", | 53 "vr_compositor.cc", |
| 48 "vr_compositor.h", | 54 "vr_compositor.h", |
| 49 "vr_controller.cc", | 55 "vr_controller.cc", |
| 50 "vr_controller.h", | 56 "vr_controller.h", |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 libs = | 141 libs = |
| 136 [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] | 142 [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] |
| 137 | 143 |
| 138 data = [ | 144 data = [ |
| 139 "test/data/sample_inline.gltf", | 145 "test/data/sample_inline.gltf", |
| 140 "test/data/sample_external.gltf", | 146 "test/data/sample_external.gltf", |
| 141 "test/data/sample.bin", | 147 "test/data/sample.bin", |
| 142 ] | 148 ] |
| 143 } | 149 } |
| 144 } | 150 } |
| OLD | NEW |