| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "ui_elements/permanent_security_warning.cc", | 43 "ui_elements/permanent_security_warning.cc", |
| 44 "ui_elements/permanent_security_warning.h", | 44 "ui_elements/permanent_security_warning.h", |
| 45 "ui_elements/textured_element.cc", | 45 "ui_elements/textured_element.cc", |
| 46 "ui_elements/textured_element.h", | 46 "ui_elements/textured_element.h", |
| 47 "ui_elements/transient_security_warning.cc", | 47 "ui_elements/transient_security_warning.cc", |
| 48 "ui_elements/transient_security_warning.h", | 48 "ui_elements/transient_security_warning.h", |
| 49 "ui_elements/ui_element.cc", | 49 "ui_elements/ui_element.cc", |
| 50 "ui_elements/ui_element.h", | 50 "ui_elements/ui_element.h", |
| 51 "ui_elements/url_bar.cc", | 51 "ui_elements/url_bar.cc", |
| 52 "ui_elements/url_bar.h", | 52 "ui_elements/url_bar.h", |
| 53 "ui_interface.cc", | |
| 54 "ui_interface.h", | 53 "ui_interface.h", |
| 55 "ui_scene.cc", | 54 "ui_scene.cc", |
| 56 "ui_scene.h", | 55 "ui_scene.h", |
| 57 "ui_scene_manager.cc", | 56 "ui_scene_manager.cc", |
| 58 "ui_scene_manager.h", | 57 "ui_scene_manager.h", |
| 59 "vr_browser_interface.h", | 58 "vr_browser_interface.h", |
| 60 "vr_compositor.cc", | 59 "vr_compositor.cc", |
| 61 "vr_compositor.h", | 60 "vr_compositor.h", |
| 62 "vr_controller.cc", | 61 "vr_controller.cc", |
| 63 "vr_controller.h", | 62 "vr_controller.h", |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] | 150 [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] |
| 152 | 151 |
| 153 data = [ | 152 data = [ |
| 154 "test/data/sample_inline.gltf", | 153 "test/data/sample_inline.gltf", |
| 155 "test/data/sample_external.gltf", | 154 "test/data/sample_external.gltf", |
| 156 "test/data/sample.bin", | 155 "test/data/sample.bin", |
| 157 "test/data/sample.glb", | 156 "test/data/sample.glb", |
| 158 ] | 157 ] |
| 159 } | 158 } |
| 160 } | 159 } |
| OLD | NEW |