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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 "GenericEventQueue.h", | 51 "GenericEventQueue.h", |
52 "GestureEvent.cpp", | 52 "GestureEvent.cpp", |
53 "GestureEvent.h", | 53 "GestureEvent.h", |
54 "HashChangeEvent.h", | 54 "HashChangeEvent.h", |
55 "InputEvent.cpp", | 55 "InputEvent.cpp", |
56 "InputEvent.h", | 56 "InputEvent.h", |
57 "KeyboardEvent.cpp", | 57 "KeyboardEvent.cpp", |
58 "MessageEvent.cpp", | 58 "MessageEvent.cpp", |
59 "MessageEvent.h", | 59 "MessageEvent.h", |
60 "MouseEvent.cpp", | 60 "MouseEvent.cpp", |
61 "MouseRelatedEvent.cpp", | |
62 "MutationEvent.cpp", | 61 "MutationEvent.cpp", |
63 "MutationEvent.h", | 62 "MutationEvent.h", |
64 "NavigatorEvents.cpp", | 63 "NavigatorEvents.cpp", |
65 "NavigatorEvents.h", | 64 "NavigatorEvents.h", |
66 "NodeEventContext.cpp", | 65 "NodeEventContext.cpp", |
67 "NodeEventContext.h", | 66 "NodeEventContext.h", |
68 "PageTransitionEvent.cpp", | 67 "PageTransitionEvent.cpp", |
69 "PageTransitionEvent.h", | 68 "PageTransitionEvent.h", |
70 "PointerEvent.cpp", | 69 "PointerEvent.cpp", |
71 "PointerEvent.h", | 70 "PointerEvent.h", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 "WheelEvent.h", | 104 "WheelEvent.h", |
106 "WindowEventContext.cpp", | 105 "WindowEventContext.cpp", |
107 "WindowEventContext.h", | 106 "WindowEventContext.h", |
108 ] | 107 ] |
109 | 108 |
110 configs += [ | 109 configs += [ |
111 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 110 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
112 "//build/config/compiler:no_size_t_to_int_warning", | 111 "//build/config/compiler:no_size_t_to_int_warning", |
113 ] | 112 ] |
114 } | 113 } |
OLD | NEW |