| 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 "AddEventListenerOptionsResolved.cpp", | 10 "AddEventListenerOptionsResolved.cpp", |
| 10 "AddEventListenerOptionsResolved.h", | 11 "AddEventListenerOptionsResolved.h", |
| 11 "AnimationEvent.cpp", | 12 "AnimationEvent.cpp", |
| 12 "AnimationEvent.h", | 13 "AnimationEvent.h", |
| 13 "AnimationPlaybackEvent.cpp", | 14 "AnimationPlaybackEvent.cpp", |
| 14 "AnimationPlaybackEvent.h", | 15 "AnimationPlaybackEvent.h", |
| 15 "ApplicationCacheErrorEvent.cpp", | 16 "ApplicationCacheErrorEvent.cpp", |
| 16 "ApplicationCacheErrorEvent.h", | 17 "ApplicationCacheErrorEvent.h", |
| 17 "BeforeTextInsertedEvent.cpp", | 18 "BeforeTextInsertedEvent.cpp", |
| 18 "BeforeTextInsertedEvent.h", | 19 "BeforeTextInsertedEvent.h", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 "PointerEvent.cpp", | 72 "PointerEvent.cpp", |
| 72 "PointerEvent.h", | 73 "PointerEvent.h", |
| 73 "PointerEventFactory.cpp", | 74 "PointerEventFactory.cpp", |
| 74 "PointerEventFactory.h", | 75 "PointerEventFactory.h", |
| 75 "PopStateEvent.cpp", | 76 "PopStateEvent.cpp", |
| 76 "PopStateEvent.h", | 77 "PopStateEvent.h", |
| 77 "ProgressEvent.cpp", | 78 "ProgressEvent.cpp", |
| 78 "ProgressEvent.h", | 79 "ProgressEvent.h", |
| 79 "PromiseRejectionEvent.cpp", | 80 "PromiseRejectionEvent.cpp", |
| 80 "PromiseRejectionEvent.h", | 81 "PromiseRejectionEvent.h", |
| 82 "RegisteredEventListener.h", |
| 81 "RelatedEvent.cpp", | 83 "RelatedEvent.cpp", |
| 82 "RelatedEvent.h", | 84 "RelatedEvent.h", |
| 83 "ResourceProgressEvent.cpp", | 85 "ResourceProgressEvent.cpp", |
| 84 "ResourceProgressEvent.h", | 86 "ResourceProgressEvent.h", |
| 85 "ScopedEventQueue.cpp", | 87 "ScopedEventQueue.cpp", |
| 86 "ScopedEventQueue.h", | 88 "ScopedEventQueue.h", |
| 87 "SecurityPolicyViolationEvent.cpp", | 89 "SecurityPolicyViolationEvent.cpp", |
| 88 "SecurityPolicyViolationEvent.h", | 90 "SecurityPolicyViolationEvent.h", |
| 89 "TextEvent.cpp", | 91 "TextEvent.cpp", |
| 90 "TextEvent.h", | 92 "TextEvent.h", |
| 93 "TextEventInputType.h", |
| 91 "TouchEvent.cpp", | 94 "TouchEvent.cpp", |
| 92 "TouchEvent.h", | 95 "TouchEvent.h", |
| 93 "TouchEventContext.cpp", | 96 "TouchEventContext.cpp", |
| 94 "TouchEventContext.h", | 97 "TouchEventContext.h", |
| 95 "TransitionEvent.cpp", | 98 "TransitionEvent.cpp", |
| 96 "TransitionEvent.h", | 99 "TransitionEvent.h", |
| 97 "TreeScopeEventContext.cpp", | 100 "TreeScopeEventContext.cpp", |
| 98 "TreeScopeEventContext.h", | 101 "TreeScopeEventContext.h", |
| 99 "UIEvent.cpp", | 102 "UIEvent.cpp", |
| 100 "UIEvent.h", | 103 "UIEvent.h", |
| 101 "UIEventWithKeyState.cpp", | 104 "UIEventWithKeyState.cpp", |
| 102 "UIEventWithKeyState.h", | 105 "UIEventWithKeyState.h", |
| 103 "VisualViewportResizeEvent.cpp", | 106 "VisualViewportResizeEvent.cpp", |
| 104 "VisualViewportResizeEvent.h", | 107 "VisualViewportResizeEvent.h", |
| 105 "VisualViewportScrollEvent.cpp", | 108 "VisualViewportScrollEvent.cpp", |
| 106 "VisualViewportScrollEvent.h", | 109 "VisualViewportScrollEvent.h", |
| 107 "WheelEvent.cpp", | 110 "WheelEvent.cpp", |
| 108 "WheelEvent.h", | 111 "WheelEvent.h", |
| 109 "WindowEventContext.cpp", | 112 "WindowEventContext.cpp", |
| 110 "WindowEventContext.h", | 113 "WindowEventContext.h", |
| 111 ] | 114 ] |
| 112 | 115 |
| 113 configs += [ | 116 configs += [ |
| 114 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 117 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 115 "//build/config/compiler:no_size_t_to_int_warning", | 118 "//build/config/compiler:no_size_t_to_int_warning", |
| 116 ] | 119 ] |
| 117 } | 120 } |
| OLD | NEW |