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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 } | 255 } |
256 } | 256 } |
257 | 257 |
258 test("events_unittests") { | 258 test("events_unittests") { |
259 sources = [ | 259 sources = [ |
260 "cocoa/events_mac_unittest.mm", | 260 "cocoa/events_mac_unittest.mm", |
261 "event_dispatcher_unittest.cc", | 261 "event_dispatcher_unittest.cc", |
262 "event_processor_unittest.cc", | 262 "event_processor_unittest.cc", |
263 "event_rewriter_unittest.cc", | 263 "event_rewriter_unittest.cc", |
264 "event_unittest.cc", | 264 "event_unittest.cc", |
| 265 "gestures/gesture_provider_aura_unittest.cc", |
265 "gestures/velocity_calculator_unittest.cc", | 266 "gestures/velocity_calculator_unittest.cc", |
266 "gesture_detection/bitset_32_unittest.cc", | 267 "gesture_detection/bitset_32_unittest.cc", |
267 "gesture_detection/gesture_event_data_packet_unittest.cc", | 268 "gesture_detection/gesture_event_data_packet_unittest.cc", |
268 "gesture_detection/gesture_provider_unittest.cc", | 269 "gesture_detection/gesture_provider_unittest.cc", |
269 "gesture_detection/motion_event_generic_unittest.cc", | 270 "gesture_detection/motion_event_generic_unittest.cc", |
270 "gesture_detection/velocity_tracker_unittest.cc", | 271 "gesture_detection/velocity_tracker_unittest.cc", |
271 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", | 272 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", |
272 "keycodes/dom4/keycode_converter_unittest.cc", | 273 "keycodes/dom4/keycode_converter_unittest.cc", |
273 "latency_info_unittest.cc", | 274 "latency_info_unittest.cc", |
274 "platform/platform_event_source_unittest.cc", | 275 "platform/platform_event_source_unittest.cc", |
(...skipping 18 matching lines...) Expand all Loading... |
293 ":events_base", | 294 ":events_base", |
294 ":gesture_detection", | 295 ":gesture_detection", |
295 ":test_support", | 296 ":test_support", |
296 "//base", | 297 "//base", |
297 "//base/test:run_all_unittests", | 298 "//base/test:run_all_unittests", |
298 "//skia", | 299 "//skia", |
299 "//testing/gtest", | 300 "//testing/gtest", |
300 "//ui/gfx:test_support", | 301 "//ui/gfx:test_support", |
301 ] | 302 ] |
302 } | 303 } |
OLD | NEW |