| 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 16 matching lines...) Expand all Loading... |
| 27 "mailbox_to_surface_bridge.cc", | 27 "mailbox_to_surface_bridge.cc", |
| 28 "mailbox_to_surface_bridge.h", | 28 "mailbox_to_surface_bridge.h", |
| 29 "non_presenting_gvr_delegate.cc", | 29 "non_presenting_gvr_delegate.cc", |
| 30 "non_presenting_gvr_delegate.h", | 30 "non_presenting_gvr_delegate.h", |
| 31 "ui_element.cc", | 31 "ui_element.cc", |
| 32 "ui_element.h", | 32 "ui_element.h", |
| 33 "ui_interface.cc", | 33 "ui_interface.cc", |
| 34 "ui_interface.h", | 34 "ui_interface.h", |
| 35 "ui_scene.cc", | 35 "ui_scene.cc", |
| 36 "ui_scene.h", | 36 "ui_scene.h", |
| 37 "ui_scene_manager.cc", |
| 38 "ui_scene_manager.h", |
| 37 "vr_compositor.cc", | 39 "vr_compositor.cc", |
| 38 "vr_compositor.h", | 40 "vr_compositor.h", |
| 39 "vr_controller.cc", | 41 "vr_controller.cc", |
| 40 "vr_controller.h", | 42 "vr_controller.h", |
| 41 "vr_controller_model.cc", | 43 "vr_controller_model.cc", |
| 42 "vr_controller_model.h", | 44 "vr_controller_model.h", |
| 43 "vr_gesture.h", | 45 "vr_gesture.h", |
| 44 "vr_gl_thread.cc", | 46 "vr_gl_thread.cc", |
| 45 "vr_gl_thread.h", | 47 "vr_gl_thread.h", |
| 46 "vr_gl_util.cc", | 48 "vr_gl_util.cc", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 libs = | 131 libs = |
| 130 [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] | 132 [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] |
| 131 | 133 |
| 132 data = [ | 134 data = [ |
| 133 "test/data/sample_inline.gltf", | 135 "test/data/sample_inline.gltf", |
| 134 "test/data/sample_external.gltf", | 136 "test/data/sample_external.gltf", |
| 135 "test/data/sample.bin", | 137 "test/data/sample.bin", |
| 136 ] | 138 ] |
| 137 } | 139 } |
| 138 } | 140 } |
| OLD | NEW |