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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 'export_dependent_settings': [ | 71 'export_dependent_settings': [ |
72 '../../ui/gfx/gfx.gyp:gfx', | 72 '../../ui/gfx/gfx.gyp:gfx', |
73 ], | 73 ], |
74 'conditions': [ | 74 'conditions': [ |
75 ['use_x11==1', { | 75 ['use_x11==1', { |
76 'dependencies': [ | 76 'dependencies': [ |
77 '../../build/linux/system.gyp:x11', | 77 '../../build/linux/system.gyp:x11', |
78 '../gfx/x/gfx_x11.gyp:gfx_x11', | 78 '../gfx/x/gfx_x11.gyp:gfx_x11', |
79 ], | 79 ], |
80 }], | 80 }], |
| 81 ['use_x11==1 or use_xkbcommon==1', { |
| 82 'sources': [ |
| 83 'keycodes/keyboard_code_conversion_xkb.cc', |
| 84 'keycodes/keyboard_code_conversion_xkb.h', |
| 85 'keycodes/xkb_keysym.h', |
| 86 ], |
| 87 }], |
81 ], | 88 ], |
82 }, | 89 }, |
83 { | 90 { |
84 # GN version: //ui/events | 91 # GN version: //ui/events |
85 'target_name': 'events', | 92 'target_name': 'events', |
86 'type': '<(component)', | 93 'type': '<(component)', |
87 'dependencies': [ | 94 'dependencies': [ |
88 '<(DEPTH)/base/base.gyp:base', | 95 '<(DEPTH)/base/base.gyp:base', |
89 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 96 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
90 '<(DEPTH)/skia/skia.gyp:skia', | 97 '<(DEPTH)/skia/skia.gyp:skia', |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 'dependencies': [ | 438 'dependencies': [ |
432 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 439 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
433 ], | 440 ], |
434 }], | 441 }], |
435 ], | 442 ], |
436 }, | 443 }, |
437 ], | 444 ], |
438 }], | 445 }], |
439 ], | 446 ], |
440 } | 447 } |
OLD | NEW |