| 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.gni") | 7 import("//device/vr/features.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 assert(enable_vr) | 10 assert(enable_vr) |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 "mailbox_to_surface_bridge.cc", | 27 "mailbox_to_surface_bridge.cc", |
| 28 "mailbox_to_surface_bridge.h", | 28 "mailbox_to_surface_bridge.h", |
| 29 "non_presenting_gvr_delegate.cc", | 29 "non_presenting_gvr_delegate.cc", |
| 30 "non_presenting_gvr_delegate.h", | 30 "non_presenting_gvr_delegate.h", |
| 31 "ui_element.cc", | 31 "ui_element.cc", |
| 32 "ui_element.h", | 32 "ui_element.h", |
| 33 "ui_interface.cc", | 33 "ui_interface.cc", |
| 34 "ui_interface.h", | 34 "ui_interface.h", |
| 35 "ui_scene.cc", | 35 "ui_scene.cc", |
| 36 "ui_scene.h", | 36 "ui_scene.h", |
| 37 "ui_scene_manager.cc", |
| 38 "ui_scene_manager.h", |
| 37 "vr_compositor.cc", | 39 "vr_compositor.cc", |
| 38 "vr_compositor.h", | 40 "vr_compositor.h", |
| 39 "vr_controller.cc", | 41 "vr_controller.cc", |
| 40 "vr_controller.h", | 42 "vr_controller.h", |
| 41 "vr_controller_model.cc", | 43 "vr_controller_model.cc", |
| 42 "vr_controller_model.h", | 44 "vr_controller_model.h", |
| 43 "vr_gesture.h", | 45 "vr_gesture.h", |
| 44 "vr_gl_thread.cc", | 46 "vr_gl_thread.cc", |
| 45 "vr_gl_thread.h", | 47 "vr_gl_thread.h", |
| 46 "vr_gl_util.cc", | 48 "vr_gl_util.cc", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 "//base/test:run_all_unittests", | 123 "//base/test:run_all_unittests", |
| 122 "//base/test:test_support", | 124 "//base/test:test_support", |
| 123 "//chrome/browser", | 125 "//chrome/browser", |
| 124 "//testing/gtest", | 126 "//testing/gtest", |
| 125 "//third_party/WebKit/public:blink", | 127 "//third_party/WebKit/public:blink", |
| 126 "//ui/gfx/geometry", | 128 "//ui/gfx/geometry", |
| 127 ] | 129 ] |
| 128 | 130 |
| 129 # Ensure libgvr static library appears before gcc library in linking order. | 131 # Ensure libgvr static library appears before gcc library in linking order. |
| 130 # See https://crbug.com/704305 for details. | 132 # See https://crbug.com/704305 for details. |
| 131 libs = [ | 133 libs = |
| 132 "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a", | 134 [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] |
| 133 ] | |
| 134 | 135 |
| 135 data = [ | 136 data = [ |
| 136 "test/data/sample_inline.gltf", | 137 "test/data/sample_inline.gltf", |
| 137 "test/data/sample_external.gltf", | 138 "test/data/sample_external.gltf", |
| 138 "test/data/sample.bin", | 139 "test/data/sample.bin", |
| 139 ] | 140 ] |
| 140 } | 141 } |
| 141 } | 142 } |
| OLD | NEW |