| 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("input") { | 7 blink_core_sources("input") { |
| 8 sources = [ | 8 sources = [ |
| 9 "BoundaryEventDispatcher.cpp", | 9 "BoundaryEventDispatcher.cpp", |
| 10 "BoundaryEventDispatcher.h", | 10 "BoundaryEventDispatcher.h", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "PointerEventManager.cpp", | 23 "PointerEventManager.cpp", |
| 24 "PointerEventManager.h", | 24 "PointerEventManager.h", |
| 25 "ScrollManager.cpp", | 25 "ScrollManager.cpp", |
| 26 "ScrollManager.h", | 26 "ScrollManager.h", |
| 27 "TouchActionUtil.cpp", | 27 "TouchActionUtil.cpp", |
| 28 "TouchActionUtil.h", | 28 "TouchActionUtil.h", |
| 29 "TouchEventManager.cpp", | 29 "TouchEventManager.cpp", |
| 30 "TouchEventManager.h", | 30 "TouchEventManager.h", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 jumbo_excluded_sources = [ |
| 34 # Collides with BoundaryEventDispatcher.cpp (patch incoming) |
| 35 "PointerEventManager.cpp", |
| 36 ] |
| 37 |
| 33 configs += [ | 38 configs += [ |
| 34 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 39 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 35 "//build/config/compiler:no_size_t_to_int_warning", | 40 "//build/config/compiler:no_size_t_to_int_warning", |
| 36 ] | 41 ] |
| 37 } | 42 } |
| OLD | NEW |