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

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

Issue 2873493002: Basic ScrollTimeline implementation for Animation Worklet (Closed)
Patch Set: address reviewer nits Created 3 years, 5 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 | « third_party/WebKit/Source/core/animation/ScrollTimelineOptions.idl ('k') | no next file » | 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("//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/Animation.idl", 29 "animation/Animation.idl",
30 "animation/AnimationEffectReadOnly.idl", 30 "animation/AnimationEffectReadOnly.idl",
31 "animation/AnimationEffectTiming.idl", 31 "animation/AnimationEffectTiming.idl",
32 "animation/AnimationEffectTimingReadOnly.idl", 32 "animation/AnimationEffectTimingReadOnly.idl",
33 "animation/AnimationTimeline.idl", 33 "animation/AnimationTimeline.idl",
34 "animation/DocumentTimeline.idl", 34 "animation/DocumentTimeline.idl",
35 "animation/KeyframeEffect.idl", 35 "animation/KeyframeEffect.idl",
36 "animation/KeyframeEffectReadOnly.idl", 36 "animation/KeyframeEffectReadOnly.idl",
37 "animation/ScrollTimeline.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 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 core_callback_function_idl_files = 505 core_callback_function_idl_files =
505 get_path_info([ "dom/FunctionStringCallback.idl" ], "abspath") 506 get_path_info([ "dom/FunctionStringCallback.idl" ], "abspath")
506 507
507 core_dictionary_idl_files = 508 core_dictionary_idl_files =
508 get_path_info([ 509 get_path_info([
509 "animation/AnimationEffectTimingProperties.idl", 510 "animation/AnimationEffectTimingProperties.idl",
510 "animation/ComputedTimingProperties.idl", 511 "animation/ComputedTimingProperties.idl",
511 "animation/DocumentTimelineOptions.idl", 512 "animation/DocumentTimelineOptions.idl",
512 "animation/KeyframeAnimationOptions.idl", 513 "animation/KeyframeAnimationOptions.idl",
513 "animation/KeyframeEffectOptions.idl", 514 "animation/KeyframeEffectOptions.idl",
515 "animation/ScrollTimelineOptions.idl",
514 "css/FontFaceDescriptors.idl", 516 "css/FontFaceDescriptors.idl",
515 "css/FontFaceSetLoadEventInit.idl", 517 "css/FontFaceSetLoadEventInit.idl",
516 "css/MediaQueryListEventInit.idl", 518 "css/MediaQueryListEventInit.idl",
517 "css/PropertyDescriptor.idl", 519 "css/PropertyDescriptor.idl",
518 "css/cssom/CSSMatrixComponentOptions.idl", 520 "css/cssom/CSSMatrixComponentOptions.idl",
519 "dom/ElementCreationOptions.idl", 521 "dom/ElementCreationOptions.idl",
520 "dom/ElementDefinitionOptions.idl", 522 "dom/ElementDefinitionOptions.idl",
521 "dom/ElementRegistrationOptions.idl", 523 "dom/ElementRegistrationOptions.idl",
522 "dom/GetRootNodeOptions.idl", 524 "dom/GetRootNodeOptions.idl",
523 "dom/IdleRequestOptions.idl", 525 "dom/IdleRequestOptions.idl",
(...skipping 130 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
« no previous file with comments | « third_party/WebKit/Source/core/animation/ScrollTimelineOptions.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698