| 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 22 matching lines...) Expand all Loading... |
| 33 "mailbox_to_surface_bridge.cc", | 33 "mailbox_to_surface_bridge.cc", |
| 34 "mailbox_to_surface_bridge.h", | 34 "mailbox_to_surface_bridge.h", |
| 35 "non_presenting_gvr_delegate.cc", | 35 "non_presenting_gvr_delegate.cc", |
| 36 "non_presenting_gvr_delegate.h", | 36 "non_presenting_gvr_delegate.h", |
| 37 "textures/close_button_texture.cc", | 37 "textures/close_button_texture.cc", |
| 38 "textures/close_button_texture.h", | 38 "textures/close_button_texture.h", |
| 39 "textures/insecure_content_permanent_texture.cc", | 39 "textures/insecure_content_permanent_texture.cc", |
| 40 "textures/insecure_content_permanent_texture.h", | 40 "textures/insecure_content_permanent_texture.h", |
| 41 "textures/insecure_content_transient_texture.cc", | 41 "textures/insecure_content_transient_texture.cc", |
| 42 "textures/insecure_content_transient_texture.h", | 42 "textures/insecure_content_transient_texture.h", |
| 43 "textures/loading_indicator_texture.cc", |
| 44 "textures/loading_indicator_texture.h", |
| 43 "textures/ui_texture.cc", | 45 "textures/ui_texture.cc", |
| 44 "textures/ui_texture.h", | 46 "textures/ui_texture.h", |
| 45 "textures/url_bar_texture.cc", | 47 "textures/url_bar_texture.cc", |
| 46 "textures/url_bar_texture.h", | 48 "textures/url_bar_texture.h", |
| 47 "ui_elements/close_button.cc", | 49 "ui_elements/close_button.cc", |
| 48 "ui_elements/close_button.h", | 50 "ui_elements/close_button.h", |
| 51 "ui_elements/loading_indicator.cc", |
| 52 "ui_elements/loading_indicator.h", |
| 49 "ui_elements/permanent_security_warning.cc", | 53 "ui_elements/permanent_security_warning.cc", |
| 50 "ui_elements/permanent_security_warning.h", | 54 "ui_elements/permanent_security_warning.h", |
| 51 "ui_elements/textured_element.cc", | 55 "ui_elements/textured_element.cc", |
| 52 "ui_elements/textured_element.h", | 56 "ui_elements/textured_element.h", |
| 53 "ui_elements/transient_security_warning.cc", | 57 "ui_elements/transient_security_warning.cc", |
| 54 "ui_elements/transient_security_warning.h", | 58 "ui_elements/transient_security_warning.h", |
| 55 "ui_elements/ui_element.cc", | 59 "ui_elements/ui_element.cc", |
| 56 "ui_elements/ui_element.h", | 60 "ui_elements/ui_element.h", |
| 57 "ui_elements/url_bar.cc", | 61 "ui_elements/url_bar.cc", |
| 58 "ui_elements/url_bar.h", | 62 "ui_elements/url_bar.h", |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 # See https://crbug.com/704305 for details. | 161 # See https://crbug.com/704305 for details. |
| 158 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] | 162 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] |
| 159 | 163 |
| 160 data = [ | 164 data = [ |
| 161 "test/data/sample_inline.gltf", | 165 "test/data/sample_inline.gltf", |
| 162 "test/data/sample_external.gltf", | 166 "test/data/sample_external.gltf", |
| 163 "test/data/sample.bin", | 167 "test/data/sample.bin", |
| 164 "test/data/sample.glb", | 168 "test/data/sample.glb", |
| 165 ] | 169 ] |
| 166 } | 170 } |
| OLD | NEW |