| 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 | 6 |
| 7 static_library("dom4_keycode_converter") { | 7 static_library("dom4_keycode_converter") { |
| 8 sources = [ | 8 sources = [ |
| 9 "keycodes/dom4/keycode_converter.cc", | 9 "keycodes/dom4/keycode_converter.cc", |
| 10 "keycodes/dom4/keycode_converter.h", | 10 "keycodes/dom4/keycode_converter.h", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 "latency_info.h", | 37 "latency_info.h", |
| 38 ] | 38 ] |
| 39 | 39 |
| 40 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] | 40 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] |
| 41 | 41 |
| 42 deps = [ | 42 deps = [ |
| 43 ":dom4_keycode_converter", | 43 ":dom4_keycode_converter", |
| 44 "//base", | 44 "//base", |
| 45 "//base/third_party/dynamic_annotations", | 45 "//base/third_party/dynamic_annotations", |
| 46 "//skia", | 46 "//skia", |
| 47 "//ui/events/platform", |
| 47 "//ui/gfx", | 48 "//ui/gfx", |
| 48 "//ui/gfx/geometry", | 49 "//ui/gfx/geometry", |
| 49 ] | 50 ] |
| 50 | 51 |
| 51 if (use_x11) { | 52 if (use_x11) { |
| 52 configs += [ "//build/config/linux:x11" ] | 53 configs += [ "//build/config/linux:x11" ] |
| 53 | 54 |
| 54 sources += [ | 55 sources += [ |
| 55 "keycodes/keyboard_code_conversion_x.cc", | 56 "keycodes/keyboard_code_conversion_x.cc", |
| 56 "keycodes/keyboard_code_conversion_x.h", | 57 "keycodes/keyboard_code_conversion_x.h", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 "gestures/gesture_point.h", | 104 "gestures/gesture_point.h", |
| 104 "gestures/gesture_recognizer.h", | 105 "gestures/gesture_recognizer.h", |
| 105 "gestures/gesture_recognizer_impl.cc", | 106 "gestures/gesture_recognizer_impl.cc", |
| 106 "gestures/gesture_recognizer_impl.h", | 107 "gestures/gesture_recognizer_impl.h", |
| 107 "gestures/gesture_recognizer_impl_mac.cc", | 108 "gestures/gesture_recognizer_impl_mac.cc", |
| 108 "gestures/gesture_sequence.cc", | 109 "gestures/gesture_sequence.cc", |
| 109 "gestures/gesture_sequence.h", | 110 "gestures/gesture_sequence.h", |
| 110 "gestures/gesture_types.h", | 111 "gestures/gesture_types.h", |
| 111 "gestures/velocity_calculator.cc", | 112 "gestures/velocity_calculator.cc", |
| 112 "gestures/velocity_calculator.h", | 113 "gestures/velocity_calculator.h", |
| 113 "platform/platform_event_dispatcher.h", | |
| 114 "platform/platform_event_observer.h", | |
| 115 "platform/platform_event_source.cc", | |
| 116 "platform/platform_event_source.h", | |
| 117 "platform/platform_event_source_stub.cc", | |
| 118 "platform/platform_event_types.h", | |
| 119 "platform/scoped_event_dispatcher.cc", | |
| 120 "platform/scoped_event_dispatcher.h", | |
| 121 "platform/x11/x11_event_source.cc", | 114 "platform/x11/x11_event_source.cc", |
| 122 "platform/x11/x11_event_source.h", | 115 "platform/x11/x11_event_source.h", |
| 123 "win/events_win.cc", | 116 "win/events_win.cc", |
| 124 "x/events_x.cc", | 117 "x/events_x.cc", |
| 125 ] | 118 ] |
| 126 | 119 |
| 127 if (use_x11) { | 120 if (use_x11) { |
| 128 configs += [ | 121 configs += [ |
| 129 "//build/config/linux:glib", | 122 "//build/config/linux:glib", |
| 130 "//build/config/linux:x11", | 123 "//build/config/linux:x11", |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 ":events_base", | 302 ":events_base", |
| 310 ":events_test_support", | 303 ":events_test_support", |
| 311 ":gesture_detection", | 304 ":gesture_detection", |
| 312 "//base", | 305 "//base", |
| 313 "//base/test:run_all_unittests", | 306 "//base/test:run_all_unittests", |
| 314 "//skia", | 307 "//skia", |
| 315 "//testing/gtest", | 308 "//testing/gtest", |
| 316 "//ui/gfx:gfx_test_support", | 309 "//ui/gfx:gfx_test_support", |
| 317 ] | 310 ] |
| 318 } | 311 } |
| OLD | NEW |