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

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

Issue 1232003009: Implement DragEvent and move MouseEvent.dataTransfer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix plugin failure of LayoutTest Created 5 years, 4 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
OLDNEW
1 { 1 {
2 'includes': [ 2 'includes': [
3 'core_generated.gypi', 3 'core_generated.gypi',
4 ], 4 ],
5 'variables': { 5 'variables': {
6 # Files for which bindings (.cpp and .h files) will be generated 6 # Files for which bindings (.cpp and .h files) will be generated
7 'core_idl_files': [ 7 'core_idl_files': [
8 'animation/KeyframeEffect.idl', 8 'animation/KeyframeEffect.idl',
9 'animation/EffectModel.idl', 9 'animation/EffectModel.idl',
10 'animation/AnimationEffectReadOnly.idl', 10 'animation/AnimationEffectReadOnly.idl',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 'dom/shadow/ShadowRoot.idl', 97 'dom/shadow/ShadowRoot.idl',
98 'editing/Selection.idl', 98 'editing/Selection.idl',
99 'events/AnimationEvent.idl', 99 'events/AnimationEvent.idl',
100 'events/AnimationPlayerEvent.idl', 100 'events/AnimationPlayerEvent.idl',
101 'events/ApplicationCacheErrorEvent.idl', 101 'events/ApplicationCacheErrorEvent.idl',
102 'events/AutocompleteErrorEvent.idl', 102 'events/AutocompleteErrorEvent.idl',
103 'events/BeforeUnloadEvent.idl', 103 'events/BeforeUnloadEvent.idl',
104 'events/ClipboardEvent.idl', 104 'events/ClipboardEvent.idl',
105 'events/CompositionEvent.idl', 105 'events/CompositionEvent.idl',
106 'events/CustomEvent.idl', 106 'events/CustomEvent.idl',
107 'events/DragEvent.idl',
107 'events/ErrorEvent.idl', 108 'events/ErrorEvent.idl',
108 'events/Event.idl', 109 'events/Event.idl',
109 'events/EventTarget.idl', 110 'events/EventTarget.idl',
110 'events/FocusEvent.idl', 111 'events/FocusEvent.idl',
111 'events/HashChangeEvent.idl', 112 'events/HashChangeEvent.idl',
112 'events/KeyboardEvent.idl', 113 'events/KeyboardEvent.idl',
113 'events/MessageEvent.idl', 114 'events/MessageEvent.idl',
114 'events/MutationEvent.idl', 115 'events/MutationEvent.idl',
115 'events/PageTransitionEvent.idl', 116 'events/PageTransitionEvent.idl',
116 'events/PointerEvent.idl', 117 'events/PointerEvent.idl',
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 'css/FontFaceSetLoadEvent.idl', 460 'css/FontFaceSetLoadEvent.idl',
460 'css/MediaQueryListEvent.idl', 461 'css/MediaQueryListEvent.idl',
461 'events/AnimationEvent.idl', 462 'events/AnimationEvent.idl',
462 'events/AnimationPlayerEvent.idl', 463 'events/AnimationPlayerEvent.idl',
463 'events/ApplicationCacheErrorEvent.idl', 464 'events/ApplicationCacheErrorEvent.idl',
464 'events/AutocompleteErrorEvent.idl', 465 'events/AutocompleteErrorEvent.idl',
465 'events/BeforeUnloadEvent.idl', 466 'events/BeforeUnloadEvent.idl',
466 'events/ClipboardEvent.idl', 467 'events/ClipboardEvent.idl',
467 'events/CompositionEvent.idl', 468 'events/CompositionEvent.idl',
468 'events/CustomEvent.idl', 469 'events/CustomEvent.idl',
470 'events/DragEvent.idl',
469 'events/ErrorEvent.idl', 471 'events/ErrorEvent.idl',
470 'events/Event.idl', 472 'events/Event.idl',
471 'events/FocusEvent.idl', 473 'events/FocusEvent.idl',
472 'events/HashChangeEvent.idl', 474 'events/HashChangeEvent.idl',
473 'events/KeyboardEvent.idl', 475 'events/KeyboardEvent.idl',
474 'events/MessageEvent.idl', 476 'events/MessageEvent.idl',
475 'events/MouseEvent.idl', 477 'events/MouseEvent.idl',
476 'events/MutationEvent.idl', 478 'events/MutationEvent.idl',
477 'events/PageTransitionEvent.idl', 479 'events/PageTransitionEvent.idl',
478 'events/PointerEvent.idl', 480 'events/PointerEvent.idl',
(...skipping 2001 matching lines...) Expand 10 before | Expand all | Expand 10 after
2480 'events/BeforeUnloadEvent.cpp', 2482 'events/BeforeUnloadEvent.cpp',
2481 'events/BeforeUnloadEvent.h', 2483 'events/BeforeUnloadEvent.h',
2482 'events/ClipboardEvent.cpp', 2484 'events/ClipboardEvent.cpp',
2483 'events/ClipboardEvent.h', 2485 'events/ClipboardEvent.h',
2484 'events/CompositionEvent.cpp', 2486 'events/CompositionEvent.cpp',
2485 'events/CompositionEvent.h', 2487 'events/CompositionEvent.h',
2486 'events/CustomEvent.cpp', 2488 'events/CustomEvent.cpp',
2487 'events/CustomEvent.h', 2489 'events/CustomEvent.h',
2488 'events/DOMWindowEventQueue.cpp', 2490 'events/DOMWindowEventQueue.cpp',
2489 'events/DOMWindowEventQueue.h', 2491 'events/DOMWindowEventQueue.h',
2492 'events/DragEvent.cpp',
2493 'events/DragEvent.h',
2490 'events/ErrorEvent.cpp', 2494 'events/ErrorEvent.cpp',
2491 'events/ErrorEvent.h', 2495 'events/ErrorEvent.h',
2492 'events/Event.cpp', 2496 'events/Event.cpp',
2493 'events/EventDispatchMediator.cpp', 2497 'events/EventDispatchMediator.cpp',
2494 'events/EventDispatchMediator.h', 2498 'events/EventDispatchMediator.h',
2495 'events/EventDispatcher.cpp', 2499 'events/EventDispatcher.cpp',
2496 'events/EventDispatcher.h', 2500 'events/EventDispatcher.h',
2497 'events/EventListenerMap.cpp', 2501 'events/EventListenerMap.cpp',
2498 'events/EventPath.cpp', 2502 'events/EventPath.cpp',
2499 'events/EventPath.h', 2503 'events/EventPath.h',
(...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after
3460 'dom/DOMPointInit.idl', 3464 'dom/DOMPointInit.idl',
3461 'dom/ElementRegistrationOptions.idl', 3465 'dom/ElementRegistrationOptions.idl',
3462 'dom/MutationObserverInit.idl', 3466 'dom/MutationObserverInit.idl',
3463 'dom/shadow/ShadowRootInit.idl', 3467 'dom/shadow/ShadowRootInit.idl',
3464 'events/AnimationEventInit.idl', 3468 'events/AnimationEventInit.idl',
3465 'events/AnimationPlayerEventInit.idl', 3469 'events/AnimationPlayerEventInit.idl',
3466 'events/ApplicationCacheErrorEventInit.idl', 3470 'events/ApplicationCacheErrorEventInit.idl',
3467 'events/AutocompleteErrorEventInit.idl', 3471 'events/AutocompleteErrorEventInit.idl',
3468 'events/CompositionEventInit.idl', 3472 'events/CompositionEventInit.idl',
3469 'events/CustomEventInit.idl', 3473 'events/CustomEventInit.idl',
3474 'events/DragEventInit.idl',
3470 'events/ErrorEventInit.idl', 3475 'events/ErrorEventInit.idl',
3471 'events/EventInit.idl', 3476 'events/EventInit.idl',
3472 'events/EventModifierInit.idl', 3477 'events/EventModifierInit.idl',
3473 'events/FocusEventInit.idl', 3478 'events/FocusEventInit.idl',
3474 'events/HashChangeEventInit.idl', 3479 'events/HashChangeEventInit.idl',
3475 'events/KeyboardEventInit.idl', 3480 'events/KeyboardEventInit.idl',
3476 'events/MessageEventInit.idl', 3481 'events/MessageEventInit.idl',
3477 'events/MouseEventInit.idl', 3482 'events/MouseEventInit.idl',
3478 'events/PageTransitionEventInit.idl', 3483 'events/PageTransitionEventInit.idl',
3479 'events/PointerEventInit.idl', 3484 'events/PointerEventInit.idl',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
3519 '<(blink_core_output_dir)/events/AnimationPlayerEventInit.cpp', 3524 '<(blink_core_output_dir)/events/AnimationPlayerEventInit.cpp',
3520 '<(blink_core_output_dir)/events/AnimationPlayerEventInit.h', 3525 '<(blink_core_output_dir)/events/AnimationPlayerEventInit.h',
3521 '<(blink_core_output_dir)/events/ApplicationCacheErrorEventInit.cpp' , 3526 '<(blink_core_output_dir)/events/ApplicationCacheErrorEventInit.cpp' ,
3522 '<(blink_core_output_dir)/events/ApplicationCacheErrorEventInit.h', 3527 '<(blink_core_output_dir)/events/ApplicationCacheErrorEventInit.h',
3523 '<(blink_core_output_dir)/events/AutocompleteErrorEventInit.cpp', 3528 '<(blink_core_output_dir)/events/AutocompleteErrorEventInit.cpp',
3524 '<(blink_core_output_dir)/events/AutocompleteErrorEventInit.h', 3529 '<(blink_core_output_dir)/events/AutocompleteErrorEventInit.h',
3525 '<(blink_core_output_dir)/events/CompositionEventInit.cpp', 3530 '<(blink_core_output_dir)/events/CompositionEventInit.cpp',
3526 '<(blink_core_output_dir)/events/CompositionEventInit.h', 3531 '<(blink_core_output_dir)/events/CompositionEventInit.h',
3527 '<(blink_core_output_dir)/events/CustomEventInit.cpp', 3532 '<(blink_core_output_dir)/events/CustomEventInit.cpp',
3528 '<(blink_core_output_dir)/events/CustomEventInit.h', 3533 '<(blink_core_output_dir)/events/CustomEventInit.h',
3534 '<(blink_core_output_dir)/events/DragEventInit.cpp',
3535 '<(blink_core_output_dir)/events/DragEventInit.h',
3529 '<(blink_core_output_dir)/events/ErrorEventInit.cpp', 3536 '<(blink_core_output_dir)/events/ErrorEventInit.cpp',
3530 '<(blink_core_output_dir)/events/ErrorEventInit.h', 3537 '<(blink_core_output_dir)/events/ErrorEventInit.h',
3531 '<(blink_core_output_dir)/events/EventInit.cpp', 3538 '<(blink_core_output_dir)/events/EventInit.cpp',
3532 '<(blink_core_output_dir)/events/EventInit.h', 3539 '<(blink_core_output_dir)/events/EventInit.h',
3533 '<(blink_core_output_dir)/events/EventModifierInit.cpp', 3540 '<(blink_core_output_dir)/events/EventModifierInit.cpp',
3534 '<(blink_core_output_dir)/events/EventModifierInit.h', 3541 '<(blink_core_output_dir)/events/EventModifierInit.h',
3535 '<(blink_core_output_dir)/events/FocusEventInit.cpp', 3542 '<(blink_core_output_dir)/events/FocusEventInit.cpp',
3536 '<(blink_core_output_dir)/events/FocusEventInit.h', 3543 '<(blink_core_output_dir)/events/FocusEventInit.h',
3537 '<(blink_core_output_dir)/events/HashChangeEventInit.cpp', 3544 '<(blink_core_output_dir)/events/HashChangeEventInit.cpp',
3538 '<(blink_core_output_dir)/events/HashChangeEventInit.h', 3545 '<(blink_core_output_dir)/events/HashChangeEventInit.h',
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
3815 'style/OutlineValueTest.cpp', 3822 'style/OutlineValueTest.cpp',
3816 'style/SVGComputedStyleTest.cpp', 3823 'style/SVGComputedStyleTest.cpp',
3817 'svg/UnsafeSVGAttributeSanitizationTest.cpp', 3824 'svg/UnsafeSVGAttributeSanitizationTest.cpp',
3818 'testing/PrivateScriptTestTest.cpp', 3825 'testing/PrivateScriptTestTest.cpp',
3819 'timing/MemoryInfoTest.cpp', 3826 'timing/MemoryInfoTest.cpp',
3820 'workers/WorkerThreadTest.cpp', 3827 'workers/WorkerThreadTest.cpp',
3821 'xml/parser/SharedBufferReaderTest.cpp', 3828 'xml/parser/SharedBufferReaderTest.cpp',
3822 ], 3829 ],
3823 } 3830 }
3824 } 3831 }
OLDNEW
« no previous file with comments | « LayoutTests/webexposed/global-interface-listing-expected.txt ('k') | Source/core/events/DragEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698