| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 # See https://crbug.com/704305 for details. | 147 # See https://crbug.com/704305 for details. |
| 149 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] | 148 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] |
| 150 | 149 |
| 151 data = [ | 150 data = [ |
| 152 "test/data/sample_inline.gltf", | 151 "test/data/sample_inline.gltf", |
| 153 "test/data/sample_external.gltf", | 152 "test/data/sample_external.gltf", |
| 154 "test/data/sample.bin", | 153 "test/data/sample.bin", |
| 155 "test/data/sample.glb", | 154 "test/data/sample.glb", |
| 156 ] | 155 ] |
| 157 } | 156 } |
| OLD | NEW |