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) |
11 | 11 |
12 if (current_cpu == "arm" || current_cpu == "arm64") { | 12 if (current_cpu == "arm" || current_cpu == "arm64") { |
13 static_library("vr_common") { | 13 static_library("vr_common") { |
14 defines = [] | 14 defines = [] |
15 | 15 |
16 sources = [ | 16 sources = [ |
17 "android_ui_gesture_target.cc", | 17 "android_ui_gesture_target.cc", |
18 "android_ui_gesture_target.h", | 18 "android_ui_gesture_target.h", |
19 "animation.cc", | 19 "animation.cc", |
20 "animation.h", | 20 "animation.h", |
21 "easing.cc", | 21 "easing.cc", |
22 "easing.h", | 22 "easing.h", |
| 23 "elbow_model.cc", |
| 24 "elbow_model.h", |
23 "gltf_asset.cc", | 25 "gltf_asset.cc", |
24 "gltf_asset.h", | 26 "gltf_asset.h", |
25 "gltf_parser.cc", | 27 "gltf_parser.cc", |
26 "gltf_parser.h", | 28 "gltf_parser.h", |
27 "mailbox_to_surface_bridge.cc", | 29 "mailbox_to_surface_bridge.cc", |
28 "mailbox_to_surface_bridge.h", | 30 "mailbox_to_surface_bridge.h", |
29 "non_presenting_gvr_delegate.cc", | 31 "non_presenting_gvr_delegate.cc", |
30 "non_presenting_gvr_delegate.h", | 32 "non_presenting_gvr_delegate.h", |
31 "ui_elements.cc", | 33 "ui_elements.cc", |
32 "ui_elements.h", | 34 "ui_elements.h", |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 "//ui/gfx/geometry", | 127 "//ui/gfx/geometry", |
126 ] | 128 ] |
127 | 129 |
128 data = [ | 130 data = [ |
129 "test/data/sample_inline.gltf", | 131 "test/data/sample_inline.gltf", |
130 "test/data/sample_external.gltf", | 132 "test/data/sample_external.gltf", |
131 "test/data/sample.bin", | 133 "test/data/sample.bin", |
132 ] | 134 ] |
133 } | 135 } |
134 } | 136 } |
OLD | NEW |