Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: chrome/browser/android/vr_shell/BUILD.gn

Issue 2814443004: Refactor VR math off of GVR types, onto gfx types where possible. (Closed)
Patch Set: Fix tests Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/android/vr_shell/non_presenting_gvr_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/android/vr_shell/non_presenting_gvr_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698