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

Side by Side Diff: third_party/WebKit/Source/core/core_idl_files.gni

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/bindings/bindings.gni") 5 import("//third_party/WebKit/Source/bindings/bindings.gni")
6 import("//third_party/WebKit/Source/core/core.gni") 6 import("//third_party/WebKit/Source/core/core.gni")
7 7
8 # The paths in this file are absolute since this file is imported and the 8 # The paths in this file are absolute since this file is imported and the
9 # file lists must be valid from multple "current directories". 9 # file lists must be valid from multple "current directories".
10 10
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 "dom/DOMMatrix.idl", 96 "dom/DOMMatrix.idl",
97 "dom/DOMMatrixReadOnly.idl", 97 "dom/DOMMatrixReadOnly.idl",
98 "dom/DOMPoint.idl", 98 "dom/DOMPoint.idl",
99 "dom/DOMPointReadOnly.idl", 99 "dom/DOMPointReadOnly.idl",
100 "dom/DOMRect.idl", 100 "dom/DOMRect.idl",
101 "dom/DOMRectReadOnly.idl", 101 "dom/DOMRectReadOnly.idl",
102 "dom/DOMStringList.idl", 102 "dom/DOMStringList.idl",
103 "dom/DOMStringMap.idl", 103 "dom/DOMStringMap.idl",
104 "dom/DOMTokenList.idl", 104 "dom/DOMTokenList.idl",
105 "dom/DataView.idl", 105 "dom/DataView.idl",
106 "dom/Document.idl",
107 "dom/DocumentFragment.idl", 106 "dom/DocumentFragment.idl",
108 "dom/DocumentType.idl", 107 "dom/DocumentType.idl",
109 "dom/Element.idl", 108 "dom/Element.idl",
110 "dom/Float32Array.idl", 109 "dom/Float32Array.idl",
111 "dom/Float64Array.idl", 110 "dom/Float64Array.idl",
112 "dom/FrameRequestCallback.idl", 111 "dom/FrameRequestCallback.idl",
113 "dom/IdleDeadline.idl", 112 "dom/IdleDeadline.idl",
114 "dom/IdleRequestCallback.idl", 113 "dom/IdleRequestCallback.idl",
115 "dom/Int16Array.idl", 114 "dom/Int16Array.idl",
116 "dom/Int32Array.idl", 115 "dom/Int32Array.idl",
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 "xmlhttprequest/XMLHttpRequest.idl", 420 "xmlhttprequest/XMLHttpRequest.idl",
422 "xmlhttprequest/XMLHttpRequestEventTarget.idl", 421 "xmlhttprequest/XMLHttpRequestEventTarget.idl",
423 "xmlhttprequest/XMLHttpRequestUpload.idl", 422 "xmlhttprequest/XMLHttpRequestUpload.idl",
424 ], 423 ],
425 "abspath") 424 "abspath")
426 425
427 # Files for which bindings (.cpp and .h files) will be generated. 426 # Files for which bindings (.cpp and .h files) will be generated.
428 core_idl_with_modules_dependency_files = 427 core_idl_with_modules_dependency_files =
429 get_path_info([ 428 get_path_info([
430 "clipboard/DataTransferItem.idl", 429 "clipboard/DataTransferItem.idl",
430 "dom/Document.idl",
431 "dom/URL.idl", 431 "dom/URL.idl",
432 "frame/Navigator.idl", 432 "frame/Navigator.idl",
433 "frame/Screen.idl", 433 "frame/Screen.idl",
434 "frame/Window.idl", 434 "frame/Window.idl",
435 "html/HTMLCanvasElement.idl", 435 "html/HTMLCanvasElement.idl",
436 "html/HTMLInputElement.idl", 436 "html/HTMLInputElement.idl",
437 "html/HTMLMediaElement.idl", 437 "html/HTMLMediaElement.idl",
438 "html/HTMLVideoElement.idl", 438 "html/HTMLVideoElement.idl",
439 "html/track/AudioTrack.idl", 439 "html/track/AudioTrack.idl",
440 "html/track/VideoTrack.idl", 440 "html/track/VideoTrack.idl",
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte rfaces 628 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte rfaces
629 core_generated_dependency_idl_files = 629 core_generated_dependency_idl_files =
630 core_global_constructors_generated_idl_files # partial interfaces 630 core_global_constructors_generated_idl_files # partial interfaces
631 631
632 # Dependency IDL files: don't generate individual bindings, but do process 632 # Dependency IDL files: don't generate individual bindings, but do process
633 # in IDL dependency computation, and count as build dependencies 633 # in IDL dependency computation, and count as build dependencies
634 # 'core_dependency_idl_files' is already used in Source/core, so avoid 634 # 'core_dependency_idl_files' is already used in Source/core, so avoid
635 # collision 635 # collision
636 core_all_dependency_idl_files = 636 core_all_dependency_idl_files =
637 core_static_dependency_idl_files + core_generated_dependency_idl_files 637 core_static_dependency_idl_files + core_generated_dependency_idl_files
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698