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 "textures/insecure_content_permanent_texture.cc", |
| 34 "textures/insecure_content_permanent_texture.h", |
| 35 "textures/insecure_content_transient_texture.cc", |
| 36 "textures/insecure_content_transient_texture.h", |
| 37 "textures/ui_texture.cc", |
| 38 "textures/ui_texture.h", |
33 "ui_element.cc", | 39 "ui_element.cc", |
34 "ui_element.h", | 40 "ui_element.h", |
35 "ui_interface.cc", | 41 "ui_interface.cc", |
36 "ui_interface.h", | 42 "ui_interface.h", |
37 "ui_scene.cc", | 43 "ui_scene.cc", |
38 "ui_scene.h", | 44 "ui_scene.h", |
39 "ui_scene_manager.cc", | 45 "ui_scene_manager.cc", |
40 "ui_scene_manager.h", | 46 "ui_scene_manager.h", |
41 "vr_compositor.cc", | 47 "vr_compositor.cc", |
42 "vr_compositor.h", | 48 "vr_compositor.h", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 "//content/public/browser", | 88 "//content/public/browser", |
83 "//content/public/common", | 89 "//content/public/common", |
84 "//device/gamepad", | 90 "//device/gamepad", |
85 "//device/vr", | 91 "//device/vr", |
86 "//services/ui/public/cpp/gpu", | 92 "//services/ui/public/cpp/gpu", |
87 "//ui/android", | 93 "//ui/android", |
88 "//ui/base", | 94 "//ui/base", |
89 "//ui/display", | 95 "//ui/display", |
90 "//ui/gl", | 96 "//ui/gl", |
91 "//ui/gl/init", | 97 "//ui/gl/init", |
| 98 "//ui/vector_icons", |
92 ] | 99 ] |
93 | 100 |
94 libs = [ | 101 libs = [ |
95 "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a", | 102 "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a", |
96 "android", | 103 "android", |
97 ] | 104 ] |
98 | 105 |
99 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] | 106 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] |
100 } | 107 } |
101 | 108 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 libs = | 141 libs = |
135 [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] | 142 [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] |
136 | 143 |
137 data = [ | 144 data = [ |
138 "test/data/sample_inline.gltf", | 145 "test/data/sample_inline.gltf", |
139 "test/data/sample_external.gltf", | 146 "test/data/sample_external.gltf", |
140 "test/data/sample.bin", | 147 "test/data/sample.bin", |
141 ] | 148 ] |
142 } | 149 } |
143 } | 150 } |
OLD | NEW |