OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 'event_switches.cc', | 47 'event_switches.cc', |
48 'event_switches.h', | 48 'event_switches.h', |
49 'events_base_export.h', | 49 'events_base_export.h', |
50 'gesture_curve.h', | 50 'gesture_curve.h', |
51 'gesture_event_details.cc', | 51 'gesture_event_details.cc', |
52 'gesture_event_details.h', | 52 'gesture_event_details.h', |
53 'gestures/fling_curve.cc', | 53 'gestures/fling_curve.cc', |
54 'gestures/fling_curve.h', | 54 'gestures/fling_curve.h', |
55 'gestures/gesture_configuration.cc', | 55 'gestures/gesture_configuration.cc', |
56 'gestures/gesture_configuration.h', | 56 'gestures/gesture_configuration.h', |
| 57 'input_device.cc', |
| 58 'input_device.h', |
| 59 'keyboard_device.cc', |
| 60 'keyboard_device.h', |
57 'keycodes/keyboard_code_conversion.cc', | 61 'keycodes/keyboard_code_conversion.cc', |
58 'keycodes/keyboard_code_conversion.h', | 62 'keycodes/keyboard_code_conversion.h', |
59 'keycodes/keyboard_code_conversion_android.cc', | 63 'keycodes/keyboard_code_conversion_android.cc', |
60 'keycodes/keyboard_code_conversion_android.h', | 64 'keycodes/keyboard_code_conversion_android.h', |
61 'keycodes/keyboard_code_conversion_mac.h', | 65 'keycodes/keyboard_code_conversion_mac.h', |
62 'keycodes/keyboard_code_conversion_mac.mm', | 66 'keycodes/keyboard_code_conversion_mac.mm', |
63 'keycodes/keyboard_code_conversion_win.cc', | 67 'keycodes/keyboard_code_conversion_win.cc', |
64 'keycodes/keyboard_code_conversion_win.h', | 68 'keycodes/keyboard_code_conversion_win.h', |
65 'keycodes/keyboard_code_conversion_x.cc', | 69 'keycodes/keyboard_code_conversion_x.cc', |
66 'keycodes/keyboard_code_conversion_x.h', | 70 'keycodes/keyboard_code_conversion_x.h', |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 'gesture_detection/motion_event_buffer_unittest.cc', | 326 'gesture_detection/motion_event_buffer_unittest.cc', |
323 'gesture_detection/motion_event_generic_unittest.cc', | 327 'gesture_detection/motion_event_generic_unittest.cc', |
324 'gesture_detection/touch_disposition_gesture_filter_unittest.cc', | 328 'gesture_detection/touch_disposition_gesture_filter_unittest.cc', |
325 'gesture_detection/velocity_tracker_unittest.cc', | 329 'gesture_detection/velocity_tracker_unittest.cc', |
326 'gestures/fling_curve_unittest.cc', | 330 'gestures/fling_curve_unittest.cc', |
327 'gestures/gesture_provider_aura_unittest.cc', | 331 'gestures/gesture_provider_aura_unittest.cc', |
328 'gestures/motion_event_aura_unittest.cc', | 332 'gestures/motion_event_aura_unittest.cc', |
329 'keycodes/dom4/keycode_converter_unittest.cc', | 333 'keycodes/dom4/keycode_converter_unittest.cc', |
330 'latency_info_unittest.cc', | 334 'latency_info_unittest.cc', |
331 'platform/platform_event_source_unittest.cc', | 335 'platform/platform_event_source_unittest.cc', |
| 336 'x/device_data_manager_x11_unittest.cc', |
332 'x/events_x_unittest.cc', | 337 'x/events_x_unittest.cc', |
333 ], | 338 ], |
334 'conditions': [ | 339 'conditions': [ |
335 ['use_x11==1', { | 340 ['use_x11==1', { |
336 'dependencies': [ | 341 'dependencies': [ |
337 '../../build/linux/system.gyp:x11', | 342 '../../build/linux/system.gyp:x11', |
338 '../gfx/x/gfx_x11.gyp:gfx_x11', | 343 '../gfx/x/gfx_x11.gyp:gfx_x11', |
339 ], | 344 ], |
340 }], | 345 }], |
341 ['use_ozone==1', { | 346 ['use_ozone==1', { |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 ], | 390 ], |
386 'variables': { | 391 'variables': { |
387 'test_suite_name': 'events_unittests', | 392 'test_suite_name': 'events_unittests', |
388 }, | 393 }, |
389 'includes': [ '../../build/apk_test.gypi' ], | 394 'includes': [ '../../build/apk_test.gypi' ], |
390 }, | 395 }, |
391 ], | 396 ], |
392 }], | 397 }], |
393 ], | 398 ], |
394 } | 399 } |
OLD | NEW |