| 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 27 matching lines...) Expand all Loading... |
| 38 "EventDispatchResult.h", | 38 "EventDispatchResult.h", |
| 39 "EventDispatcher.cpp", | 39 "EventDispatcher.cpp", |
| 40 "EventDispatcher.h", | 40 "EventDispatcher.h", |
| 41 "EventFactory.h", | 41 "EventFactory.h", |
| 42 "EventListener.h", | 42 "EventListener.h", |
| 43 "EventListenerMap.cpp", | 43 "EventListenerMap.cpp", |
| 44 "EventListenerMap.h", | 44 "EventListenerMap.h", |
| 45 "EventPath.cpp", | 45 "EventPath.cpp", |
| 46 "EventPath.h", | 46 "EventPath.h", |
| 47 "EventQueue.h", | 47 "EventQueue.h", |
| 48 "EventSender.h", |
| 48 "EventTarget.cpp", | 49 "EventTarget.cpp", |
| 49 "EventTarget.h", | 50 "EventTarget.h", |
| 50 "EventUtil.cpp", | 51 "EventUtil.cpp", |
| 51 "EventUtil.h", | 52 "EventUtil.h", |
| 52 "FocusEvent.cpp", | 53 "FocusEvent.cpp", |
| 53 "FocusEvent.h", | 54 "FocusEvent.h", |
| 54 "GenericEventQueue.cpp", | 55 "GenericEventQueue.cpp", |
| 55 "GenericEventQueue.h", | 56 "GenericEventQueue.h", |
| 56 "GestureEvent.cpp", | 57 "GestureEvent.cpp", |
| 57 "GestureEvent.h", | 58 "GestureEvent.h", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "WheelEvent.h", | 117 "WheelEvent.h", |
| 117 "WindowEventContext.cpp", | 118 "WindowEventContext.cpp", |
| 118 "WindowEventContext.h", | 119 "WindowEventContext.h", |
| 119 ] | 120 ] |
| 120 | 121 |
| 121 configs += [ | 122 configs += [ |
| 122 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 123 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 123 "//build/config/compiler:no_size_t_to_int_warning", | 124 "//build/config/compiler:no_size_t_to_int_warning", |
| 124 ] | 125 ] |
| 125 } | 126 } |
| OLD | NEW |