| 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", | 11 "blink_features.cc", |
| 12 "blink_features.h", | 12 "blink_features.h", |
| 13 "compositor_thread_event_queue.cc", | 13 "compositor_thread_event_queue.cc", |
| 14 "compositor_thread_event_queue.h", | 14 "compositor_thread_event_queue.h", |
| 15 "did_overscroll_params.cc", | 15 "did_overscroll_params.cc", |
| 16 "did_overscroll_params.h", | 16 "did_overscroll_params.h", |
| 17 "event_with_callback.cc", | 17 "event_with_callback.cc", |
| 18 "event_with_callback.h", | 18 "event_with_callback.h", |
| 19 "input_handler_proxy.cc", | 19 "input_handler_proxy.cc", |
| 20 "input_handler_proxy.h", | 20 "input_handler_proxy.h", |
| 21 "input_handler_proxy_client.h", | 21 "input_handler_proxy_client.h", |
| 22 "input_scroll_elasticity_controller.cc", | 22 "input_scroll_elasticity_controller.cc", |
| 23 "input_scroll_elasticity_controller.h", | 23 "input_scroll_elasticity_controller.h", |
| 24 "scoped_web_input_event.cc", | |
| 25 "scoped_web_input_event.h", | |
| 26 "synchronous_input_handler_proxy.h", | 24 "synchronous_input_handler_proxy.h", |
| 27 "web_input_event.cc", | 25 "web_input_event.cc", |
| 28 "web_input_event.h", | 26 "web_input_event.h", |
| 29 "web_input_event_traits.cc", | 27 "web_input_event_traits.cc", |
| 30 "web_input_event_traits.h", | 28 "web_input_event_traits.h", |
| 31 ] | 29 ] |
| 32 | 30 |
| 33 deps = [ | 31 deps = [ |
| 34 "//cc:cc", | 32 "//cc:cc", |
| 35 "//third_party/WebKit/public:blink_minimal", | 33 "//third_party/WebKit/public:blink_minimal", |
| 36 "//ui/events", | 34 "//ui/events", |
| 37 "//ui/events:dom_keycode_converter", | 35 "//ui/events:dom_keycode_converter", |
| 38 "//ui/events:events_base", | 36 "//ui/events:events_base", |
| 39 "//ui/events:gesture_detection", | 37 "//ui/events:gesture_detection", |
| 40 "//ui/gfx", | 38 "//ui/gfx", |
| 41 "//ui/gfx/geometry", | 39 "//ui/gfx/geometry", |
| 42 ] | 40 ] |
| 43 | 41 |
| 44 if (is_win) { | 42 if (is_win) { |
| 45 sources += [ | 43 sources += [ |
| 46 "web_input_event_builders_win.cc", | 44 "web_input_event_builders_win.cc", |
| 47 "web_input_event_builders_win.h", | 45 "web_input_event_builders_win.h", |
| 48 ] | 46 ] |
| 49 deps += [ "//ui/display" ] | 47 deps += [ "//ui/display" ] |
| 50 } | 48 } |
| 51 } | 49 } |
| OLD | NEW |