| 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 29 matching lines...) Expand all Loading... |
| 40 "vr_controller.h", | 40 "vr_controller.h", |
| 41 "vr_controller_model.cc", | 41 "vr_controller_model.cc", |
| 42 "vr_controller_model.h", | 42 "vr_controller_model.h", |
| 43 "vr_gesture.h", | 43 "vr_gesture.h", |
| 44 "vr_gl_thread.cc", | 44 "vr_gl_thread.cc", |
| 45 "vr_gl_thread.h", | 45 "vr_gl_thread.h", |
| 46 "vr_gl_util.cc", | 46 "vr_gl_util.cc", |
| 47 "vr_gl_util.h", | 47 "vr_gl_util.h", |
| 48 "vr_input_manager.cc", | 48 "vr_input_manager.cc", |
| 49 "vr_input_manager.h", | 49 "vr_input_manager.h", |
| 50 "vr_math.cc", | |
| 51 "vr_math.h", | |
| 52 "vr_omnibox.cc", | 50 "vr_omnibox.cc", |
| 53 "vr_omnibox.h", | 51 "vr_omnibox.h", |
| 54 "vr_shell.cc", | 52 "vr_shell.cc", |
| 55 "vr_shell.h", | 53 "vr_shell.h", |
| 56 "vr_shell_delegate.cc", | 54 "vr_shell_delegate.cc", |
| 57 "vr_shell_delegate.h", | 55 "vr_shell_delegate.h", |
| 58 "vr_shell_gl.cc", | 56 "vr_shell_gl.cc", |
| 59 "vr_shell_gl.h", | 57 "vr_shell_gl.h", |
| 60 "vr_shell_renderer.cc", | 58 "vr_shell_renderer.cc", |
| 61 "vr_shell_renderer.h", | 59 "vr_shell_renderer.h", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 "//base/test:run_all_unittests", | 119 "//base/test:run_all_unittests", |
| 122 "//base/test:test_support", | 120 "//base/test:test_support", |
| 123 "//chrome/browser", | 121 "//chrome/browser", |
| 124 "//testing/gtest", | 122 "//testing/gtest", |
| 125 "//third_party/WebKit/public:blink", | 123 "//third_party/WebKit/public:blink", |
| 126 "//ui/gfx/geometry", | 124 "//ui/gfx/geometry", |
| 127 ] | 125 ] |
| 128 | 126 |
| 129 # Ensure libgvr static library appears before gcc library in linking order. | 127 # Ensure libgvr static library appears before gcc library in linking order. |
| 130 # See https://crbug.com/704305 for details. | 128 # See https://crbug.com/704305 for details. |
| 131 libs = [ | 129 libs = |
| 132 "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a", | 130 [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] |
| 133 ] | |
| 134 | 131 |
| 135 data = [ | 132 data = [ |
| 136 "test/data/sample_inline.gltf", | 133 "test/data/sample_inline.gltf", |
| 137 "test/data/sample_external.gltf", | 134 "test/data/sample_external.gltf", |
| 138 "test/data/sample.bin", | 135 "test/data/sample.bin", |
| 139 ] | 136 ] |
| 140 } | 137 } |
| 141 } | 138 } |
| OLD | NEW |