| 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 "AddEventListenerOptionsDefaults.h", | 9 "AddEventListenerOptionsDefaults.h", |
| 10 "AddEventListenerOptionsResolved.cpp", | 10 "AddEventListenerOptionsResolved.cpp", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 "DragEvent.cpp", | 30 "DragEvent.cpp", |
| 31 "DragEvent.h", | 31 "DragEvent.h", |
| 32 "ErrorEvent.cpp", | 32 "ErrorEvent.cpp", |
| 33 "ErrorEvent.h", | 33 "ErrorEvent.h", |
| 34 "Event.cpp", | 34 "Event.cpp", |
| 35 "EventDispatchMediator.cpp", | 35 "EventDispatchMediator.cpp", |
| 36 "EventDispatchMediator.h", | 36 "EventDispatchMediator.h", |
| 37 "EventDispatchResult.h", | 37 "EventDispatchResult.h", |
| 38 "EventDispatcher.cpp", | 38 "EventDispatcher.cpp", |
| 39 "EventDispatcher.h", | 39 "EventDispatcher.h", |
| 40 "EventFactory.h", |
| 41 "EventListener.h", |
| 40 "EventListenerMap.cpp", | 42 "EventListenerMap.cpp", |
| 41 "EventListenerMap.h", | 43 "EventListenerMap.h", |
| 42 "EventPath.cpp", | 44 "EventPath.cpp", |
| 43 "EventPath.h", | 45 "EventPath.h", |
| 44 "EventQueue.h", | 46 "EventQueue.h", |
| 45 "EventSender.h", | 47 "EventSender.h", |
| 46 "EventTarget.cpp", | 48 "EventTarget.cpp", |
| 47 "EventTarget.h", | 49 "EventTarget.h", |
| 48 "EventUtil.cpp", | 50 "EventUtil.cpp", |
| 49 "EventUtil.h", | 51 "EventUtil.h", |
| 50 "FocusEvent.cpp", | 52 "FocusEvent.cpp", |
| 51 "FocusEvent.h", | 53 "FocusEvent.h", |
| 52 "GenericEventQueue.cpp", | 54 "GenericEventQueue.cpp", |
| 53 "GenericEventQueue.h", | 55 "GenericEventQueue.h", |
| 54 "GestureEvent.cpp", | 56 "GestureEvent.cpp", |
| 55 "GestureEvent.h", | 57 "GestureEvent.h", |
| 56 "HashChangeEvent.h", | 58 "HashChangeEvent.h", |
| 57 "InputEvent.cpp", | 59 "InputEvent.cpp", |
| 58 "InputEvent.h", | 60 "InputEvent.h", |
| 59 "KeyboardEvent.cpp", | 61 "KeyboardEvent.cpp", |
| 62 "KeyboardEvent.h", |
| 60 "MessageEvent.cpp", | 63 "MessageEvent.cpp", |
| 61 "MessageEvent.h", | 64 "MessageEvent.h", |
| 62 "MouseEvent.cpp", | 65 "MouseEvent.cpp", |
| 63 "MouseEvent.h", | 66 "MouseEvent.h", |
| 64 "MutationEvent.cpp", | 67 "MutationEvent.cpp", |
| 65 "MutationEvent.h", | 68 "MutationEvent.h", |
| 66 "NavigatorEvents.cpp", | 69 "NavigatorEvents.cpp", |
| 67 "NavigatorEvents.h", | 70 "NavigatorEvents.h", |
| 68 "NodeEventContext.cpp", | 71 "NodeEventContext.cpp", |
| 69 "NodeEventContext.h", | 72 "NodeEventContext.h", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "WheelEvent.h", | 114 "WheelEvent.h", |
| 112 "WindowEventContext.cpp", | 115 "WindowEventContext.cpp", |
| 113 "WindowEventContext.h", | 116 "WindowEventContext.h", |
| 114 ] | 117 ] |
| 115 | 118 |
| 116 configs += [ | 119 configs += [ |
| 117 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 120 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 118 "//build/config/compiler:no_size_t_to_int_warning", | 121 "//build/config/compiler:no_size_t_to_int_warning", |
| 119 ] | 122 ] |
| 120 } | 123 } |
| OLD | NEW |