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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 'keycodes/keyboard_code_conversion.h', | 59 'keycodes/keyboard_code_conversion.h', |
60 'keycodes/keyboard_code_conversion_android.cc', | 60 'keycodes/keyboard_code_conversion_android.cc', |
61 'keycodes/keyboard_code_conversion_android.h', | 61 'keycodes/keyboard_code_conversion_android.h', |
62 'keycodes/keyboard_code_conversion_mac.h', | 62 'keycodes/keyboard_code_conversion_mac.h', |
63 'keycodes/keyboard_code_conversion_mac.mm', | 63 'keycodes/keyboard_code_conversion_mac.mm', |
64 'keycodes/keyboard_code_conversion_win.cc', | 64 'keycodes/keyboard_code_conversion_win.cc', |
65 'keycodes/keyboard_code_conversion_win.h', | 65 'keycodes/keyboard_code_conversion_win.h', |
66 'keycodes/keyboard_code_conversion_x.cc', | 66 'keycodes/keyboard_code_conversion_x.cc', |
67 'keycodes/keyboard_code_conversion_x.h', | 67 'keycodes/keyboard_code_conversion_x.h', |
68 'keycodes/keyboard_codes.h', | 68 'keycodes/keyboard_codes.h', |
| 69 'latency_info.cc', |
| 70 'latency_info.h', |
69 'x/keysym_to_unicode.cc', | 71 'x/keysym_to_unicode.cc', |
70 'x/keysym_to_unicode.h', | 72 'x/keysym_to_unicode.h', |
71 ], | 73 ], |
72 'export_dependent_settings': [ | 74 'export_dependent_settings': [ |
73 '../../ui/gfx/gfx.gyp:gfx', | 75 '../../ui/gfx/gfx.gyp:gfx', |
74 ], | 76 ], |
75 'conditions': [ | 77 'conditions': [ |
76 ['use_x11==1', { | 78 ['use_x11==1', { |
77 'dependencies': [ | 79 'dependencies': [ |
78 '../../build/linux/system.gyp:x11', | 80 '../../build/linux/system.gyp:x11', |
(...skipping 12 matching lines...) Expand all Loading... |
91 { | 93 { |
92 # GN version: //ui/events | 94 # GN version: //ui/events |
93 'target_name': 'events', | 95 'target_name': 'events', |
94 'type': '<(component)', | 96 'type': '<(component)', |
95 'dependencies': [ | 97 'dependencies': [ |
96 '<(DEPTH)/base/base.gyp:base', | 98 '<(DEPTH)/base/base.gyp:base', |
97 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 99 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
98 '<(DEPTH)/skia/skia.gyp:skia', | 100 '<(DEPTH)/skia/skia.gyp:skia', |
99 '../gfx/gfx.gyp:gfx', | 101 '../gfx/gfx.gyp:gfx', |
100 '../gfx/gfx.gyp:gfx_geometry', | 102 '../gfx/gfx.gyp:gfx_geometry', |
101 '../latency_info/latency_info.gyp:latency_info', | |
102 'dom_keycode_converter', | 103 'dom_keycode_converter', |
103 'events_base', | 104 'events_base', |
104 'gesture_detection', | 105 'gesture_detection', |
105 ], | 106 ], |
106 'defines': [ | 107 'defines': [ |
107 'EVENTS_IMPLEMENTATION', | 108 'EVENTS_IMPLEMENTATION', |
108 ], | 109 ], |
109 'sources': [ | 110 'sources': [ |
110 # Note: sources list duplicated in GN build. | 111 # Note: sources list duplicated in GN build. |
111 'cocoa/cocoa_event_utils.h', | 112 'cocoa/cocoa_event_utils.h', |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 ], | 294 ], |
294 'conditions': [ | 295 'conditions': [ |
295 ['use_aura!=1 and OS!="android"', { | 296 ['use_aura!=1 and OS!="android"', { |
296 'sources': [ | 297 'sources': [ |
297 'gesture_detection/gesture_configuration_default.cc', | 298 'gesture_detection/gesture_configuration_default.cc', |
298 ], | 299 ], |
299 }], | 300 }], |
300 ], | 301 ], |
301 }, | 302 }, |
302 { | 303 { |
| 304 # GN version: //ui/events/ipc:events_ipc |
| 305 'target_name': 'events_ipc', |
| 306 'type': '<(component)', |
| 307 'dependencies': [ |
| 308 '<(DEPTH)/base/base.gyp:base', |
| 309 '<(DEPTH)/ipc/ipc.gyp:ipc', |
| 310 'events_base', |
| 311 ], |
| 312 'defines': [ |
| 313 'EVENTS_IPC_IMPLEMENTATION', |
| 314 ], |
| 315 'sources': [ |
| 316 'ipc/latency_info_param_traits.cc', |
| 317 'ipc/latency_info_param_traits.h', |
| 318 'ipc/latency_info_param_traits_macros.h', |
| 319 ], |
| 320 }, |
| 321 { |
303 # GN version: //ui/events:test_support | 322 # GN version: //ui/events:test_support |
304 'target_name': 'events_test_support', | 323 'target_name': 'events_test_support', |
305 'type': 'static_library', | 324 'type': 'static_library', |
306 'dependencies': [ | 325 'dependencies': [ |
307 '<(DEPTH)/base/base.gyp:base', | 326 '<(DEPTH)/base/base.gyp:base', |
308 '<(DEPTH)/skia/skia.gyp:skia', | 327 '<(DEPTH)/skia/skia.gyp:skia', |
309 '../gfx/gfx.gyp:gfx_geometry', | 328 '../gfx/gfx.gyp:gfx_geometry', |
310 'events', | 329 'events', |
311 'events_base', | 330 'events_base', |
312 'gesture_detection', | 331 'gesture_detection', |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 'variables': { | 395 'variables': { |
377 'jni_gen_package': 'ui', | 396 'jni_gen_package': 'ui', |
378 'input_java_class': 'android/view/KeyEvent.class', | 397 'input_java_class': 'android/view/KeyEvent.class', |
379 }, | 398 }, |
380 'includes': [ '../../build/jar_file_jni_generator.gypi' ], | 399 'includes': [ '../../build/jar_file_jni_generator.gypi' ], |
381 }, | 400 }, |
382 ], | 401 ], |
383 }], | 402 }], |
384 ], | 403 ], |
385 } | 404 } |
OLD | NEW |