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

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

Issue 2873493002: Basic ScrollTimeline implementation for Animation Worklet (Closed)
Patch Set: Rebase Created 3 years, 6 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 "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 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 "timing/PerformanceEntryList.idl", 502 "timing/PerformanceEntryList.idl",
502 ], 503 ],
503 "abspath") 504 "abspath")
504 505
505 core_dictionary_idl_files = 506 core_dictionary_idl_files =
506 get_path_info([ 507 get_path_info([
507 "animation/AnimationEffectTimingProperties.idl", 508 "animation/AnimationEffectTimingProperties.idl",
508 "animation/ComputedTimingProperties.idl", 509 "animation/ComputedTimingProperties.idl",
509 "animation/KeyframeAnimationOptions.idl", 510 "animation/KeyframeAnimationOptions.idl",
510 "animation/KeyframeEffectOptions.idl", 511 "animation/KeyframeEffectOptions.idl",
512 "animation/ScrollTimelineOptions.idl",
511 "css/FontFaceDescriptors.idl", 513 "css/FontFaceDescriptors.idl",
512 "css/FontFaceSetLoadEventInit.idl", 514 "css/FontFaceSetLoadEventInit.idl",
513 "css/MediaQueryListEventInit.idl", 515 "css/MediaQueryListEventInit.idl",
514 "css/PropertyDescriptor.idl", 516 "css/PropertyDescriptor.idl",
515 "css/cssom/CSSCalcDictionary.idl", 517 "css/cssom/CSSCalcDictionary.idl",
516 "geometry/DOMMatrixInit.idl", 518 "geometry/DOMMatrixInit.idl",
517 "geometry/DOMPointInit.idl", 519 "geometry/DOMPointInit.idl",
518 "geometry/DOMQuadInit.idl", 520 "geometry/DOMQuadInit.idl",
519 "geometry/DOMRectInit.idl", 521 "geometry/DOMRectInit.idl",
520 "dom/ElementCreationOptions.idl", 522 "dom/ElementCreationOptions.idl",
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte rfaces 651 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte rfaces
650 core_generated_dependency_idl_files = 652 core_generated_dependency_idl_files =
651 core_global_constructors_generated_idl_files # partial interfaces 653 core_global_constructors_generated_idl_files # partial interfaces
652 654
653 # Dependency IDL files: don't generate individual bindings, but do process 655 # Dependency IDL files: don't generate individual bindings, but do process
654 # in IDL dependency computation, and count as build dependencies 656 # in IDL dependency computation, and count as build dependencies
655 # 'core_dependency_idl_files' is already used in Source/core, so avoid 657 # 'core_dependency_idl_files' is already used in Source/core, so avoid
656 # collision 658 # collision
657 core_all_dependency_idl_files = 659 core_all_dependency_idl_files =
658 core_static_dependency_idl_files + core_generated_dependency_idl_files 660 core_static_dependency_idl_files + core_generated_dependency_idl_files
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698