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

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

Issue 2695593006: Initial stub version of Async Clipboard API (Closed)
Patch Set: Address review comments; improve tests Created 3 years, 7 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 16 matching lines...) Expand all
27 27
28 core_idl_files = get_path_info([ 28 core_idl_files = get_path_info([
29 "animation/KeyframeEffect.idl", 29 "animation/KeyframeEffect.idl",
30 "animation/KeyframeEffectReadOnly.idl", 30 "animation/KeyframeEffectReadOnly.idl",
31 "animation/AnimationEffectReadOnly.idl", 31 "animation/AnimationEffectReadOnly.idl",
32 "animation/AnimationEffectTiming.idl", 32 "animation/AnimationEffectTiming.idl",
33 "animation/AnimationEffectTimingReadOnly.idl", 33 "animation/AnimationEffectTimingReadOnly.idl",
34 "animation/Animation.idl", 34 "animation/Animation.idl",
35 "animation/AnimationTimeline.idl", 35 "animation/AnimationTimeline.idl",
36 "animation/DocumentTimeline.idl", 36 "animation/DocumentTimeline.idl",
37 "clipboard/Clipboard.idl",
37 "clipboard/DataTransfer.idl", 38 "clipboard/DataTransfer.idl",
38 "clipboard/DataTransferItemList.idl", 39 "clipboard/DataTransferItemList.idl",
39 "css/CSS.idl", 40 "css/CSS.idl",
40 "css/CSSConditionRule.idl", 41 "css/CSSConditionRule.idl",
41 "css/CSSFontFaceRule.idl", 42 "css/CSSFontFaceRule.idl",
42 "css/CSSGroupingRule.idl", 43 "css/CSSGroupingRule.idl",
43 "css/CSSImportRule.idl", 44 "css/CSSImportRule.idl",
44 "css/CSSKeyframeRule.idl", 45 "css/CSSKeyframeRule.idl",
45 "css/CSSKeyframesRule.idl", 46 "css/CSSKeyframesRule.idl",
46 "css/CSSMediaRule.idl", 47 "css/CSSMediaRule.idl",
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 "dom/DocumentOrShadowRoot.idl", 469 "dom/DocumentOrShadowRoot.idl",
469 "dom/ElementFullscreen.idl", 470 "dom/ElementFullscreen.idl",
470 "dom/GlobalEventHandlers.idl", 471 "dom/GlobalEventHandlers.idl",
471 "dom/NonDocumentTypeChildNode.idl", 472 "dom/NonDocumentTypeChildNode.idl",
472 "dom/NonElementParentNode.idl", 473 "dom/NonElementParentNode.idl",
473 "dom/ParentNode.idl", 474 "dom/ParentNode.idl",
474 "dom/URLUtilsReadOnly.idl", 475 "dom/URLUtilsReadOnly.idl",
475 "events/EventListener.idl", 476 "events/EventListener.idl",
476 "events/NavigatorEvents.idl", 477 "events/NavigatorEvents.idl",
477 "fileapi/URLFileAPI.idl", 478 "fileapi/URLFileAPI.idl",
479 "frame/NavigatorClipboard.idl",
478 "frame/NavigatorConcurrentHardware.idl", 480 "frame/NavigatorConcurrentHardware.idl",
479 "frame/NavigatorCookies.idl", 481 "frame/NavigatorCookies.idl",
480 "frame/NavigatorID.idl", 482 "frame/NavigatorID.idl",
481 "frame/NavigatorLanguage.idl", 483 "frame/NavigatorLanguage.idl",
482 "frame/NavigatorOnLine.idl", 484 "frame/NavigatorOnLine.idl",
483 "frame/WindowBase64.idl", 485 "frame/WindowBase64.idl",
484 "frame/WindowEventHandlers.idl", 486 "frame/WindowEventHandlers.idl",
485 "frame/WindowTimers.idl", 487 "frame/WindowTimers.idl",
486 "html/HTMLHyperlinkElementUtils.idl", 488 "html/HTMLHyperlinkElementUtils.idl",
487 "imagebitmap/ImageBitmapFactories.idl", 489 "imagebitmap/ImageBitmapFactories.idl",
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte rfaces 656 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte rfaces
655 core_generated_dependency_idl_files = 657 core_generated_dependency_idl_files =
656 core_global_constructors_generated_idl_files # partial interfaces 658 core_global_constructors_generated_idl_files # partial interfaces
657 659
658 # Dependency IDL files: don't generate individual bindings, but do process 660 # Dependency IDL files: don't generate individual bindings, but do process
659 # in IDL dependency computation, and count as build dependencies 661 # in IDL dependency computation, and count as build dependencies
660 # 'core_dependency_idl_files' is already used in Source/core, so avoid 662 # 'core_dependency_idl_files' is already used in Source/core, so avoid
661 # collision 663 # collision
662 core_all_dependency_idl_files = 664 core_all_dependency_idl_files =
663 core_static_dependency_idl_files + core_generated_dependency_idl_files 665 core_static_dependency_idl_files + core_generated_dependency_idl_files
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698