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

Unified Diff: Source/core/core.gypi

Issue 1330633003: Intersection Observer first draft Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix segfault on null input. Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/core.gypi
diff --git a/Source/core/core.gypi b/Source/core/core.gypi
index 1ab726c60cbc4124d52c1b7f316ca95b5864eb8b..851f03ed4d268598e8bbb8ec5db02e2e7a7d4af7 100644
--- a/Source/core/core.gypi
+++ b/Source/core/core.gypi
@@ -74,6 +74,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',
@@ -2321,6 +2323,10 @@
'dom/IgnoreDestructiveWriteCountIncrementer.h',
'dom/IncrementLoadEventDelayCount.cpp',
'dom/IncrementLoadEventDelayCount.h',
+ 'dom/IntersectionObserver.cpp',
+ 'dom/IntersectionObserver.h',
+ 'dom/IntersectionObserverEntry.cpp',
+ 'dom/IntersectionObserverEntry.h',
'dom/Iterator.h',
'dom/LayoutTreeBuilder.cpp',
'dom/LayoutTreeBuilder.h',
@@ -3494,6 +3500,7 @@
'css/MediaQueryListEventInit.idl',
'dom/DOMPointInit.idl',
'dom/ElementRegistrationOptions.idl',
+ 'dom/IntersectionObserverInit.idl',
'dom/MutationObserverInit.idl',
'dom/shadow/ShadowRootInit.idl',
'events/AnimationEventInit.idl',
@@ -3546,6 +3553,8 @@
'<(blink_core_output_dir)/dom/DOMPointInit.h',
'<(blink_core_output_dir)/dom/ElementRegistrationOptions.cpp',
'<(blink_core_output_dir)/dom/ElementRegistrationOptions.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