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

Unified Diff: Source/core/core.gypi

Issue 618373003: [bindings] partial interfaces should not violate componentization (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed patch conflict Created 6 years, 2 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
« no previous file with comments | « Source/core/core.gni ('k') | Source/modules/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/core.gypi
diff --git a/Source/core/core.gypi b/Source/core/core.gypi
index 3671241f03f31af6d72cd6c0c25d95ac7f935a52..480fdd98b9bcd7da4788c8967d5b1c1f91399d1a 100644
--- a/Source/core/core.gypi
+++ b/Source/core/core.gypi
@@ -12,7 +12,6 @@
'animation/AnimationTimeline.idl',
'animation/Timing.idl',
'clipboard/DataTransfer.idl',
- 'clipboard/DataTransferItem.idl',
'clipboard/DataTransferItemList.idl',
'css/CSS.idl',
'css/CSSCharsetRule.idl',
@@ -99,7 +98,6 @@
'dom/Touch.idl',
'dom/TouchList.idl',
'dom/TreeWalker.idl',
- 'dom/URL.idl',
'dom/Uint16Array.idl',
'dom/Uint32Array.idl',
'dom/Uint8Array.idl',
@@ -147,9 +145,6 @@
'frame/History.idl',
'frame/ImageBitmap.idl',
'frame/Location.idl',
- 'frame/Navigator.idl',
- 'frame/Screen.idl',
- 'frame/Window.idl',
'html/FormData.idl',
'html/HTMLAllCollection.idl',
'html/HTMLAnchorElement.idl',
@@ -184,7 +179,6 @@
'html/HTMLHtmlElement.idl',
'html/HTMLIFrameElement.idl',
'html/HTMLImageElement.idl',
- 'html/HTMLInputElement.idl',
'html/HTMLKeygenElement.idl',
'html/HTMLLIElement.idl',
'html/HTMLLabelElement.idl',
@@ -192,7 +186,6 @@
'html/HTMLLinkElement.idl',
'html/HTMLMapElement.idl',
'html/HTMLMarqueeElement.idl',
- 'html/HTMLMediaElement.idl',
'html/HTMLMenuElement.idl',
'html/HTMLMenuItemElement.idl',
'html/HTMLMetaElement.idl',
@@ -228,7 +221,6 @@
'html/HTMLTrackElement.idl',
'html/HTMLUListElement.idl',
'html/HTMLUnknownElement.idl',
- 'html/HTMLVideoElement.idl',
'html/ImageData.idl',
'html/MediaController.idl',
'html/MediaError.idl',
@@ -293,7 +285,6 @@
'html/track/vtt/VTTRegion.idl',
'html/track/vtt/VTTRegionList.idl',
'inspector/InjectedScriptHost.idl',
- 'inspector/InspectorFrontendHost.idl',
'inspector/InspectorOverlayHost.idl',
'inspector/JavaScriptCallFrame.idl',
'loader/appcache/ApplicationCache.idl',
@@ -452,14 +443,9 @@
'timing/PerformanceNavigation.idl',
'timing/PerformanceResourceTiming.idl',
'timing/PerformanceTiming.idl',
- 'workers/DedicatedWorkerGlobalScope.idl',
- 'workers/SharedWorker.idl',
- 'workers/SharedWorkerGlobalScope.idl',
'workers/Worker.idl',
'workers/WorkerConsole.idl',
- 'workers/WorkerGlobalScope.idl',
'workers/WorkerLocation.idl',
- 'workers/WorkerNavigator.idl',
'xml/DOMParser.idl',
'xml/XMLHttpRequest.idl',
'xml/XMLHttpRequestEventTarget.idl',
@@ -472,6 +458,23 @@
'xml/XPathResult.idl',
'xml/XSLTProcessor.idl',
],
+ # core IDL files that have partial interfaces in modules.
+ 'core_idl_with_modules_dependency_files': [
+ 'clipboard/DataTransferItem.idl',
+ 'dom/URL.idl',
+ 'frame/Navigator.idl',
+ 'frame/Screen.idl',
+ 'frame/Window.idl',
+ 'html/HTMLInputElement.idl',
+ 'html/HTMLMediaElement.idl',
+ 'html/HTMLVideoElement.idl',
+ 'inspector/InspectorFrontendHost.idl',
+ 'workers/DedicatedWorkerGlobalScope.idl',
+ 'workers/SharedWorker.idl',
+ 'workers/SharedWorkerGlobalScope.idl',
+ 'workers/WorkerGlobalScope.idl',
+ 'workers/WorkerNavigator.idl',
+ ],
# 'partial interface', target (right side of) 'implements', and
# interfaces with static bindings (in bindings/core/v8/)
'core_dependency_idl_files': [
@@ -3486,13 +3489,16 @@
'testing/GCObservation.idl',
'testing/InternalProfilers.idl',
'testing/InternalSettings.idl',
- 'testing/Internals.idl',
'testing/LayerRect.idl',
'testing/LayerRectList.idl',
'testing/PrivateScriptTest.idl',
'testing/RefCountedScriptWrappable.idl',
'testing/TypeConversions.idl',
],
+ # testing IDL files that have partial interfaces in modules.
+ 'webcore_testing_idl_with_modules_dependency_files': [
+ 'testing/Internals.idl',
+ ],
'webcore_testing_dependency_idl_files': [
'testing/PartialPrivateScriptTest.idl',
],
« no previous file with comments | « Source/core/core.gni ('k') | Source/modules/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698