| 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 target(core_link_small_target_type, "events") { | 7 blink_core_sources("events") { |
| 8 visibility = [ "//third_party/WebKit/Source/core/*" ] | |
| 9 | |
| 10 sources = [ | 8 sources = [ |
| 11 "AddEventListenerOptionsResolved.cpp", | 9 "AddEventListenerOptionsResolved.cpp", |
| 12 "AddEventListenerOptionsResolved.h", | 10 "AddEventListenerOptionsResolved.h", |
| 13 "AnimationEvent.cpp", | 11 "AnimationEvent.cpp", |
| 14 "AnimationEvent.h", | 12 "AnimationEvent.h", |
| 15 "AnimationPlayerEvent.cpp", | 13 "AnimationPlayerEvent.cpp", |
| 16 "AnimationPlayerEvent.h", | 14 "AnimationPlayerEvent.h", |
| 17 "ApplicationCacheErrorEvent.cpp", | 15 "ApplicationCacheErrorEvent.cpp", |
| 18 "ApplicationCacheErrorEvent.h", | 16 "ApplicationCacheErrorEvent.h", |
| 19 "BeforeTextInsertedEvent.cpp", | 17 "BeforeTextInsertedEvent.cpp", |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 "VisualViewportResizeEvent.cpp", | 98 "VisualViewportResizeEvent.cpp", |
| 101 "VisualViewportResizeEvent.h", | 99 "VisualViewportResizeEvent.h", |
| 102 "VisualViewportScrollEvent.cpp", | 100 "VisualViewportScrollEvent.cpp", |
| 103 "VisualViewportScrollEvent.h", | 101 "VisualViewportScrollEvent.h", |
| 104 "WheelEvent.cpp", | 102 "WheelEvent.cpp", |
| 105 "WheelEvent.h", | 103 "WheelEvent.h", |
| 106 "WindowEventContext.cpp", | 104 "WindowEventContext.cpp", |
| 107 "WindowEventContext.h", | 105 "WindowEventContext.h", |
| 108 ] | 106 ] |
| 109 | 107 |
| 110 configs -= core_config_remove | |
| 111 configs += core_config_add | |
| 112 configs += [ | 108 configs += [ |
| 113 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 109 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 114 "//build/config/compiler:no_size_t_to_int_warning", | 110 "//build/config/compiler:no_size_t_to_int_warning", |
| 115 ] | 111 ] |
| 116 | |
| 117 deps = [ | |
| 118 "//third_party/WebKit/Source/core:prerequisites", | |
| 119 ] | |
| 120 } | 112 } |
| OLD | NEW |