| 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 14 matching lines...) Expand all Loading... |
| 25 "CompositionEvent.h", | 25 "CompositionEvent.h", |
| 26 "CustomEvent.cpp", | 26 "CustomEvent.cpp", |
| 27 "CustomEvent.h", | 27 "CustomEvent.h", |
| 28 "DOMWindowEventQueue.cpp", | 28 "DOMWindowEventQueue.cpp", |
| 29 "DOMWindowEventQueue.h", | 29 "DOMWindowEventQueue.h", |
| 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 "Event.h", |
| 35 "EventDispatchMediator.cpp", | 36 "EventDispatchMediator.cpp", |
| 36 "EventDispatchMediator.h", | 37 "EventDispatchMediator.h", |
| 37 "EventDispatchResult.h", | 38 "EventDispatchResult.h", |
| 38 "EventDispatcher.cpp", | 39 "EventDispatcher.cpp", |
| 39 "EventDispatcher.h", | 40 "EventDispatcher.h", |
| 40 "EventFactory.h", | 41 "EventFactory.h", |
| 41 "EventListener.h", | 42 "EventListener.h", |
| 42 "EventListenerMap.cpp", | 43 "EventListenerMap.cpp", |
| 43 "EventListenerMap.h", | 44 "EventListenerMap.h", |
| 44 "EventPath.cpp", | 45 "EventPath.cpp", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 "WheelEvent.h", | 115 "WheelEvent.h", |
| 115 "WindowEventContext.cpp", | 116 "WindowEventContext.cpp", |
| 116 "WindowEventContext.h", | 117 "WindowEventContext.h", |
| 117 ] | 118 ] |
| 118 | 119 |
| 119 configs += [ | 120 configs += [ |
| 120 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 121 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 121 "//build/config/compiler:no_size_t_to_int_warning", | 122 "//build/config/compiler:no_size_t_to_int_warning", |
| 122 ] | 123 ] |
| 123 } | 124 } |
| OLD | NEW |