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

Unified 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: Fix rootMargin parsing 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/core.gypi
diff --git a/third_party/WebKit/Source/core/core.gypi b/third_party/WebKit/Source/core/core.gypi
index 0b71a481235ee76fa7411918d28d5834e1382666..d6598cb16819ab2adcf7722e83feba1786572516 100644
--- a/third_party/WebKit/Source/core/core.gypi
+++ b/third_party/WebKit/Source/core/core.gypi
@@ -78,6 +78,8 @@
'dom/Int16Array.idl',
'dom/Int32Array.idl',
'dom/Int8Array.idl',
+ 'dom/IntersectionObserver.idl',
+ 'dom/IntersectionObserverEntry.idl',
'dom/Iterator.idl',
'dom/MessageChannel.idl',
'dom/MessagePort.idl',
@@ -2401,6 +2403,14 @@
'dom/IgnoreDestructiveWriteCountIncrementer.h',
'dom/IncrementLoadEventDelayCount.cpp',
'dom/IncrementLoadEventDelayCount.h',
+ 'dom/IntersectionObservation.cpp',
+ 'dom/IntersectionObservation.h',
+ 'dom/IntersectionObserver.cpp',
+ 'dom/IntersectionObserver.h',
+ 'dom/IntersectionObserverEntry.cpp',
+ 'dom/IntersectionObserverEntry.h',
+ 'dom/IntersectionObserverRegistry.cpp',
+ 'dom/IntersectionObserverRegistry.h',
'dom/Iterator.h',
'dom/LayoutTreeBuilder.cpp',
'dom/LayoutTreeBuilder.h',
@@ -3548,6 +3558,7 @@
'dom/DOMPointInit.idl',
'dom/ElementRegistrationOptions.idl',
'dom/IdleRequestOptions.idl',
+ 'dom/IntersectionObserverInit.idl',
'dom/MutationObserverInit.idl',
'dom/shadow/ShadowRootInit.idl',
'dom/TouchInit.idl',
@@ -3606,6 +3617,8 @@
'<(blink_core_output_dir)/dom/ElementRegistrationOptions.h',
'<(blink_core_output_dir)/dom/IdleRequestOptions.cpp',
'<(blink_core_output_dir)/dom/IdleRequestOptions.h',
+ '<(blink_core_output_dir)/dom/IntersectionObserverInit.cpp',
+ '<(blink_core_output_dir)/dom/IntersectionObserverInit.h',
'<(blink_core_output_dir)/dom/MutationObserverInit.cpp',
'<(blink_core_output_dir)/dom/MutationObserverInit.h',
'<(blink_core_output_dir)/dom/shadow/ShadowRootInit.cpp',

Powered by Google App Engine
This is Rietveld 408576698