| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 'event_constants.h', | 44 'event_constants.h', |
| 45 'event_switches.cc', | 45 'event_switches.cc', |
| 46 'event_switches.h', | 46 'event_switches.h', |
| 47 'events_base_export.h', | 47 'events_base_export.h', |
| 48 'gesture_event_details.cc', | 48 'gesture_event_details.cc', |
| 49 'gesture_event_details.h', | 49 'gesture_event_details.h', |
| 50 'gestures/fling_curve.cc', | 50 'gestures/fling_curve.cc', |
| 51 'gestures/fling_curve.h', | 51 'gestures/fling_curve.h', |
| 52 'gestures/gesture_configuration.cc', | 52 'gestures/gesture_configuration.cc', |
| 53 'gestures/gesture_configuration.h', | 53 'gestures/gesture_configuration.h', |
| 54 'input_device.cc', |
| 55 'input_device.h', |
| 56 'keyboard_device.cc', |
| 57 'keyboard_device.h', |
| 54 'keycodes/keyboard_code_conversion.cc', | 58 'keycodes/keyboard_code_conversion.cc', |
| 55 'keycodes/keyboard_code_conversion.h', | 59 'keycodes/keyboard_code_conversion.h', |
| 56 'keycodes/keyboard_code_conversion_android.cc', | 60 'keycodes/keyboard_code_conversion_android.cc', |
| 57 'keycodes/keyboard_code_conversion_android.h', | 61 'keycodes/keyboard_code_conversion_android.h', |
| 58 'keycodes/keyboard_code_conversion_mac.h', | 62 'keycodes/keyboard_code_conversion_mac.h', |
| 59 'keycodes/keyboard_code_conversion_mac.mm', | 63 'keycodes/keyboard_code_conversion_mac.mm', |
| 60 'keycodes/keyboard_code_conversion_win.cc', | 64 'keycodes/keyboard_code_conversion_win.cc', |
| 61 'keycodes/keyboard_code_conversion_win.h', | 65 'keycodes/keyboard_code_conversion_win.h', |
| 62 'keycodes/keyboard_code_conversion_x.cc', | 66 'keycodes/keyboard_code_conversion_x.cc', |
| 63 'keycodes/keyboard_code_conversion_x.h', | 67 'keycodes/keyboard_code_conversion_x.h', |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 'gesture_detection/motion_event_buffer_unittest.cc', | 322 'gesture_detection/motion_event_buffer_unittest.cc', |
| 319 'gesture_detection/motion_event_generic_unittest.cc', | 323 'gesture_detection/motion_event_generic_unittest.cc', |
| 320 'gesture_detection/touch_disposition_gesture_filter_unittest.cc', | 324 'gesture_detection/touch_disposition_gesture_filter_unittest.cc', |
| 321 'gesture_detection/velocity_tracker_unittest.cc', | 325 'gesture_detection/velocity_tracker_unittest.cc', |
| 322 'gestures/fling_curve_unittest.cc', | 326 'gestures/fling_curve_unittest.cc', |
| 323 'gestures/gesture_provider_aura_unittest.cc', | 327 'gestures/gesture_provider_aura_unittest.cc', |
| 324 'gestures/motion_event_aura_unittest.cc', | 328 'gestures/motion_event_aura_unittest.cc', |
| 325 'keycodes/dom4/keycode_converter_unittest.cc', | 329 'keycodes/dom4/keycode_converter_unittest.cc', |
| 326 'latency_info_unittest.cc', | 330 'latency_info_unittest.cc', |
| 327 'platform/platform_event_source_unittest.cc', | 331 'platform/platform_event_source_unittest.cc', |
| 332 'x/device_data_manager_x11_unittest.cc', |
| 328 'x/events_x_unittest.cc', | 333 'x/events_x_unittest.cc', |
| 329 ], | 334 ], |
| 330 'conditions': [ | 335 'conditions': [ |
| 331 ['use_x11==1', { | 336 ['use_x11==1', { |
| 332 'dependencies': [ | 337 'dependencies': [ |
| 333 '../../build/linux/system.gyp:x11', | 338 '../../build/linux/system.gyp:x11', |
| 334 '../gfx/x/gfx_x11.gyp:gfx_x11', | 339 '../gfx/x/gfx_x11.gyp:gfx_x11', |
| 335 ], | 340 ], |
| 336 }], | 341 }], |
| 337 ['use_ozone==1', { | 342 ['use_ozone==1', { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 ], | 386 ], |
| 382 'variables': { | 387 'variables': { |
| 383 'test_suite_name': 'events_unittests', | 388 'test_suite_name': 'events_unittests', |
| 384 }, | 389 }, |
| 385 'includes': [ '../../build/apk_test.gypi' ], | 390 'includes': [ '../../build/apk_test.gypi' ], |
| 386 }, | 391 }, |
| 387 ], | 392 ], |
| 388 }], | 393 }], |
| 389 ], | 394 ], |
| 390 } | 395 } |
| OLD | NEW |