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