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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 } else { | 261 } else { |
262 sources -= [ | 262 sources -= [ |
263 "test/events_test_utils_x11.cc", | 263 "test/events_test_utils_x11.cc", |
264 "test/events_test_utils_x11.h", | 264 "test/events_test_utils_x11.h", |
265 ] | 265 ] |
266 } | 266 } |
267 } | 267 } |
268 | 268 |
269 test("events_unittests") { | 269 test("events_unittests") { |
270 sources = [ | 270 sources = [ |
271 "cocoa/cocoa_event_utils_unittest.mm", | 271 "cocoa/events_mac_unittest.mm", |
272 "event_dispatcher_unittest.cc", | 272 "event_dispatcher_unittest.cc", |
273 "event_processor_unittest.cc", | 273 "event_processor_unittest.cc", |
274 "event_rewriter_unittest.cc", | 274 "event_rewriter_unittest.cc", |
275 "event_unittest.cc", | 275 "event_unittest.cc", |
276 "gestures/velocity_calculator_unittest.cc", | 276 "gestures/velocity_calculator_unittest.cc", |
277 "gesture_detection/bitset_32_unittest.cc", | 277 "gesture_detection/bitset_32_unittest.cc", |
278 "gesture_detection/gesture_provider_unittest.cc", | 278 "gesture_detection/gesture_provider_unittest.cc", |
279 "gesture_detection/mock_motion_event.h", | 279 "gesture_detection/mock_motion_event.h", |
280 "gesture_detection/mock_motion_event.cc", | 280 "gesture_detection/mock_motion_event.cc", |
281 "gesture_detection/velocity_tracker_unittest.cc", | 281 "gesture_detection/velocity_tracker_unittest.cc", |
(...skipping 22 matching lines...) Expand all Loading... |
304 ":events_base", | 304 ":events_base", |
305 ":events_test_support", | 305 ":events_test_support", |
306 ":gesture_detection", | 306 ":gesture_detection", |
307 "//base", | 307 "//base", |
308 "//base/test:run_all_unittests", | 308 "//base/test:run_all_unittests", |
309 "//skia", | 309 "//skia", |
310 "//testing/gtest", | 310 "//testing/gtest", |
311 "//ui/gfx:gfx_test_support", | 311 "//ui/gfx:gfx_test_support", |
312 ] | 312 ] |
313 } | 313 } |
OLD | NEW |