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

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: Added --target-component instead of --genearte-partial 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
Index: Source/core/core.gypi
diff --git a/Source/core/core.gypi b/Source/core/core.gypi
index 1736ef903f4f183c36e41eb20db5bc3041e13c8e..65947a587c9214db0fd5fcfd48a255d5a4ecaabb 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',
@@ -91,7 +90,6 @@
'dom/Touch.idl',
'dom/TouchList.idl',
'dom/TreeWalker.idl',
- 'dom/URL.idl',
'dom/XMLDocument.idl',
'dom/shadow/ShadowRoot.idl',
'editing/Selection.idl',
@@ -135,9 +133,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',
@@ -172,7 +167,6 @@
'html/HTMLHtmlElement.idl',
'html/HTMLIFrameElement.idl',
'html/HTMLImageElement.idl',
- 'html/HTMLInputElement.idl',
'html/HTMLKeygenElement.idl',
'html/HTMLLIElement.idl',
'html/HTMLLabelElement.idl',
@@ -180,7 +174,6 @@
'html/HTMLLinkElement.idl',
'html/HTMLMapElement.idl',
'html/HTMLMarqueeElement.idl',
- 'html/HTMLMediaElement.idl',
'html/HTMLMenuElement.idl',
'html/HTMLMenuItemElement.idl',
'html/HTMLMetaElement.idl',
@@ -216,7 +209,6 @@
'html/HTMLTrackElement.idl',
'html/HTMLUListElement.idl',
'html/HTMLUnknownElement.idl',
- 'html/HTMLVideoElement.idl',
'html/ImageData.idl',
'html/MediaController.idl',
'html/MediaError.idl',
@@ -281,7 +273,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',
@@ -440,14 +431,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',
@@ -460,6 +446,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': [
@@ -3455,13 +3458,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',
],

Powered by Google App Engine
This is Rietveld 408576698