| 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 20 matching lines...) Expand all Loading... |
| 31 "ui_elements.cc", | 31 "ui_elements.cc", |
| 32 "ui_elements.h", | 32 "ui_elements.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 "vr_compositor.cc", | 37 "vr_compositor.cc", |
| 38 "vr_compositor.h", | 38 "vr_compositor.h", |
| 39 "vr_controller.cc", | 39 "vr_controller.cc", |
| 40 "vr_controller.h", | 40 "vr_controller.h", |
| 41 "vr_controller_model.cc", |
| 42 "vr_controller_model.h", |
| 41 "vr_gesture.h", | 43 "vr_gesture.h", |
| 42 "vr_gl_thread.cc", | 44 "vr_gl_thread.cc", |
| 43 "vr_gl_thread.h", | 45 "vr_gl_thread.h", |
| 44 "vr_gl_util.cc", | 46 "vr_gl_util.cc", |
| 45 "vr_gl_util.h", | 47 "vr_gl_util.h", |
| 46 "vr_input_manager.cc", | 48 "vr_input_manager.cc", |
| 47 "vr_input_manager.h", | 49 "vr_input_manager.h", |
| 48 "vr_math.cc", | 50 "vr_math.cc", |
| 49 "vr_math.h", | 51 "vr_math.h", |
| 50 "vr_omnibox.cc", | 52 "vr_omnibox.cc", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "//ui/gfx/geometry", | 125 "//ui/gfx/geometry", |
| 124 ] | 126 ] |
| 125 | 127 |
| 126 data = [ | 128 data = [ |
| 127 "test/data/sample_inline.gltf", | 129 "test/data/sample_inline.gltf", |
| 128 "test/data/sample_external.gltf", | 130 "test/data/sample_external.gltf", |
| 129 "test/data/sample.bin", | 131 "test/data/sample.bin", |
| 130 ] | 132 ] |
| 131 } | 133 } |
| 132 } | 134 } |
| OLD | NEW |