| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "vr_input_manager.cc", | 66 "vr_input_manager.cc", |
| 67 "vr_input_manager.h", | 67 "vr_input_manager.h", |
| 68 "vr_shell.cc", | 68 "vr_shell.cc", |
| 69 "vr_shell.h", | 69 "vr_shell.h", |
| 70 "vr_shell_delegate.cc", | 70 "vr_shell_delegate.cc", |
| 71 "vr_shell_delegate.h", | 71 "vr_shell_delegate.h", |
| 72 "vr_shell_gl.cc", | 72 "vr_shell_gl.cc", |
| 73 "vr_shell_gl.h", | 73 "vr_shell_gl.h", |
| 74 "vr_shell_renderer.cc", | 74 "vr_shell_renderer.cc", |
| 75 "vr_shell_renderer.h", | 75 "vr_shell_renderer.h", |
| 76 "vr_surface_provider.h", |
| 76 "vr_usage_monitor.cc", | 77 "vr_usage_monitor.cc", |
| 77 "vr_usage_monitor.h", | 78 "vr_usage_monitor.h", |
| 78 "vr_web_contents_observer.cc", | 79 "vr_web_contents_observer.cc", |
| 79 "vr_web_contents_observer.h", | 80 "vr_web_contents_observer.h", |
| 80 ] | 81 ] |
| 81 | 82 |
| 82 deps = [ | 83 deps = [ |
| 83 ":vr_shell_jni_headers", | 84 ":vr_shell_jni_headers", |
| 84 "//base", | 85 "//base", |
| 85 "//cc", | 86 "//cc", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] | 148 [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] |
| 148 | 149 |
| 149 data = [ | 150 data = [ |
| 150 "test/data/sample_inline.gltf", | 151 "test/data/sample_inline.gltf", |
| 151 "test/data/sample_external.gltf", | 152 "test/data/sample_external.gltf", |
| 152 "test/data/sample.bin", | 153 "test/data/sample.bin", |
| 153 "test/data/sample.glb", | 154 "test/data/sample.glb", |
| 154 ] | 155 ] |
| 155 } | 156 } |
| 156 } | 157 } |
| OLD | NEW |