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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 "PointerEvent.h", | 77 "PointerEvent.h", |
78 "PointerEventFactory.cpp", | 78 "PointerEventFactory.cpp", |
79 "PointerEventFactory.h", | 79 "PointerEventFactory.h", |
80 "PopStateEvent.cpp", | 80 "PopStateEvent.cpp", |
81 "PopStateEvent.h", | 81 "PopStateEvent.h", |
82 "ProgressEvent.cpp", | 82 "ProgressEvent.cpp", |
83 "ProgressEvent.h", | 83 "ProgressEvent.h", |
84 "PromiseRejectionEvent.cpp", | 84 "PromiseRejectionEvent.cpp", |
85 "PromiseRejectionEvent.h", | 85 "PromiseRejectionEvent.h", |
86 "RegisteredEventListener.h", | 86 "RegisteredEventListener.h", |
87 "RelatedEvent.cpp", | |
88 "RelatedEvent.h", | |
89 "ResourceProgressEvent.cpp", | 87 "ResourceProgressEvent.cpp", |
90 "ResourceProgressEvent.h", | 88 "ResourceProgressEvent.h", |
91 "ScopedEventQueue.cpp", | 89 "ScopedEventQueue.cpp", |
92 "ScopedEventQueue.h", | 90 "ScopedEventQueue.h", |
93 "SecurityPolicyViolationEvent.cpp", | 91 "SecurityPolicyViolationEvent.cpp", |
94 "SecurityPolicyViolationEvent.h", | 92 "SecurityPolicyViolationEvent.h", |
95 "TextEvent.cpp", | 93 "TextEvent.cpp", |
96 "TextEvent.h", | 94 "TextEvent.h", |
97 "TextEventInputType.h", | 95 "TextEventInputType.h", |
98 "TouchEvent.cpp", | 96 "TouchEvent.cpp", |
(...skipping 18 matching lines...) Expand all Loading... |
117 "WheelEvent.h", | 115 "WheelEvent.h", |
118 "WindowEventContext.cpp", | 116 "WindowEventContext.cpp", |
119 "WindowEventContext.h", | 117 "WindowEventContext.h", |
120 ] | 118 ] |
121 | 119 |
122 configs += [ | 120 configs += [ |
123 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 121 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
124 "//build/config/compiler:no_size_t_to_int_warning", | 122 "//build/config/compiler:no_size_t_to_int_warning", |
125 ] | 123 ] |
126 } | 124 } |
OLD | NEW |