OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("web_input") { |
| 6 sources = [ |
| 7 "input_handler_proxy.cc", |
| 8 "input_handler_proxy.h", |
| 9 "input_handler_proxy_client.h", |
| 10 "input_scroll_elasticity_controller.cc", |
| 11 "input_scroll_elasticity_controller.h", |
| 12 "synchronous_input_handler_proxy.h", |
| 13 ] |
| 14 |
| 15 deps = [ |
| 16 "//base", |
| 17 "//cc:cc", |
| 18 "//third_party/WebKit/public:blink_headers", |
| 19 "//ui/events:events_base", |
| 20 "//ui/gfx", |
| 21 ] |
| 22 } |
| 23 |
| 24 source_set("unit_tests") { |
| 25 testonly = true |
| 26 sources = [ |
| 27 "input_handler_proxy_unittest.cc", |
| 28 "input_scroll_elasticity_controller_unittest.cc", |
| 29 ] |
| 30 |
| 31 deps = [ |
| 32 ":web_input", |
| 33 "//testing/gmock", |
| 34 "//testing/gtest", |
| 35 ] |
| 36 } |
OLD | NEW |