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

Side by Side Diff: third_party/WebKit/Source/modules/vr/BUILD.gn

Issue 2331223002: Added allowvr attribute to iframes and vrEnabled to Document (Closed)
Patch Set: Rebase and moved vrEnabled from navigator to document Created 4 years, 3 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("//third_party/WebKit/Source/modules/modules.gni") 5 import("//third_party/WebKit/Source/modules/modules.gni")
6 6
7 blink_modules_sources("vr") { 7 blink_modules_sources("vr") {
8 sources = [ 8 sources = [
9 "DocumentVR.cpp",
10 "DocumentVR.h",
9 "NavigatorVR.cpp", 11 "NavigatorVR.cpp",
10 "NavigatorVR.h", 12 "NavigatorVR.h",
11 "VRController.cpp", 13 "VRController.cpp",
12 "VRController.h", 14 "VRController.h",
13 "VRDisplay.cpp", 15 "VRDisplay.cpp",
14 "VRDisplay.h", 16 "VRDisplay.h",
15 "VRDisplayCapabilities.cpp", 17 "VRDisplayCapabilities.cpp",
16 "VRDisplayCapabilities.h", 18 "VRDisplayCapabilities.h",
17 "VRDisplayEvent.cpp", 19 "VRDisplayEvent.cpp",
18 "VRDisplayEvent.h", 20 "VRDisplayEvent.h",
19 "VREyeParameters.cpp", 21 "VREyeParameters.cpp",
20 "VREyeParameters.h", 22 "VREyeParameters.h",
21 "VRFieldOfView.h", 23 "VRFieldOfView.h",
22 "VRFrameData.cpp", 24 "VRFrameData.cpp",
23 "VRFrameData.h", 25 "VRFrameData.h",
24 "VRGetDevicesCallback.cpp", 26 "VRGetDevicesCallback.cpp",
25 "VRGetDevicesCallback.h", 27 "VRGetDevicesCallback.h",
26 "VRPose.cpp", 28 "VRPose.cpp",
27 "VRPose.h", 29 "VRPose.h",
28 "VRStageParameters.cpp", 30 "VRStageParameters.cpp",
29 "VRStageParameters.h", 31 "VRStageParameters.h",
30 ] 32 ]
31 33
32 deps = [ 34 deps = [
33 "//device/vr:mojo_bindings_blink", 35 "//device/vr:mojo_bindings_blink",
34 ] 36 ]
35 } 37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698