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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 "ui_scene.cc", | 51 "ui_scene.cc", |
52 "ui_scene.h", | 52 "ui_scene.h", |
53 "ui_scene_manager.cc", | 53 "ui_scene_manager.cc", |
54 "ui_scene_manager.h", | 54 "ui_scene_manager.h", |
55 "vr_compositor.cc", | 55 "vr_compositor.cc", |
56 "vr_compositor.h", | 56 "vr_compositor.h", |
57 "vr_controller.cc", | 57 "vr_controller.cc", |
58 "vr_controller.h", | 58 "vr_controller.h", |
59 "vr_controller_model.cc", | 59 "vr_controller_model.cc", |
60 "vr_controller_model.h", | 60 "vr_controller_model.h", |
61 "vr_gesture.h", | |
62 "vr_gl_thread.cc", | 61 "vr_gl_thread.cc", |
63 "vr_gl_thread.h", | 62 "vr_gl_thread.h", |
64 "vr_gl_util.cc", | 63 "vr_gl_util.cc", |
65 "vr_gl_util.h", | 64 "vr_gl_util.h", |
66 "vr_input_manager.cc", | 65 "vr_input_manager.cc", |
67 "vr_input_manager.h", | 66 "vr_input_manager.h", |
68 "vr_shell.cc", | 67 "vr_shell.cc", |
69 "vr_shell.h", | 68 "vr_shell.h", |
70 "vr_shell_delegate.cc", | 69 "vr_shell_delegate.cc", |
71 "vr_shell_delegate.h", | 70 "vr_shell_delegate.h", |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 libs = | 142 libs = |
144 [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] | 143 [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] |
145 | 144 |
146 data = [ | 145 data = [ |
147 "test/data/sample_inline.gltf", | 146 "test/data/sample_inline.gltf", |
148 "test/data/sample_external.gltf", | 147 "test/data/sample_external.gltf", |
149 "test/data/sample.bin", | 148 "test/data/sample.bin", |
150 ] | 149 ] |
151 } | 150 } |
152 } | 151 } |
OLD | NEW |