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

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

Issue 2624633002: Remove Sync GetPose VRService call, implement VRVSyncProvider (Closed)
Patch Set: oops Created 3 years, 10 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
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("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 assert(enable_vr_shell || enable_webvr) 9 assert(enable_vr_shell || enable_webvr)
10 10
11 if (current_cpu == "arm" || current_cpu == "arm64") { 11 if (current_cpu == "arm" || current_cpu == "arm64") {
12 static_library("vr_common") { 12 static_library("vr_common") {
13 defines = [] 13 defines = []
14 14
15 sources = [ 15 sources = [
16 "animation.cc", 16 "animation.cc",
17 "animation.h", 17 "animation.h",
18 "easing.cc", 18 "easing.cc",
19 "easing.h", 19 "easing.h",
20 "non_presenting_gvr_delegate.cc",
21 "non_presenting_gvr_delegate.h",
20 "ui_elements.cc", 22 "ui_elements.cc",
21 "ui_elements.h", 23 "ui_elements.h",
22 "ui_interface.cc", 24 "ui_interface.cc",
23 "ui_interface.h", 25 "ui_interface.h",
24 "ui_scene.cc", 26 "ui_scene.cc",
25 "ui_scene.h", 27 "ui_scene.h",
26 "vr_compositor.cc", 28 "vr_compositor.cc",
27 "vr_compositor.h", 29 "vr_compositor.h",
28 "vr_controller.cc", 30 "vr_controller.cc",
29 "vr_controller.h", 31 "vr_controller.h",
30 "vr_gesture.h", 32 "vr_gesture.h",
33 "vr_gl_thread.cc",
34 "vr_gl_thread.h",
31 "vr_gl_util.cc", 35 "vr_gl_util.cc",
32 "vr_gl_util.h", 36 "vr_gl_util.h",
33 "vr_input_manager.cc", 37 "vr_input_manager.cc",
34 "vr_input_manager.h", 38 "vr_input_manager.h",
35 "vr_math.cc", 39 "vr_math.cc",
36 "vr_math.h", 40 "vr_math.h",
37 "vr_shell.cc", 41 "vr_shell.cc",
38 "vr_shell.h", 42 "vr_shell.h",
39 "vr_shell_delegate.cc", 43 "vr_shell_delegate.cc",
40 "vr_shell_delegate.h", 44 "vr_shell_delegate.h",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 ":vr_common", 103 ":vr_common",
100 "//base/test:run_all_unittests", 104 "//base/test:run_all_unittests",
101 "//base/test:test_support", 105 "//base/test:test_support",
102 "//chrome/browser", 106 "//chrome/browser",
103 "//testing/gtest", 107 "//testing/gtest",
104 "//third_party/WebKit/public:blink", 108 "//third_party/WebKit/public:blink",
105 "//ui/gfx/geometry", 109 "//ui/gfx/geometry",
106 ] 110 ]
107 } 111 }
108 } 112 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698