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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 | 270 |
271 test("events_unittests") { | 271 test("events_unittests") { |
272 sources = [ | 272 sources = [ |
273 "cocoa/events_mac_unittest.mm", | 273 "cocoa/events_mac_unittest.mm", |
274 "event_dispatcher_unittest.cc", | 274 "event_dispatcher_unittest.cc", |
275 "event_processor_unittest.cc", | 275 "event_processor_unittest.cc", |
276 "event_rewriter_unittest.cc", | 276 "event_rewriter_unittest.cc", |
277 "event_unittest.cc", | 277 "event_unittest.cc", |
278 "gestures/velocity_calculator_unittest.cc", | 278 "gestures/velocity_calculator_unittest.cc", |
279 "gesture_detection/bitset_32_unittest.cc", | 279 "gesture_detection/bitset_32_unittest.cc", |
| 280 "gesture_detection/gesture_event_data_packet_unittest.cc", |
280 "gesture_detection/gesture_provider_unittest.cc", | 281 "gesture_detection/gesture_provider_unittest.cc", |
281 "gesture_detection/velocity_tracker_unittest.cc", | 282 "gesture_detection/velocity_tracker_unittest.cc", |
282 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", | 283 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", |
283 "keycodes/dom4/keycode_converter_unittest.cc", | 284 "keycodes/dom4/keycode_converter_unittest.cc", |
284 "latency_info_unittest.cc", | 285 "latency_info_unittest.cc", |
285 "platform/platform_event_source_unittest.cc", | 286 "platform/platform_event_source_unittest.cc", |
286 "x/events_x_unittest.cc", | 287 "x/events_x_unittest.cc", |
287 ] | 288 ] |
288 | 289 |
289 if (!use_x11) { | 290 if (!use_x11) { |
(...skipping 14 matching lines...) Expand all Loading... |
304 ":events_base", | 305 ":events_base", |
305 ":events_test_support", | 306 ":events_test_support", |
306 ":gesture_detection", | 307 ":gesture_detection", |
307 "//base", | 308 "//base", |
308 "//base/test:run_all_unittests", | 309 "//base/test:run_all_unittests", |
309 "//skia", | 310 "//skia", |
310 "//testing/gtest", | 311 "//testing/gtest", |
311 "//ui/gfx:gfx_test_support", | 312 "//ui/gfx:gfx_test_support", |
312 ] | 313 ] |
313 } | 314 } |
OLD | NEW |