| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 'keycodes/dom_us_layout_data.h', | 57 'keycodes/dom_us_layout_data.h', |
| 58 'keycodes/keyboard_code_conversion.cc', | 58 'keycodes/keyboard_code_conversion.cc', |
| 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_codes.h', | 66 'keycodes/keyboard_codes.h', |
| 67 'latency_info.cc', | |
| 68 'latency_info.h', | |
| 69 ], | 67 ], |
| 70 'export_dependent_settings': [ | 68 'export_dependent_settings': [ |
| 71 '../../ui/gfx/gfx.gyp:gfx', | 69 '../../ui/gfx/gfx.gyp:gfx', |
| 72 ], | 70 ], |
| 73 'conditions': [ | 71 'conditions': [ |
| 74 ['use_x11==1', { | 72 ['use_x11==1', { |
| 75 'dependencies': [ | 73 'dependencies': [ |
| 76 'keycodes/events_keycodes.gyp:keycodes_x11', | 74 'keycodes/events_keycodes.gyp:keycodes_x11', |
| 77 ], | 75 ], |
| 78 }], | 76 }], |
| 79 ], | 77 ], |
| 80 }, | 78 }, |
| 81 { | 79 { |
| 82 # GN version: //ui/events | 80 # GN version: //ui/events |
| 83 'target_name': 'events', | 81 'target_name': 'events', |
| 84 'type': '<(component)', | 82 'type': '<(component)', |
| 85 'dependencies': [ | 83 'dependencies': [ |
| 86 '<(DEPTH)/base/base.gyp:base', | 84 '<(DEPTH)/base/base.gyp:base', |
| 87 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 85 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 88 '<(DEPTH)/skia/skia.gyp:skia', | 86 '<(DEPTH)/skia/skia.gyp:skia', |
| 89 '../display/display.gyp:display', | 87 '../display/display.gyp:display', |
| 90 '../gfx/gfx.gyp:gfx', | 88 '../gfx/gfx.gyp:gfx', |
| 91 '../gfx/gfx.gyp:gfx_geometry', | 89 '../gfx/gfx.gyp:gfx_geometry', |
| 90 "../latency_info/latency_info.gyp:latency_info", |
| 92 'dom_keycode_converter', | 91 'dom_keycode_converter', |
| 93 'events_base', | 92 'events_base', |
| 94 'gesture_detection', | 93 'gesture_detection', |
| 95 ], | 94 ], |
| 96 'defines': [ | 95 'defines': [ |
| 97 'EVENTS_IMPLEMENTATION', | 96 'EVENTS_IMPLEMENTATION', |
| 98 ], | 97 ], |
| 99 'sources': [ | 98 'sources': [ |
| 100 # Note: sources list duplicated in GN build. | 99 # Note: sources list duplicated in GN build. |
| 101 'cocoa/cocoa_event_utils.h', | 100 'cocoa/cocoa_event_utils.h', |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 ], | 284 ], |
| 286 'conditions': [ | 285 'conditions': [ |
| 287 ['use_aura!=1 and OS!="android"', { | 286 ['use_aura!=1 and OS!="android"', { |
| 288 'sources': [ | 287 'sources': [ |
| 289 'gesture_detection/gesture_configuration_default.cc', | 288 'gesture_detection/gesture_configuration_default.cc', |
| 290 ], | 289 ], |
| 291 }], | 290 }], |
| 292 ], | 291 ], |
| 293 }, | 292 }, |
| 294 { | 293 { |
| 295 # GN version: //ui/events/ipc:events_ipc | |
| 296 'target_name': 'events_ipc', | |
| 297 'type': '<(component)', | |
| 298 'dependencies': [ | |
| 299 '<(DEPTH)/base/base.gyp:base', | |
| 300 '<(DEPTH)/ipc/ipc.gyp:ipc', | |
| 301 'events_base', | |
| 302 ], | |
| 303 'defines': [ | |
| 304 'EVENTS_IPC_IMPLEMENTATION', | |
| 305 ], | |
| 306 'sources': [ | |
| 307 'ipc/latency_info_param_traits.cc', | |
| 308 'ipc/latency_info_param_traits.h', | |
| 309 'ipc/latency_info_param_traits_macros.h', | |
| 310 ], | |
| 311 }, | |
| 312 { | |
| 313 # GN version: //ui/events:test_support | 294 # GN version: //ui/events:test_support |
| 314 'target_name': 'events_test_support', | 295 'target_name': 'events_test_support', |
| 315 'type': 'static_library', | 296 'type': 'static_library', |
| 316 'dependencies': [ | 297 'dependencies': [ |
| 317 '<(DEPTH)/base/base.gyp:base', | 298 '<(DEPTH)/base/base.gyp:base', |
| 318 '<(DEPTH)/skia/skia.gyp:skia', | 299 '<(DEPTH)/skia/skia.gyp:skia', |
| 319 '../gfx/gfx.gyp:gfx_geometry', | 300 '../gfx/gfx.gyp:gfx_geometry', |
| 320 'events', | 301 'events', |
| 321 'events_base', | 302 'events_base', |
| 322 'gesture_detection', | 303 'gesture_detection', |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 'variables': { | 373 'variables': { |
| 393 'jni_gen_package': 'ui', | 374 'jni_gen_package': 'ui', |
| 394 'input_java_class': 'android/view/KeyEvent.class', | 375 'input_java_class': 'android/view/KeyEvent.class', |
| 395 }, | 376 }, |
| 396 'includes': [ '../../build/jar_file_jni_generator.gypi' ], | 377 'includes': [ '../../build/jar_file_jni_generator.gypi' ], |
| 397 }, | 378 }, |
| 398 ], | 379 ], |
| 399 }], | 380 }], |
| 400 ], | 381 ], |
| 401 } | 382 } |
| OLD | NEW |