| 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 16 matching lines...) Expand all Loading... |
| 27 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 27 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 28 '<(DEPTH)/skia/skia.gyp:skia', | 28 '<(DEPTH)/skia/skia.gyp:skia', |
| 29 '../gfx/gfx.gyp:gfx', | 29 '../gfx/gfx.gyp:gfx', |
| 30 '../gfx/gfx.gyp:gfx_geometry', | 30 '../gfx/gfx.gyp:gfx_geometry', |
| 31 'dom4_keycode_converter', | 31 'dom4_keycode_converter', |
| 32 ], | 32 ], |
| 33 'defines': [ | 33 'defines': [ |
| 34 'EVENTS_BASE_IMPLEMENTATION', | 34 'EVENTS_BASE_IMPLEMENTATION', |
| 35 ], | 35 ], |
| 36 'sources': [ | 36 'sources': [ |
| 37 'device_data_manager.cc', |
| 38 'device_data_manager.h', |
| 37 'event_constants.h', | 39 'event_constants.h', |
| 38 'event_switches.cc', | 40 'event_switches.cc', |
| 39 'event_switches.h', | 41 'event_switches.h', |
| 40 'events_base_export.h', | 42 'events_base_export.h', |
| 41 'gesture_event_details.cc', | 43 'gesture_event_details.cc', |
| 42 'gesture_event_details.h', | 44 'gesture_event_details.h', |
| 43 'gestures/gesture_configuration.cc', | 45 'gestures/gesture_configuration.cc', |
| 44 'gestures/gesture_configuration.h', | 46 'gestures/gesture_configuration.h', |
| 45 'keycodes/keyboard_code_conversion.cc', | 47 'keycodes/keyboard_code_conversion.cc', |
| 46 'keycodes/keyboard_code_conversion.h', | 48 'keycodes/keyboard_code_conversion.h', |
| 47 'keycodes/keyboard_code_conversion_android.cc', | 49 'keycodes/keyboard_code_conversion_android.cc', |
| 48 'keycodes/keyboard_code_conversion_android.h', | 50 'keycodes/keyboard_code_conversion_android.h', |
| 49 'keycodes/keyboard_code_conversion_mac.h', | 51 'keycodes/keyboard_code_conversion_mac.h', |
| 50 'keycodes/keyboard_code_conversion_mac.mm', | 52 'keycodes/keyboard_code_conversion_mac.mm', |
| 51 'keycodes/keyboard_code_conversion_win.cc', | 53 'keycodes/keyboard_code_conversion_win.cc', |
| 52 'keycodes/keyboard_code_conversion_win.h', | 54 'keycodes/keyboard_code_conversion_win.h', |
| 53 'keycodes/keyboard_code_conversion_x.cc', | 55 'keycodes/keyboard_code_conversion_x.cc', |
| 54 'keycodes/keyboard_code_conversion_x.h', | 56 'keycodes/keyboard_code_conversion_x.h', |
| 55 'keycodes/keyboard_codes.h', | 57 'keycodes/keyboard_codes.h', |
| 56 'latency_info.cc', | 58 'latency_info.cc', |
| 57 'latency_info.h', | 59 'latency_info.h', |
| 58 'x/device_data_manager.cc', | 60 'x/device_data_manager_x11.cc', |
| 59 'x/device_data_manager.h', | 61 'x/device_data_manager_x11.h', |
| 60 'x/device_list_cache_x.cc', | 62 'x/device_list_cache_x.cc', |
| 61 'x/device_list_cache_x.h', | 63 'x/device_list_cache_x.h', |
| 62 'x/touch_factory_x11.cc', | 64 'x/touch_factory_x11.cc', |
| 63 'x/touch_factory_x11.h', | 65 'x/touch_factory_x11.h', |
| 64 ], | 66 ], |
| 67 'export_dependent_settings': [ |
| 68 '../../ui/gfx/gfx.gyp:gfx', |
| 69 ], |
| 65 'conditions': [ | 70 'conditions': [ |
| 66 ['use_x11==1', { | 71 ['use_x11==1', { |
| 67 'dependencies': [ | 72 'dependencies': [ |
| 68 '../../build/linux/system.gyp:x11', | 73 '../../build/linux/system.gyp:x11', |
| 69 '../gfx/x/gfx_x11.gyp:gfx_x11', | 74 '../gfx/x/gfx_x11.gyp:gfx_x11', |
| 70 ], | 75 ], |
| 71 }], | 76 }], |
| 72 ], | 77 ], |
| 73 }, | 78 }, |
| 74 { | 79 { |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 ], | 346 ], |
| 342 'variables': { | 347 'variables': { |
| 343 'test_suite_name': 'events_unittests', | 348 'test_suite_name': 'events_unittests', |
| 344 }, | 349 }, |
| 345 'includes': [ '../../build/apk_test.gypi' ], | 350 'includes': [ '../../build/apk_test.gypi' ], |
| 346 }, | 351 }, |
| 347 ], | 352 ], |
| 348 }], | 353 }], |
| 349 ], | 354 ], |
| 350 } | 355 } |
| OLD | NEW |