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

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

Issue 2729523002: Re-land^2 WebVR compositor bypass via BrowserMain context + mailbox (Closed)
Patch Set: Rebase to 11e28fd6b9380b77273db51ef0b6ccc7ea341944 Created 3 years, 9 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/mailbox_to_surface_bridge.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("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 assert(enable_webvr) 9 assert(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 "android_ui_gesture_target.cc", 16 "android_ui_gesture_target.cc",
17 "android_ui_gesture_target.h", 17 "android_ui_gesture_target.h",
18 "animation.cc", 18 "animation.cc",
19 "animation.h", 19 "animation.h",
20 "easing.cc", 20 "easing.cc",
21 "easing.h", 21 "easing.h",
22 "mailbox_to_surface_bridge.cc",
23 "mailbox_to_surface_bridge.h",
22 "non_presenting_gvr_delegate.cc", 24 "non_presenting_gvr_delegate.cc",
23 "non_presenting_gvr_delegate.h", 25 "non_presenting_gvr_delegate.h",
24 "ui_elements.cc", 26 "ui_elements.cc",
25 "ui_elements.h", 27 "ui_elements.h",
26 "ui_interface.cc", 28 "ui_interface.cc",
27 "ui_interface.h", 29 "ui_interface.h",
28 "ui_scene.cc", 30 "ui_scene.cc",
29 "ui_scene.h", 31 "ui_scene.h",
30 "vr_compositor.cc", 32 "vr_compositor.cc",
31 "vr_compositor.h", 33 "vr_compositor.h",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 "//base", 67 "//base",
66 "//cc", 68 "//cc",
67 "//components/omnibox/browser", 69 "//components/omnibox/browser",
68 "//components/rappor", 70 "//components/rappor",
69 "//components/security_state/core", 71 "//components/security_state/core",
70 "//content/public/android:jni", 72 "//content/public/android:jni",
71 "//content/public/browser", 73 "//content/public/browser",
72 "//content/public/common", 74 "//content/public/common",
73 "//device/gamepad", 75 "//device/gamepad",
74 "//device/vr", 76 "//device/vr",
77 "//services/ui/public/cpp/gpu",
75 "//ui/android", 78 "//ui/android",
76 "//ui/base", 79 "//ui/base",
77 "//ui/display", 80 "//ui/display",
78 "//ui/gl", 81 "//ui/gl",
79 "//ui/gl/init", 82 "//ui/gl/init",
80 ] 83 ]
81 84
82 libs = [ 85 libs = [
83 "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a", 86 "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a",
84 "android", 87 "android",
(...skipping 21 matching lines...) Expand all
106 ":vr_common", 109 ":vr_common",
107 "//base/test:run_all_unittests", 110 "//base/test:run_all_unittests",
108 "//base/test:test_support", 111 "//base/test:test_support",
109 "//chrome/browser", 112 "//chrome/browser",
110 "//testing/gtest", 113 "//testing/gtest",
111 "//third_party/WebKit/public:blink", 114 "//third_party/WebKit/public:blink",
112 "//ui/gfx/geometry", 115 "//ui/gfx/geometry",
113 ] 116 ]
114 } 117 }
115 } 118 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/android/vr_shell/mailbox_to_surface_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698