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

Unified Diff: Source/core/core.gypi

Issue 14110002: Introduce bindings.gyp (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address Nico's comments Created 7 years, 8 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/bindings/v8/custom/V8CSSRuleCustom.cpp ('k') | Source/core/core.gyp/core.gyp » ('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 609c089f1eb386fb728c47c0647fbf62db09d8af..028277d0982c83f3a8cb5e076e806a795ada2ecd 100644
--- a/Source/core/core.gypi
+++ b/Source/core/core.gypi
@@ -1,6 +1,6 @@
{
'variables': {
- 'webcore_bindings_idl_files': [
+ 'core_idl_files': [
'css/CSSCharsetRule.idl',
'css/CSSFontFaceLoadEvent.idl',
'css/CSSFontFaceRule.idl',
@@ -15,7 +15,9 @@
'css/CSSStyleRule.idl',
'css/CSSStyleSheet.idl',
'css/CSSSupportsRule.idl',
- 'css/CSSUnknownRule.idl',
+ # We should probably add CSSUnknownRule.idl to this list,
+ # but it currently causes a compile error.
+ # 'css/CSSUnknownRule.idl',
'css/CSSValue.idl',
'css/CSSValueList.idl',
'css/Counter.idl',
@@ -70,7 +72,6 @@
'dom/ErrorEvent.idl',
'dom/Event.idl',
'dom/EventException.idl',
- 'dom/EventListener.idl',
'dom/EventTarget.idl',
'dom/FocusEvent.idl',
'dom/HashChangeEvent.idl',
@@ -265,7 +266,6 @@
'inspector/ScriptProfile.idl',
'inspector/ScriptProfileNode.idl',
'loader/appcache/DOMApplicationCache.idl',
- 'page/AbstractView.idl',
'page/BarInfo.idl',
'page/Console.idl',
'page/Crypto.idl',
@@ -318,8 +318,7 @@
'xml/XPathResult.idl',
'xml/XSLTProcessor.idl',
],
- 'webcore_svg_bindings_idl_files': [
- 'svg/ElementTimeControl.idl',
+ 'svg_idl_files': [
'svg/SVGAElement.idl',
'svg/SVGAltGlyphElement.idl',
'svg/SVGAltGlyphItemElement.idl',
@@ -355,7 +354,6 @@
'svg/SVGElementInstanceList.idl',
'svg/SVGEllipseElement.idl',
'svg/SVGException.idl',
- 'svg/SVGExternalResourcesRequired.idl',
'svg/SVGFEBlendElement.idl',
'svg/SVGFEColorMatrixElement.idl',
'svg/SVGFEComponentTransferElement.idl',
@@ -382,8 +380,6 @@
'svg/SVGFETileElement.idl',
'svg/SVGFETurbulenceElement.idl',
'svg/SVGFilterElement.idl',
- 'svg/SVGFilterPrimitiveStandardAttributes.idl',
- 'svg/SVGFitToViewBox.idl',
'svg/SVGFontElement.idl',
'svg/SVGFontFaceElement.idl',
'svg/SVGFontFaceFormatElement.idl',
@@ -397,12 +393,10 @@
'svg/SVGGradientElement.idl',
'svg/SVGHKernElement.idl',
'svg/SVGImageElement.idl',
- 'svg/SVGLangSpace.idl',
'svg/SVGLength.idl',
'svg/SVGLengthList.idl',
'svg/SVGLineElement.idl',
'svg/SVGLinearGradientElement.idl',
- 'svg/SVGLocatable.idl',
'svg/SVGMarkerElement.idl',
'svg/SVGMaskElement.idl',
'svg/SVGMatrix.idl',
@@ -455,7 +449,6 @@
'svg/SVGSymbolElement.idl',
'svg/SVGTRefElement.idl',
'svg/SVGTSpanElement.idl',
- 'svg/SVGTests.idl',
'svg/SVGTextContentElement.idl',
'svg/SVGTextElement.idl',
'svg/SVGTextPathElement.idl',
@@ -463,7 +456,6 @@
'svg/SVGTitleElement.idl',
'svg/SVGTransform.idl',
'svg/SVGTransformList.idl',
- 'svg/SVGTransformable.idl',
blois 2013/05/28 21:03:43 I was curious about the removal of these- the IDL
'svg/SVGUnitTypes.idl',
'svg/SVGUseElement.idl',
'svg/SVGViewElement.idl',
@@ -3721,5 +3713,26 @@
'platform/chromium/support/WrappedResourceRequest.h',
'platform/chromium/support/WrappedResourceResponse.h',
],
+ 'conditions': [
+ ['OS=="win"', {
+ # Using native perl rather than cygwin perl cuts execution time
+ # of idl preprocessing rules by a bit more than 50%.
+ 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe',
+ 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe',
+ 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe',
+ # Using cl instead of cygwin gcc cuts the processing time from
+ # 1m58s to 0m52s.
+ 'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"',
+ },{
+ 'perl_exe': 'perl',
+ 'gperf_exe': 'gperf',
+ 'bison_exe': 'bison',
+ # We specify a preprocess so it happens locally and won't get
+ # distributed to goma.
+ # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
+ # use /usr/bin/clang once we require Xcode 4.x.
+ 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
+ }],
+ ],
}
}
« no previous file with comments | « Source/bindings/v8/custom/V8CSSRuleCustom.cpp ('k') | Source/core/core.gyp/core.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698