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

Side by Side Diff: Source/core/core.gypi

Issue 212983010: Make EventInterfaces.in build step not depend on bindings generation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Reorder Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 # Files for which bindings (.cpp and .h files) will be generated 3 # Files for which bindings (.cpp and .h files) will be generated
4 'core_idl_files': [ 4 'core_idl_files': [
5 'animation/Animation.idl', 5 'animation/Animation.idl',
6 'animation/AnimationPlayer.idl', 6 'animation/AnimationPlayer.idl',
7 'animation/TimedItem.idl', 7 'animation/TimedItem.idl',
8 'animation/Timeline.idl', 8 'animation/Timeline.idl',
9 'animation/Timing.idl', 9 'animation/Timing.idl',
10 'clipboard/DataTransfer.idl', 10 'clipboard/DataTransfer.idl',
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 'page/WindowPagePopup.idl', 467 'page/WindowPagePopup.idl',
468 'svg/SVGDocument.idl', 468 'svg/SVGDocument.idl',
469 'svg/SVGFilterPrimitiveStandardAttributes.idl', 469 'svg/SVGFilterPrimitiveStandardAttributes.idl',
470 'svg/SVGFitToViewBox.idl', 470 'svg/SVGFitToViewBox.idl',
471 'svg/SVGTests.idl', 471 'svg/SVGTests.idl',
472 'svg/SVGURIReference.idl', 472 'svg/SVGURIReference.idl',
473 'svg/SVGZoomAndPan.idl', 473 'svg/SVGZoomAndPan.idl',
474 'workers/AbstractWorker.idl', 474 'workers/AbstractWorker.idl',
475 'xml/DocumentXPathEvaluator.idl', 475 'xml/DocumentXPathEvaluator.idl',
476 ], 476 ],
477 # interfaces that inherit from Event, including Event itself
478 'core_event_idl_files': [
479 'css/CSSFontFaceLoadEvent.idl',
480 'events/ApplicationCacheErrorEvent.idl',
481 'events/AutocompleteErrorEvent.idl',
482 'events/BeforeUnloadEvent.idl',
483 'events/CompositionEvent.idl',
484 'events/CustomEvent.idl',
485 'events/ErrorEvent.idl',
486 'events/Event.idl',
487 'events/FocusEvent.idl',
488 'events/HashChangeEvent.idl',
489 'events/KeyboardEvent.idl',
490 'events/MessageEvent.idl',
491 'events/MouseEvent.idl',
492 'events/MutationEvent.idl',
493 'events/OverflowEvent.idl',
494 'events/PageTransitionEvent.idl',
495 'events/PopStateEvent.idl',
496 'events/ProgressEvent.idl',
497 'events/ResourceProgressEvent.idl',
498 'events/SecurityPolicyViolationEvent.idl',
499 'events/TextEvent.idl',
500 'events/TouchEvent.idl',
501 'events/TransitionEvent.idl',
502 'events/UIEvent.idl',
503 'events/WebKitAnimationEvent.idl',
504 'events/WheelEvent.idl',
505 'html/MediaKeyEvent.idl',
506 'html/canvas/WebGLContextEvent.idl',
507 'html/track/TrackEvent.idl',
508 'speech/SpeechInputEvent.idl',
509 'storage/StorageEvent.idl',
510 'svg/SVGZoomEvent.idl',
511 'xml/XMLHttpRequestProgressEvent.idl',
512 ],
477 'webcore_files': [ 513 'webcore_files': [
478 'Init.cpp', 514 'Init.cpp',
479 'Init.h', 515 'Init.h',
480 'accessibility/AXObjectCache.cpp', 516 'accessibility/AXObjectCache.cpp',
481 'accessibility/AXARIAGrid.cpp', 517 'accessibility/AXARIAGrid.cpp',
482 'accessibility/AXARIAGrid.h', 518 'accessibility/AXARIAGrid.h',
483 'accessibility/AXARIAGridCell.cpp', 519 'accessibility/AXARIAGridCell.cpp',
484 'accessibility/AXARIAGridCell.h', 520 'accessibility/AXARIAGridCell.h',
485 'accessibility/AXARIAGridRow.cpp', 521 'accessibility/AXARIAGridRow.cpp',
486 'accessibility/AXARIAGridRow.h', 522 'accessibility/AXARIAGridRow.h',
(...skipping 2840 matching lines...) Expand 10 before | Expand all | Expand 10 after
3327 'html/track/vtt/BufferedLineReaderTest.cpp', 3363 'html/track/vtt/BufferedLineReaderTest.cpp',
3328 'html/track/vtt/VTTScannerTest.cpp', 3364 'html/track/vtt/VTTScannerTest.cpp',
3329 'rendering/RenderOverflowTest.cpp', 3365 'rendering/RenderOverflowTest.cpp',
3330 'rendering/shapes/BoxShapeTest.cpp', 3366 'rendering/shapes/BoxShapeTest.cpp',
3331 'testing/UnitTestHelpers.cpp', 3367 'testing/UnitTestHelpers.cpp',
3332 'testing/UnitTestHelpers.h', 3368 'testing/UnitTestHelpers.h',
3333 'xml/parser/SharedBufferReaderTest.cpp', 3369 'xml/parser/SharedBufferReaderTest.cpp',
3334 ], 3370 ],
3335 } 3371 }
3336 } 3372 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698