| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "ui_elements/audio_capture_indicator.cc", | 55 "ui_elements/audio_capture_indicator.cc", |
| 56 "ui_elements/audio_capture_indicator.h", | 56 "ui_elements/audio_capture_indicator.h", |
| 57 "ui_elements/button.cc", | 57 "ui_elements/button.cc", |
| 58 "ui_elements/button.h", | 58 "ui_elements/button.h", |
| 59 "ui_elements/exit_warning.cc", | 59 "ui_elements/exit_warning.cc", |
| 60 "ui_elements/exit_warning.h", | 60 "ui_elements/exit_warning.h", |
| 61 "ui_elements/loading_indicator.cc", | 61 "ui_elements/loading_indicator.cc", |
| 62 "ui_elements/loading_indicator.h", | 62 "ui_elements/loading_indicator.h", |
| 63 "ui_elements/permanent_security_warning.cc", | 63 "ui_elements/permanent_security_warning.cc", |
| 64 "ui_elements/permanent_security_warning.h", | 64 "ui_elements/permanent_security_warning.h", |
| 65 "ui_elements/screen_capture_indicator.cc", |
| 66 "ui_elements/screen_capture_indicator.h", |
| 65 "ui_elements/screen_dimmer.cc", | 67 "ui_elements/screen_dimmer.cc", |
| 66 "ui_elements/screen_dimmer.h", | 68 "ui_elements/screen_dimmer.h", |
| 67 "ui_elements/textured_element.cc", | 69 "ui_elements/textured_element.cc", |
| 68 "ui_elements/textured_element.h", | 70 "ui_elements/textured_element.h", |
| 69 "ui_elements/transient_security_warning.cc", | 71 "ui_elements/transient_security_warning.cc", |
| 70 "ui_elements/transient_security_warning.h", | 72 "ui_elements/transient_security_warning.h", |
| 71 "ui_elements/ui_element.cc", | 73 "ui_elements/ui_element.cc", |
| 72 "ui_elements/ui_element.h", | 74 "ui_elements/ui_element.h", |
| 73 "ui_elements/url_bar.cc", | 75 "ui_elements/url_bar.cc", |
| 74 "ui_elements/url_bar.h", | 76 "ui_elements/url_bar.h", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 ] | 109 ] |
| 108 | 110 |
| 109 deps = [ | 111 deps = [ |
| 110 ":vr_shell_jni_headers", | 112 ":vr_shell_jni_headers", |
| 111 "//base", | 113 "//base", |
| 112 "//cc", | 114 "//cc", |
| 113 "//chrome:resources", | 115 "//chrome:resources", |
| 114 "//components/omnibox/browser", | 116 "//components/omnibox/browser", |
| 115 "//components/rappor", | 117 "//components/rappor", |
| 116 "//components/security_state/core", | 118 "//components/security_state/core", |
| 119 "//components/vector_icons", |
| 117 "//content/public/android:jni", | 120 "//content/public/android:jni", |
| 118 "//content/public/browser", | 121 "//content/public/browser", |
| 119 "//content/public/common", | 122 "//content/public/common", |
| 120 "//device/gamepad", | 123 "//device/gamepad", |
| 121 "//device/vr", | 124 "//device/vr", |
| 122 "//services/ui/public/cpp/gpu", | 125 "//services/ui/public/cpp/gpu", |
| 123 "//ui/android", | 126 "//ui/android", |
| 124 "//ui/base", | 127 "//ui/base", |
| 125 "//ui/display", | 128 "//ui/display", |
| 126 "//ui/gl", | 129 "//ui/gl", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 # See https://crbug.com/704305 for details. | 179 # See https://crbug.com/704305 for details. |
| 177 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] | 180 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] |
| 178 | 181 |
| 179 data = [ | 182 data = [ |
| 180 "test/data/sample_inline.gltf", | 183 "test/data/sample_inline.gltf", |
| 181 "test/data/sample_external.gltf", | 184 "test/data/sample_external.gltf", |
| 182 "test/data/sample.bin", | 185 "test/data/sample.bin", |
| 183 "test/data/sample.glb", | 186 "test/data/sample.glb", |
| 184 ] | 187 ] |
| 185 } | 188 } |
| OLD | NEW |