| 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 { | 27 { |
| 28 # GN version: //ui/events:events_base | 28 # GN version: //ui/events:events_base |
| 29 'target_name': 'events_base', | 29 'target_name': 'events_base', |
| 30 'type': '<(component)', | 30 'type': '<(component)', |
| 31 'dependencies': [ | 31 'dependencies': [ |
| 32 '<(DEPTH)/base/base.gyp:base', | 32 '<(DEPTH)/base/base.gyp:base', |
| 33 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 33 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 34 '<(DEPTH)/skia/skia.gyp:skia', | 34 '<(DEPTH)/skia/skia.gyp:skia', |
| 35 '../gfx/gfx.gyp:gfx', | 35 '../gfx/gfx.gyp:gfx', |
| 36 '../gfx/gfx.gyp:gfx_geometry', | 36 '../gfx/gfx.gyp:gfx_geometry', |
| 37 '../latency_info/latency_info.gyp:latency_info', |
| 37 'dom_keycode_converter', | 38 'dom_keycode_converter', |
| 38 ], | 39 ], |
| 39 'defines': [ | 40 'defines': [ |
| 40 'EVENTS_BASE_IMPLEMENTATION', | 41 'EVENTS_BASE_IMPLEMENTATION', |
| 41 ], | 42 ], |
| 42 'sources': [ | 43 'sources': [ |
| 43 # Note: sources list duplicated in GN build. | 44 # Note: sources list duplicated in GN build. |
| 44 'android/scroller.cc', | 45 'android/scroller.cc', |
| 45 'android/scroller.h', | 46 'android/scroller.h', |
| 46 'base_event_utils.cc', | 47 'base_event_utils.cc', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 64 'keycodes/keyboard_code_conversion_win.cc', | 65 'keycodes/keyboard_code_conversion_win.cc', |
| 65 'keycodes/keyboard_code_conversion_win.h', | 66 'keycodes/keyboard_code_conversion_win.h', |
| 66 'keycodes/keyboard_code_conversion_x.cc', | 67 'keycodes/keyboard_code_conversion_x.cc', |
| 67 'keycodes/keyboard_code_conversion_x.h', | 68 'keycodes/keyboard_code_conversion_x.h', |
| 68 'keycodes/keyboard_codes.h', | 69 'keycodes/keyboard_codes.h', |
| 69 'x/keysym_to_unicode.cc', | 70 'x/keysym_to_unicode.cc', |
| 70 'x/keysym_to_unicode.h', | 71 'x/keysym_to_unicode.h', |
| 71 ], | 72 ], |
| 72 'export_dependent_settings': [ | 73 'export_dependent_settings': [ |
| 73 '../../ui/gfx/gfx.gyp:gfx', | 74 '../../ui/gfx/gfx.gyp:gfx', |
| 75 '../../ui/latency_info/latency_info.gyp:latency_info', |
| 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', |
| 79 '../gfx/x/gfx_x11.gyp:gfx_x11', | 81 '../gfx/x/gfx_x11.gyp:gfx_x11', |
| 80 ], | 82 ], |
| 81 }], | 83 }], |
| 82 ['use_x11==1 or use_xkbcommon==1', { | 84 ['use_x11==1 or use_xkbcommon==1', { |
| 83 'sources': [ | 85 'sources': [ |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 'variables': { | 378 'variables': { |
| 377 'jni_gen_package': 'ui', | 379 'jni_gen_package': 'ui', |
| 378 'input_java_class': 'android/view/KeyEvent.class', | 380 'input_java_class': 'android/view/KeyEvent.class', |
| 379 }, | 381 }, |
| 380 'includes': [ '../../build/jar_file_jni_generator.gypi' ], | 382 'includes': [ '../../build/jar_file_jni_generator.gypi' ], |
| 381 }, | 383 }, |
| 382 ], | 384 ], |
| 383 }], | 385 }], |
| 384 ], | 386 ], |
| 385 } | 387 } |
| OLD | NEW |