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 ], |
65 'conditions': [ | 67 'conditions': [ |
66 ['use_x11==1', { | 68 ['use_x11==1', { |
67 'dependencies': [ | 69 'dependencies': [ |
68 '../../build/linux/system.gyp:x11', | 70 '../../build/linux/system.gyp:x11', |
69 '../gfx/x/gfx_x11.gyp:gfx_x11', | 71 '../gfx/x/gfx_x11.gyp:gfx_x11', |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 ], | 342 ], |
341 'variables': { | 343 'variables': { |
342 'test_suite_name': 'events_unittests', | 344 'test_suite_name': 'events_unittests', |
343 }, | 345 }, |
344 'includes': [ '../../build/apk_test.gypi' ], | 346 'includes': [ '../../build/apk_test.gypi' ], |
345 }, | 347 }, |
346 ], | 348 ], |
347 }], | 349 }], |
348 ], | 350 ], |
349 } | 351 } |
OLD | NEW |