| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 79       "ui_elements/ui_element_debug_id.h", | 79       "ui_elements/ui_element_debug_id.h", | 
| 80       "ui_elements/url_bar.cc", | 80       "ui_elements/url_bar.cc", | 
| 81       "ui_elements/url_bar.h", | 81       "ui_elements/url_bar.h", | 
| 82       "ui_elements/video_capture_indicator.cc", | 82       "ui_elements/video_capture_indicator.cc", | 
| 83       "ui_elements/video_capture_indicator.h", | 83       "ui_elements/video_capture_indicator.h", | 
| 84       "ui_interface.h", | 84       "ui_interface.h", | 
| 85       "ui_scene.cc", | 85       "ui_scene.cc", | 
| 86       "ui_scene.h", | 86       "ui_scene.h", | 
| 87       "ui_scene_manager.cc", | 87       "ui_scene_manager.cc", | 
| 88       "ui_scene_manager.h", | 88       "ui_scene_manager.h", | 
|  | 89       "ui_unsupported_mode.h", | 
| 89       "vr_browser_interface.h", | 90       "vr_browser_interface.h", | 
| 90       "vr_compositor.cc", | 91       "vr_compositor.cc", | 
| 91       "vr_compositor.h", | 92       "vr_compositor.h", | 
| 92       "vr_controller.cc", | 93       "vr_controller.cc", | 
| 93       "vr_controller.h", | 94       "vr_controller.h", | 
| 94       "vr_controller_model.cc", | 95       "vr_controller_model.cc", | 
| 95       "vr_controller_model.h", | 96       "vr_controller_model.h", | 
| 96       "vr_gl_thread.cc", | 97       "vr_gl_thread.cc", | 
| 97       "vr_gl_thread.h", | 98       "vr_gl_thread.h", | 
| 98       "vr_gl_util.cc", | 99       "vr_gl_util.cc", | 
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 186   # See https://crbug.com/704305 for details. | 187   # See https://crbug.com/704305 for details. | 
| 187   libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] | 188   libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] | 
| 188 | 189 | 
| 189   data = [ | 190   data = [ | 
| 190     "test/data/sample_inline.gltf", | 191     "test/data/sample_inline.gltf", | 
| 191     "test/data/sample_external.gltf", | 192     "test/data/sample_external.gltf", | 
| 192     "test/data/sample.bin", | 193     "test/data/sample.bin", | 
| 193     "test/data/sample.glb", | 194     "test/data/sample.glb", | 
| 194   ] | 195   ] | 
| 195 } | 196 } | 
| OLD | NEW | 
|---|