| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//third_party/WebKit/Source/core/core.gni") | 5 import("//third_party/WebKit/Source/core/core.gni") |
| 6 | 6 |
| 7 blink_core_sources("events") { | 7 blink_core_sources("events") { |
| 8 sources = [ | 8 sources = [ |
| 9 "AddEventListenerOptionsResolved.cpp", | 9 "AddEventListenerOptionsResolved.cpp", |
| 10 "AddEventListenerOptionsResolved.h", | 10 "AddEventListenerOptionsResolved.h", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 "DragEvent.h", | 30 "DragEvent.h", |
| 31 "ErrorEvent.cpp", | 31 "ErrorEvent.cpp", |
| 32 "ErrorEvent.h", | 32 "ErrorEvent.h", |
| 33 "Event.cpp", | 33 "Event.cpp", |
| 34 "EventDispatchMediator.cpp", | 34 "EventDispatchMediator.cpp", |
| 35 "EventDispatchMediator.h", | 35 "EventDispatchMediator.h", |
| 36 "EventDispatchResult.h", | 36 "EventDispatchResult.h", |
| 37 "EventDispatcher.cpp", | 37 "EventDispatcher.cpp", |
| 38 "EventDispatcher.h", | 38 "EventDispatcher.h", |
| 39 "EventListenerMap.cpp", | 39 "EventListenerMap.cpp", |
| 40 "EventListenerMap.h", |
| 40 "EventPath.cpp", | 41 "EventPath.cpp", |
| 41 "EventPath.h", | 42 "EventPath.h", |
| 42 "EventQueue.h", | 43 "EventQueue.h", |
| 43 "EventSender.h", | 44 "EventSender.h", |
| 44 "EventTarget.cpp", | 45 "EventTarget.cpp", |
| 45 "EventTarget.h", | 46 "EventTarget.h", |
| 46 "EventUtil.cpp", | 47 "EventUtil.cpp", |
| 47 "EventUtil.h", | 48 "EventUtil.h", |
| 48 "FocusEvent.cpp", | 49 "FocusEvent.cpp", |
| 49 "FocusEvent.h", | 50 "FocusEvent.h", |
| 50 "GenericEventQueue.cpp", | 51 "GenericEventQueue.cpp", |
| 51 "GenericEventQueue.h", | 52 "GenericEventQueue.h", |
| 52 "GestureEvent.cpp", | 53 "GestureEvent.cpp", |
| 53 "GestureEvent.h", | 54 "GestureEvent.h", |
| 54 "HashChangeEvent.h", | 55 "HashChangeEvent.h", |
| 55 "InputEvent.cpp", | 56 "InputEvent.cpp", |
| 56 "InputEvent.h", | 57 "InputEvent.h", |
| 57 "KeyboardEvent.cpp", | 58 "KeyboardEvent.cpp", |
| 58 "MessageEvent.cpp", | 59 "MessageEvent.cpp", |
| 59 "MessageEvent.h", | 60 "MessageEvent.h", |
| 60 "MouseEvent.cpp", | 61 "MouseEvent.cpp", |
| 62 "MouseEvent.h", |
| 61 "MutationEvent.cpp", | 63 "MutationEvent.cpp", |
| 62 "MutationEvent.h", | 64 "MutationEvent.h", |
| 63 "NavigatorEvents.cpp", | 65 "NavigatorEvents.cpp", |
| 64 "NavigatorEvents.h", | 66 "NavigatorEvents.h", |
| 65 "NodeEventContext.cpp", | 67 "NodeEventContext.cpp", |
| 66 "NodeEventContext.h", | 68 "NodeEventContext.h", |
| 67 "PageTransitionEvent.cpp", | 69 "PageTransitionEvent.cpp", |
| 68 "PageTransitionEvent.h", | 70 "PageTransitionEvent.h", |
| 69 "PointerEvent.cpp", | 71 "PointerEvent.cpp", |
| 70 "PointerEvent.h", | 72 "PointerEvent.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 88 "TextEvent.h", | 90 "TextEvent.h", |
| 89 "TouchEvent.cpp", | 91 "TouchEvent.cpp", |
| 90 "TouchEvent.h", | 92 "TouchEvent.h", |
| 91 "TouchEventContext.cpp", | 93 "TouchEventContext.cpp", |
| 92 "TouchEventContext.h", | 94 "TouchEventContext.h", |
| 93 "TransitionEvent.cpp", | 95 "TransitionEvent.cpp", |
| 94 "TransitionEvent.h", | 96 "TransitionEvent.h", |
| 95 "TreeScopeEventContext.cpp", | 97 "TreeScopeEventContext.cpp", |
| 96 "TreeScopeEventContext.h", | 98 "TreeScopeEventContext.h", |
| 97 "UIEvent.cpp", | 99 "UIEvent.cpp", |
| 100 "UIEvent.h", |
| 98 "UIEventWithKeyState.cpp", | 101 "UIEventWithKeyState.cpp", |
| 102 "UIEventWithKeyState.h", |
| 99 "VisualViewportResizeEvent.cpp", | 103 "VisualViewportResizeEvent.cpp", |
| 100 "VisualViewportResizeEvent.h", | 104 "VisualViewportResizeEvent.h", |
| 101 "VisualViewportScrollEvent.cpp", | 105 "VisualViewportScrollEvent.cpp", |
| 102 "VisualViewportScrollEvent.h", | 106 "VisualViewportScrollEvent.h", |
| 103 "WheelEvent.cpp", | 107 "WheelEvent.cpp", |
| 104 "WheelEvent.h", | 108 "WheelEvent.h", |
| 105 "WindowEventContext.cpp", | 109 "WindowEventContext.cpp", |
| 106 "WindowEventContext.h", | 110 "WindowEventContext.h", |
| 107 ] | 111 ] |
| 108 | 112 |
| 109 configs += [ | 113 configs += [ |
| 110 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 114 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 111 "//build/config/compiler:no_size_t_to_int_warning", | 115 "//build/config/compiler:no_size_t_to_int_warning", |
| 112 ] | 116 ] |
| 113 } | 117 } |
| OLD | NEW |