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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 "events_stub.cc", | 102 "events_stub.cc", |
103 "gestures/gesture_point.cc", | 103 "gestures/gesture_point.cc", |
104 "gestures/gesture_point.h", | 104 "gestures/gesture_point.h", |
105 "gestures/gesture_recognizer.h", | 105 "gestures/gesture_recognizer.h", |
106 "gestures/gesture_recognizer_impl.cc", | 106 "gestures/gesture_recognizer_impl.cc", |
107 "gestures/gesture_recognizer_impl.h", | 107 "gestures/gesture_recognizer_impl.h", |
108 "gestures/gesture_recognizer_impl_mac.cc", | 108 "gestures/gesture_recognizer_impl_mac.cc", |
109 "gestures/gesture_sequence.cc", | 109 "gestures/gesture_sequence.cc", |
110 "gestures/gesture_sequence.h", | 110 "gestures/gesture_sequence.h", |
111 "gestures/gesture_types.h", | 111 "gestures/gesture_types.h", |
| 112 "gestures/unified_gesture_detector_enabled.cc", |
| 113 "gestures/unified_gesture_detector_enabled.h", |
112 "gestures/velocity_calculator.cc", | 114 "gestures/velocity_calculator.cc", |
113 "gestures/velocity_calculator.h", | 115 "gestures/velocity_calculator.h", |
114 "platform/x11/x11_event_source.cc", | 116 "platform/x11/x11_event_source.cc", |
115 "platform/x11/x11_event_source.h", | 117 "platform/x11/x11_event_source.h", |
116 "win/events_win.cc", | 118 "win/events_win.cc", |
117 "x/events_x.cc", | 119 "x/events_x.cc", |
118 ] | 120 ] |
119 | 121 |
120 if (use_x11) { | 122 if (use_x11) { |
121 configs += [ | 123 configs += [ |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 ":events_base", | 304 ":events_base", |
303 ":events_test_support", | 305 ":events_test_support", |
304 ":gesture_detection", | 306 ":gesture_detection", |
305 "//base", | 307 "//base", |
306 "//base/test:run_all_unittests", | 308 "//base/test:run_all_unittests", |
307 "//skia", | 309 "//skia", |
308 "//testing/gtest", | 310 "//testing/gtest", |
309 "//ui/gfx:gfx_test_support", | 311 "//ui/gfx:gfx_test_support", |
310 ] | 312 ] |
311 } | 313 } |
OLD | NEW |