| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 source_set("blink") { | 7 source_set("blink") { |
| 8 sources = [ | 8 sources = [ |
| 9 "blink_event_util.cc", | 9 "blink_event_util.cc", |
| 10 "blink_event_util.h", | 10 "blink_event_util.h", |
| 11 "blink_features.cc", |
| 12 "blink_features.h", |
| 13 "compositor_thread_event_queue.cc", |
| 14 "compositor_thread_event_queue.h", |
| 11 "did_overscroll_params.cc", | 15 "did_overscroll_params.cc", |
| 12 "did_overscroll_params.h", | 16 "did_overscroll_params.h", |
| 17 "event_with_callback.cc", |
| 18 "event_with_callback.h", |
| 13 "input_handler_proxy.cc", | 19 "input_handler_proxy.cc", |
| 14 "input_handler_proxy.h", | 20 "input_handler_proxy.h", |
| 15 "input_handler_proxy_client.h", | 21 "input_handler_proxy_client.h", |
| 16 "input_scroll_elasticity_controller.cc", | 22 "input_scroll_elasticity_controller.cc", |
| 17 "input_scroll_elasticity_controller.h", | 23 "input_scroll_elasticity_controller.h", |
| 18 "scoped_web_input_event.cc", | 24 "scoped_web_input_event.cc", |
| 19 "scoped_web_input_event.h", | 25 "scoped_web_input_event.h", |
| 20 "synchronous_input_handler_proxy.h", | 26 "synchronous_input_handler_proxy.h", |
| 21 "web_input_event.cc", | 27 "web_input_event.cc", |
| 22 "web_input_event.h", | 28 "web_input_event.h", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 35 ] | 41 ] |
| 36 | 42 |
| 37 if (is_win) { | 43 if (is_win) { |
| 38 sources += [ | 44 sources += [ |
| 39 "web_input_event_builders_win.cc", | 45 "web_input_event_builders_win.cc", |
| 40 "web_input_event_builders_win.h", | 46 "web_input_event_builders_win.h", |
| 41 ] | 47 ] |
| 42 deps += [ "//ui/display" ] | 48 deps += [ "//ui/display" ] |
| 43 } | 49 } |
| 44 } | 50 } |
| OLD | NEW |