| Index: third_party/WebKit/Source/core/input/BUILD.gn
|
| diff --git a/third_party/WebKit/Source/core/input/BUILD.gn b/third_party/WebKit/Source/core/input/BUILD.gn
|
| index e863999060a013b350e0db6925b3e76e2462c4a8..c90de835c5b255287581b733f30058eff63d66bf 100644
|
| --- a/third_party/WebKit/Source/core/input/BUILD.gn
|
| +++ b/third_party/WebKit/Source/core/input/BUILD.gn
|
| @@ -4,7 +4,9 @@
|
|
|
| import("//third_party/WebKit/Source/core/core.gni")
|
|
|
| -blink_core_sources("input") {
|
| +target(core_link_small_target_type, "input") {
|
| + visibility = [ "//third_party/WebKit/Source/core/*" ]
|
| +
|
| sources = [
|
| "EventHandler.cpp",
|
| "EventHandler.h",
|
| @@ -24,8 +26,14 @@
|
| "TouchEventManager.h",
|
| ]
|
|
|
| + configs -= core_config_remove
|
| + configs += core_config_add
|
| configs += [
|
| # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
|
| "//build/config/compiler:no_size_t_to_int_warning",
|
| ]
|
| +
|
| + deps = [
|
| + "//third_party/WebKit/Source/core:prerequisites",
|
| + ]
|
| }
|
|
|