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", | |
49 "EventTarget.cpp", | 48 "EventTarget.cpp", |
50 "EventTarget.h", | 49 "EventTarget.h", |
51 "EventUtil.cpp", | 50 "EventUtil.cpp", |
52 "EventUtil.h", | 51 "EventUtil.h", |
53 "FocusEvent.cpp", | 52 "FocusEvent.cpp", |
54 "FocusEvent.h", | 53 "FocusEvent.h", |
55 "GenericEventQueue.cpp", | 54 "GenericEventQueue.cpp", |
56 "GenericEventQueue.h", | 55 "GenericEventQueue.h", |
57 "GestureEvent.cpp", | 56 "GestureEvent.cpp", |
58 "GestureEvent.h", | 57 "GestureEvent.h", |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 "WheelEvent.h", | 114 "WheelEvent.h", |
116 "WindowEventContext.cpp", | 115 "WindowEventContext.cpp", |
117 "WindowEventContext.h", | 116 "WindowEventContext.h", |
118 ] | 117 ] |
119 | 118 |
120 configs += [ | 119 configs += [ |
121 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 120 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
122 "//build/config/compiler:no_size_t_to_int_warning", | 121 "//build/config/compiler:no_size_t_to_int_warning", |
123 ] | 122 ] |
124 } | 123 } |
OLD | NEW |