| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 static_library("dom4_keycode_converter") { | 8 static_library("dom_keycode_converter") { |
| 9 sources = [ | 9 sources = [ |
| 10 "keycodes/dom3/dom_code.h", | 10 "keycodes/dom/dom_code.h", |
| 11 "keycodes/dom3/dom_key.h", | 11 "keycodes/dom/dom_key.h", |
| 12 "keycodes/dom3/dom_key_data.h", | 12 "keycodes/dom/dom_key_data.h", |
| 13 "keycodes/dom4/keycode_converter.cc", | 13 "keycodes/dom/keycode_converter.cc", |
| 14 "keycodes/dom4/keycode_converter.h", | 14 "keycodes/dom/keycode_converter.h", |
| 15 "keycodes/dom4/keycode_converter_data.h", | 15 "keycodes/dom/keycode_converter_data.h", |
| 16 ] | 16 ] |
| 17 | 17 |
| 18 deps = [ | 18 deps = [ |
| 19 "//base", | 19 "//base", |
| 20 ] | 20 ] |
| 21 } | 21 } |
| 22 | 22 |
| 23 component("events_base") { | 23 component("events_base") { |
| 24 sources = [ | 24 sources = [ |
| 25 "android/scroller.cc", | 25 "android/scroller.cc", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 45 "keycodes/keyboard_code_conversion_win.cc", | 45 "keycodes/keyboard_code_conversion_win.cc", |
| 46 "keycodes/keyboard_code_conversion_win.h", | 46 "keycodes/keyboard_code_conversion_win.h", |
| 47 "keycodes/keyboard_codes.h", | 47 "keycodes/keyboard_codes.h", |
| 48 "latency_info.cc", | 48 "latency_info.cc", |
| 49 "latency_info.h", | 49 "latency_info.h", |
| 50 ] | 50 ] |
| 51 | 51 |
| 52 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] | 52 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] |
| 53 | 53 |
| 54 deps = [ | 54 deps = [ |
| 55 ":dom4_keycode_converter", | 55 ":dom_keycode_converter", |
| 56 "//base/third_party/dynamic_annotations", | 56 "//base/third_party/dynamic_annotations", |
| 57 "//skia", | 57 "//skia", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 public_deps = [ | 60 public_deps = [ |
| 61 "//base", | 61 "//base", |
| 62 "//ui/events/platform", | 62 "//ui/events/platform", |
| 63 "//ui/gfx", | 63 "//ui/gfx", |
| 64 "//ui/gfx/geometry", | 64 "//ui/gfx/geometry", |
| 65 ] | 65 ] |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 "null_event_targeter.h", | 109 "null_event_targeter.h", |
| 110 "win/events_win.cc", | 110 "win/events_win.cc", |
| 111 ] | 111 ] |
| 112 | 112 |
| 113 defines = [ "EVENTS_IMPLEMENTATION" ] | 113 defines = [ "EVENTS_IMPLEMENTATION" ] |
| 114 | 114 |
| 115 public_deps = [ | 115 public_deps = [ |
| 116 ":events_base", | 116 ":events_base", |
| 117 ] | 117 ] |
| 118 deps = [ | 118 deps = [ |
| 119 ":dom4_keycode_converter", | 119 ":dom_keycode_converter", |
| 120 ":gesture_detection", | 120 ":gesture_detection", |
| 121 "//base/third_party/dynamic_annotations", | 121 "//base/third_party/dynamic_annotations", |
| 122 "//skia", | 122 "//skia", |
| 123 "//ui/gfx", | 123 "//ui/gfx", |
| 124 "//ui/gfx/geometry", | 124 "//ui/gfx/geometry", |
| 125 ] | 125 ] |
| 126 | 126 |
| 127 if (use_x11) { | 127 if (use_x11) { |
| 128 sources += [ "x/events_x.cc" ] | 128 sources += [ "x/events_x.cc" ] |
| 129 configs += [ | 129 configs += [ |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 "gesture_detection/filtered_gesture_provider_unittest.cc", | 292 "gesture_detection/filtered_gesture_provider_unittest.cc", |
| 293 "gesture_detection/gesture_event_data_packet_unittest.cc", | 293 "gesture_detection/gesture_event_data_packet_unittest.cc", |
| 294 "gesture_detection/gesture_provider_unittest.cc", | 294 "gesture_detection/gesture_provider_unittest.cc", |
| 295 "gesture_detection/motion_event_buffer_unittest.cc", | 295 "gesture_detection/motion_event_buffer_unittest.cc", |
| 296 "gesture_detection/motion_event_generic_unittest.cc", | 296 "gesture_detection/motion_event_generic_unittest.cc", |
| 297 "gesture_detection/snap_scroll_controller_unittest.cc", | 297 "gesture_detection/snap_scroll_controller_unittest.cc", |
| 298 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", | 298 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", |
| 299 "gesture_detection/velocity_tracker_unittest.cc", | 299 "gesture_detection/velocity_tracker_unittest.cc", |
| 300 "gestures/blink/web_gesture_curve_impl_unittest.cc", | 300 "gestures/blink/web_gesture_curve_impl_unittest.cc", |
| 301 "gestures/fling_curve_unittest.cc", | 301 "gestures/fling_curve_unittest.cc", |
| 302 "keycodes/dom4/keycode_converter_unittest.cc", | 302 "keycodes/dom/keycode_converter_unittest.cc", |
| 303 "keycodes/keyboard_code_conversion_unittest.cc", | 303 "keycodes/keyboard_code_conversion_unittest.cc", |
| 304 "latency_info_unittest.cc", | 304 "latency_info_unittest.cc", |
| 305 "platform/platform_event_source_unittest.cc", | 305 "platform/platform_event_source_unittest.cc", |
| 306 "x/events_x_unittest.cc", | 306 "x/events_x_unittest.cc", |
| 307 ] | 307 ] |
| 308 | 308 |
| 309 deps = [ | 309 deps = [ |
| 310 ":dom4_keycode_converter", | 310 ":dom_keycode_converter", |
| 311 ":events", | 311 ":events", |
| 312 ":events_base", | 312 ":events_base", |
| 313 ":gesture_detection", | 313 ":gesture_detection", |
| 314 ":test_support", | 314 ":test_support", |
| 315 "//base", | 315 "//base", |
| 316 "//base/test:run_all_unittests", | 316 "//base/test:run_all_unittests", |
| 317 "//skia", | 317 "//skia", |
| 318 "//testing/gtest", | 318 "//testing/gtest", |
| 319 "//third_party/WebKit/public:blink_headers", | 319 "//third_party/WebKit/public:blink_headers", |
| 320 "//ui/events/devices", | 320 "//ui/events/devices", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 if (is_nacl) { | 363 if (is_nacl) { |
| 364 source_set("latency_info") { | 364 source_set("latency_info") { |
| 365 sources = [ | 365 sources = [ |
| 366 "ipc/latency_info_param_traits.cc", | 366 "ipc/latency_info_param_traits.cc", |
| 367 "ipc/latency_info_param_traits.h", | 367 "ipc/latency_info_param_traits.h", |
| 368 "latency_info.cc", | 368 "latency_info.cc", |
| 369 "latency_info.h", | 369 "latency_info.h", |
| 370 ] | 370 ] |
| 371 } | 371 } |
| 372 } | 372 } |
| OLD | NEW |