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

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

Issue 2873493002: Basic ScrollTimeline implementation for Animation Worklet (Closed)
Patch Set: Add helper method in tests for creating options 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 "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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 "timing/DOMHighResTimeStamp.idl", 507 "timing/DOMHighResTimeStamp.idl",
507 "timing/PerformanceEntryList.idl", 508 "timing/PerformanceEntryList.idl",
508 ], 509 ],
509 "abspath") 510 "abspath")
510 511
511 core_dictionary_idl_files = 512 core_dictionary_idl_files =
512 get_path_info([ 513 get_path_info([
513 "animation/AnimationEffectTimingProperties.idl", 514 "animation/AnimationEffectTimingProperties.idl",
514 "animation/ComputedTimingProperties.idl", 515 "animation/ComputedTimingProperties.idl",
515 "animation/KeyframeEffectOptions.idl", 516 "animation/KeyframeEffectOptions.idl",
517 "animation/ScrollTimelineOptions.idl",
516 "css/FontFaceDescriptors.idl", 518 "css/FontFaceDescriptors.idl",
517 "css/FontFaceSetLoadEventInit.idl", 519 "css/FontFaceSetLoadEventInit.idl",
518 "css/MediaQueryListEventInit.idl", 520 "css/MediaQueryListEventInit.idl",
519 "css/PropertyDescriptor.idl", 521 "css/PropertyDescriptor.idl",
520 "css/cssom/CSSCalcDictionary.idl", 522 "css/cssom/CSSCalcDictionary.idl",
521 "geometry/DOMMatrixInit.idl", 523 "geometry/DOMMatrixInit.idl",
522 "geometry/DOMPointInit.idl", 524 "geometry/DOMPointInit.idl",
523 "geometry/DOMQuadInit.idl", 525 "geometry/DOMQuadInit.idl",
524 "geometry/DOMRectInit.idl", 526 "geometry/DOMRectInit.idl",
525 "dom/ElementCreationOptions.idl", 527 "dom/ElementCreationOptions.idl",
(...skipping 128 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