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

Side by Side Diff: third_party/WebKit/Source/core/core.gypi

Issue 1449623002: IntersectionObserver: second cut. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Added dispose() methods for expicit cleanup Created 5 years 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 { 1 {
2 'includes': [ 2 'includes': [
3 'core_generated.gypi', 3 'core_generated.gypi',
4 ], 4 ],
5 'variables': { 5 'variables': {
6 # Files for which bindings (.cpp and .h files) will be generated 6 # Files for which bindings (.cpp and .h files) will be generated
7 'core_idl_files': [ 7 'core_idl_files': [
8 'animation/KeyframeEffect.idl', 8 'animation/KeyframeEffect.idl',
9 'animation/EffectModel.idl', 9 'animation/EffectModel.idl',
10 'animation/AnimationEffectReadOnly.idl', 10 'animation/AnimationEffectReadOnly.idl',
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 'dom/DocumentType.idl', 72 'dom/DocumentType.idl',
73 'dom/Element.idl', 73 'dom/Element.idl',
74 'dom/Float32Array.idl', 74 'dom/Float32Array.idl',
75 'dom/Float64Array.idl', 75 'dom/Float64Array.idl',
76 'dom/FrameRequestCallback.idl', 76 'dom/FrameRequestCallback.idl',
77 'dom/IdleDeadline.idl', 77 'dom/IdleDeadline.idl',
78 'dom/IdleRequestCallback.idl', 78 'dom/IdleRequestCallback.idl',
79 'dom/Int16Array.idl', 79 'dom/Int16Array.idl',
80 'dom/Int32Array.idl', 80 'dom/Int32Array.idl',
81 'dom/Int8Array.idl', 81 'dom/Int8Array.idl',
82 'dom/IntersectionObserver.idl',
83 'dom/IntersectionObserverEntry.idl',
82 'dom/Iterator.idl', 84 'dom/Iterator.idl',
83 'dom/MessageChannel.idl', 85 'dom/MessageChannel.idl',
84 'dom/MessagePort.idl', 86 'dom/MessagePort.idl',
85 'dom/MutationObserver.idl', 87 'dom/MutationObserver.idl',
86 'dom/MutationRecord.idl', 88 'dom/MutationRecord.idl',
87 'dom/NamedNodeMap.idl', 89 'dom/NamedNodeMap.idl',
88 'dom/Node.idl', 90 'dom/Node.idl',
89 'dom/NodeFilter.idl', 91 'dom/NodeFilter.idl',
90 'dom/NodeIterator.idl', 92 'dom/NodeIterator.idl',
91 'dom/NodeList.idl', 93 'dom/NodeList.idl',
(...skipping 2281 matching lines...) Expand 10 before | Expand all | Expand 10 after
2373 'dom/DocumentType.cpp', 2375 'dom/DocumentType.cpp',
2374 'dom/DocumentVisibilityObserver.cpp', 2376 'dom/DocumentVisibilityObserver.cpp',
2375 'dom/Element.cpp', 2377 'dom/Element.cpp',
2376 'dom/Element.h', 2378 'dom/Element.h',
2377 'dom/ElementData.cpp', 2379 'dom/ElementData.cpp',
2378 'dom/ElementData.h', 2380 'dom/ElementData.h',
2379 'dom/ElementDataCache.cpp', 2381 'dom/ElementDataCache.cpp',
2380 'dom/ElementDataCache.h', 2382 'dom/ElementDataCache.h',
2381 'dom/ElementFullscreen.cpp', 2383 'dom/ElementFullscreen.cpp',
2382 'dom/ElementFullscreen.h', 2384 'dom/ElementFullscreen.h',
2385 'dom/ElementIntersectionObserverData.cpp',
2386 'dom/ElementIntersectionObserverData.h',
2383 'dom/ElementRareData.cpp', 2387 'dom/ElementRareData.cpp',
2384 'dom/ElementRareData.h', 2388 'dom/ElementRareData.h',
2385 'dom/ElementTraversal.h', 2389 'dom/ElementTraversal.h',
2386 'dom/EmptyNodeList.cpp', 2390 'dom/EmptyNodeList.cpp',
2387 'dom/EmptyNodeList.h', 2391 'dom/EmptyNodeList.h',
2388 'dom/ExecutionContext.cpp', 2392 'dom/ExecutionContext.cpp',
2389 'dom/ExecutionContext.h', 2393 'dom/ExecutionContext.h',
2390 'dom/ExecutionContextTask.h', 2394 'dom/ExecutionContextTask.h',
2391 'dom/FirstLetterPseudoElement.cpp', 2395 'dom/FirstLetterPseudoElement.cpp',
2392 'dom/FirstLetterPseudoElement.h', 2396 'dom/FirstLetterPseudoElement.h',
2393 'dom/FlexibleArrayBufferView.h', 2397 'dom/FlexibleArrayBufferView.h',
2394 'dom/FrameRequestCallback.h', 2398 'dom/FrameRequestCallback.h',
2395 'dom/FrameRequestCallbackCollection.cpp', 2399 'dom/FrameRequestCallbackCollection.cpp',
2396 'dom/FrameRequestCallbackCollection.h', 2400 'dom/FrameRequestCallbackCollection.h',
2397 'dom/Fullscreen.cpp', 2401 'dom/Fullscreen.cpp',
2398 'dom/Fullscreen.h', 2402 'dom/Fullscreen.h',
2399 'dom/GlobalEventHandlers.h', 2403 'dom/GlobalEventHandlers.h',
2400 'dom/IconURL.cpp', 2404 'dom/IconURL.cpp',
2401 'dom/IconURL.h', 2405 'dom/IconURL.h',
2402 'dom/IdleDeadline.cpp', 2406 'dom/IdleDeadline.cpp',
2403 'dom/IdleDeadline.h', 2407 'dom/IdleDeadline.h',
2404 'dom/IdleRequestCallback.h', 2408 'dom/IdleRequestCallback.h',
2405 'dom/IdTargetObserver.cpp', 2409 'dom/IdTargetObserver.cpp',
2406 'dom/IdTargetObserver.h', 2410 'dom/IdTargetObserver.h',
2407 'dom/IdTargetObserverRegistry.cpp', 2411 'dom/IdTargetObserverRegistry.cpp',
2408 'dom/IdTargetObserverRegistry.h', 2412 'dom/IdTargetObserverRegistry.h',
2409 'dom/IgnoreDestructiveWriteCountIncrementer.h', 2413 'dom/IgnoreDestructiveWriteCountIncrementer.h',
2410 'dom/IncrementLoadEventDelayCount.cpp', 2414 'dom/IncrementLoadEventDelayCount.cpp',
2411 'dom/IncrementLoadEventDelayCount.h', 2415 'dom/IncrementLoadEventDelayCount.h',
2416 'dom/IntersectionObservation.cpp',
2417 'dom/IntersectionObservation.h',
2418 'dom/IntersectionObserver.cpp',
2419 'dom/IntersectionObserver.h',
2420 'dom/IntersectionObserverEntry.cpp',
2421 'dom/IntersectionObserverEntry.h',
2422 'dom/IntersectionObserverController.cpp',
2423 'dom/IntersectionObserverController.h',
2412 'dom/Iterator.h', 2424 'dom/Iterator.h',
2413 'dom/LayoutTreeBuilder.cpp', 2425 'dom/LayoutTreeBuilder.cpp',
2414 'dom/LayoutTreeBuilder.h', 2426 'dom/LayoutTreeBuilder.h',
2415 'dom/LayoutTreeBuilderTraversal.cpp', 2427 'dom/LayoutTreeBuilderTraversal.cpp',
2416 'dom/LayoutTreeBuilderTraversal.h', 2428 'dom/LayoutTreeBuilderTraversal.h',
2417 'dom/LiveNodeList.cpp', 2429 'dom/LiveNodeList.cpp',
2418 'dom/LiveNodeList.h', 2430 'dom/LiveNodeList.h',
2419 'dom/LiveNodeListBase.cpp', 2431 'dom/LiveNodeListBase.cpp',
2420 'dom/LiveNodeListBase.h', 2432 'dom/LiveNodeListBase.h',
2421 'dom/MainThreadTaskRunner.cpp', 2433 'dom/MainThreadTaskRunner.cpp',
(...skipping 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after
3551 ], 3563 ],
3552 'core_dictionary_idl_files': [ 3564 'core_dictionary_idl_files': [
3553 'animation/KeyframeEffectOptions.idl', 3565 'animation/KeyframeEffectOptions.idl',
3554 'animation/ComputedTimingProperties.idl', 3566 'animation/ComputedTimingProperties.idl',
3555 'css/FontFaceDescriptors.idl', 3567 'css/FontFaceDescriptors.idl',
3556 'css/FontFaceSetLoadEventInit.idl', 3568 'css/FontFaceSetLoadEventInit.idl',
3557 'css/MediaQueryListEventInit.idl', 3569 'css/MediaQueryListEventInit.idl',
3558 'dom/DOMPointInit.idl', 3570 'dom/DOMPointInit.idl',
3559 'dom/ElementRegistrationOptions.idl', 3571 'dom/ElementRegistrationOptions.idl',
3560 'dom/IdleRequestOptions.idl', 3572 'dom/IdleRequestOptions.idl',
3573 'dom/IntersectionObserverInit.idl',
3561 'dom/MutationObserverInit.idl', 3574 'dom/MutationObserverInit.idl',
3562 'dom/shadow/ShadowRootInit.idl', 3575 'dom/shadow/ShadowRootInit.idl',
3563 'dom/TouchInit.idl', 3576 'dom/TouchInit.idl',
3564 'events/AnimationEventInit.idl', 3577 'events/AnimationEventInit.idl',
3565 'events/AnimationPlayerEventInit.idl', 3578 'events/AnimationPlayerEventInit.idl',
3566 'events/ApplicationCacheErrorEventInit.idl', 3579 'events/ApplicationCacheErrorEventInit.idl',
3567 'events/AutocompleteErrorEventInit.idl', 3580 'events/AutocompleteErrorEventInit.idl',
3568 'events/CompositionEventInit.idl', 3581 'events/CompositionEventInit.idl',
3569 'events/CustomEventInit.idl', 3582 'events/CustomEventInit.idl',
3570 'events/DragEventInit.idl', 3583 'events/DragEventInit.idl',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
3609 '<(blink_core_output_dir)/css/FontFaceSetLoadEventInit.cpp', 3622 '<(blink_core_output_dir)/css/FontFaceSetLoadEventInit.cpp',
3610 '<(blink_core_output_dir)/css/FontFaceSetLoadEventInit.h', 3623 '<(blink_core_output_dir)/css/FontFaceSetLoadEventInit.h',
3611 '<(blink_core_output_dir)/css/MediaQueryListEventInit.cpp', 3624 '<(blink_core_output_dir)/css/MediaQueryListEventInit.cpp',
3612 '<(blink_core_output_dir)/css/MediaQueryListEventInit.h', 3625 '<(blink_core_output_dir)/css/MediaQueryListEventInit.h',
3613 '<(blink_core_output_dir)/dom/DOMPointInit.cpp', 3626 '<(blink_core_output_dir)/dom/DOMPointInit.cpp',
3614 '<(blink_core_output_dir)/dom/DOMPointInit.h', 3627 '<(blink_core_output_dir)/dom/DOMPointInit.h',
3615 '<(blink_core_output_dir)/dom/ElementRegistrationOptions.cpp', 3628 '<(blink_core_output_dir)/dom/ElementRegistrationOptions.cpp',
3616 '<(blink_core_output_dir)/dom/ElementRegistrationOptions.h', 3629 '<(blink_core_output_dir)/dom/ElementRegistrationOptions.h',
3617 '<(blink_core_output_dir)/dom/IdleRequestOptions.cpp', 3630 '<(blink_core_output_dir)/dom/IdleRequestOptions.cpp',
3618 '<(blink_core_output_dir)/dom/IdleRequestOptions.h', 3631 '<(blink_core_output_dir)/dom/IdleRequestOptions.h',
3632 '<(blink_core_output_dir)/dom/IntersectionObserverInit.cpp',
3633 '<(blink_core_output_dir)/dom/IntersectionObserverInit.h',
3619 '<(blink_core_output_dir)/dom/MutationObserverInit.cpp', 3634 '<(blink_core_output_dir)/dom/MutationObserverInit.cpp',
3620 '<(blink_core_output_dir)/dom/MutationObserverInit.h', 3635 '<(blink_core_output_dir)/dom/MutationObserverInit.h',
3621 '<(blink_core_output_dir)/dom/shadow/ShadowRootInit.cpp', 3636 '<(blink_core_output_dir)/dom/shadow/ShadowRootInit.cpp',
3622 '<(blink_core_output_dir)/dom/shadow/ShadowRootInit.h', 3637 '<(blink_core_output_dir)/dom/shadow/ShadowRootInit.h',
3623 '<(blink_core_output_dir)/dom/TouchInit.cpp', 3638 '<(blink_core_output_dir)/dom/TouchInit.cpp',
3624 '<(blink_core_output_dir)/dom/TouchInit.h', 3639 '<(blink_core_output_dir)/dom/TouchInit.h',
3625 '<(blink_core_output_dir)/events/AnimationEventInit.cpp', 3640 '<(blink_core_output_dir)/events/AnimationEventInit.cpp',
3626 '<(blink_core_output_dir)/events/AnimationEventInit.h', 3641 '<(blink_core_output_dir)/events/AnimationEventInit.h',
3627 '<(blink_core_output_dir)/events/AnimationPlayerEventInit.cpp', 3642 '<(blink_core_output_dir)/events/AnimationPlayerEventInit.cpp',
3628 '<(blink_core_output_dir)/events/AnimationPlayerEventInit.h', 3643 '<(blink_core_output_dir)/events/AnimationPlayerEventInit.h',
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
3955 'style/SVGComputedStyleTest.cpp', 3970 'style/SVGComputedStyleTest.cpp',
3956 'svg/SVGPathParserTest.cpp', 3971 'svg/SVGPathParserTest.cpp',
3957 'svg/UnsafeSVGAttributeSanitizationTest.cpp', 3972 'svg/UnsafeSVGAttributeSanitizationTest.cpp',
3958 'testing/PrivateScriptTestTest.cpp', 3973 'testing/PrivateScriptTestTest.cpp',
3959 'timing/MemoryInfoTest.cpp', 3974 'timing/MemoryInfoTest.cpp',
3960 'workers/WorkerThreadTest.cpp', 3975 'workers/WorkerThreadTest.cpp',
3961 'xml/parser/SharedBufferReaderTest.cpp', 3976 'xml/parser/SharedBufferReaderTest.cpp',
3962 ], 3977 ],
3963 } 3978 }
3964 } 3979 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698