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', | |
71 'x/keysym_to_unicode.cc', | 69 'x/keysym_to_unicode.cc', |
72 'x/keysym_to_unicode.h', | 70 'x/keysym_to_unicode.h', |
73 ], | 71 ], |
74 'export_dependent_settings': [ | 72 'export_dependent_settings': [ |
75 '../../ui/gfx/gfx.gyp:gfx', | 73 '../../ui/gfx/gfx.gyp:gfx', |
76 ], | 74 ], |
77 'conditions': [ | 75 'conditions': [ |
78 ['use_x11==1', { | 76 ['use_x11==1', { |
79 'dependencies': [ | 77 'dependencies': [ |
80 '../../build/linux/system.gyp:x11', | 78 '../../build/linux/system.gyp:x11', |
(...skipping 12 matching lines...) Expand all Loading... | |
93 { | 91 { |
94 # GN version: //ui/events | 92 # GN version: //ui/events |
95 'target_name': 'events', | 93 'target_name': 'events', |
96 'type': '<(component)', | 94 'type': '<(component)', |
97 'dependencies': [ | 95 'dependencies': [ |
98 '<(DEPTH)/base/base.gyp:base', | 96 '<(DEPTH)/base/base.gyp:base', |
99 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', | 97 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', |
100 '<(DEPTH)/skia/skia.gyp:skia', | 98 '<(DEPTH)/skia/skia.gyp:skia', |
101 '../gfx/gfx.gyp:gfx', | 99 '../gfx/gfx.gyp:gfx', |
102 '../gfx/gfx.gyp:gfx_geometry', | 100 '../gfx/gfx.gyp:gfx_geometry', |
101 '../latency_info/latency_info.gyp:latency_info', | |
103 'dom_keycode_converter', | 102 'dom_keycode_converter', |
104 'events_base', | 103 'events_base', |
105 'gesture_detection', | 104 'gesture_detection', |
105 | |
tdresser
2016/04/12 17:45:12
Remove blank line.
Fady Samuel
2016/04/12 19:18:04
Done.
| |
106 ], | 106 ], |
107 'defines': [ | 107 'defines': [ |
108 'EVENTS_IMPLEMENTATION', | 108 'EVENTS_IMPLEMENTATION', |
109 ], | 109 ], |
110 'sources': [ | 110 'sources': [ |
111 # Note: sources list duplicated in GN build. | 111 # Note: sources list duplicated in GN build. |
112 'cocoa/cocoa_event_utils.h', | 112 'cocoa/cocoa_event_utils.h', |
113 'cocoa/cocoa_event_utils.mm', | 113 'cocoa/cocoa_event_utils.mm', |
114 'cocoa/events_mac.mm', | 114 'cocoa/events_mac.mm', |
115 'event.cc', | 115 'event.cc', |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
294 ], | 294 ], |
295 'conditions': [ | 295 'conditions': [ |
296 ['use_aura!=1 and OS!="android"', { | 296 ['use_aura!=1 and OS!="android"', { |
297 'sources': [ | 297 'sources': [ |
298 'gesture_detection/gesture_configuration_default.cc', | 298 'gesture_detection/gesture_configuration_default.cc', |
299 ], | 299 ], |
300 }], | 300 }], |
301 ], | 301 ], |
302 }, | 302 }, |
303 { | 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 { | |
322 # GN version: //ui/events:test_support | 304 # GN version: //ui/events:test_support |
323 'target_name': 'events_test_support', | 305 'target_name': 'events_test_support', |
324 'type': 'static_library', | 306 'type': 'static_library', |
325 'dependencies': [ | 307 'dependencies': [ |
326 '<(DEPTH)/base/base.gyp:base', | 308 '<(DEPTH)/base/base.gyp:base', |
327 '<(DEPTH)/skia/skia.gyp:skia', | 309 '<(DEPTH)/skia/skia.gyp:skia', |
328 '../gfx/gfx.gyp:gfx_geometry', | 310 '../gfx/gfx.gyp:gfx_geometry', |
329 'events', | 311 'events', |
330 'events_base', | 312 'events_base', |
331 'gesture_detection', | 313 'gesture_detection', |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
395 'variables': { | 377 'variables': { |
396 'jni_gen_package': 'ui', | 378 'jni_gen_package': 'ui', |
397 'input_java_class': 'android/view/KeyEvent.class', | 379 'input_java_class': 'android/view/KeyEvent.class', |
398 }, | 380 }, |
399 'includes': [ '../../build/jar_file_jni_generator.gypi' ], | 381 'includes': [ '../../build/jar_file_jni_generator.gypi' ], |
400 }, | 382 }, |
401 ], | 383 ], |
402 }], | 384 }], |
403 ], | 385 ], |
404 } | 386 } |
OLD | NEW |