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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 'export_dependent_settings': [ | 74 'export_dependent_settings': [ |
75 '../../ui/gfx/gfx.gyp:gfx', | 75 '../../ui/gfx/gfx.gyp:gfx', |
76 ], | 76 ], |
77 'conditions': [ | 77 'conditions': [ |
78 ['use_x11==1', { | 78 ['use_x11==1', { |
79 'dependencies': [ | 79 'dependencies': [ |
80 '../../build/linux/system.gyp:x11', | 80 '../../build/linux/system.gyp:x11', |
81 '../gfx/x/gfx_x11.gyp:gfx_x11', | 81 '../gfx/x/gfx_x11.gyp:gfx_x11', |
82 ], | 82 ], |
83 }], | 83 }], |
| 84 ['use_x11==1 or use_xkbcommon==1', { |
| 85 'sources': [ |
| 86 'keycodes/keyboard_code_conversion_xkb.cc', |
| 87 'keycodes/keyboard_code_conversion_xkb.h', |
| 88 'keycodes/xkb_keysym.h', |
| 89 ], |
| 90 }], |
84 ], | 91 ], |
85 }, | 92 }, |
86 { | 93 { |
87 # GN version: //ui/events | 94 # GN version: //ui/events |
88 'target_name': 'events', | 95 'target_name': 'events', |
89 'type': '<(component)', | 96 'type': '<(component)', |
90 'dependencies': [ | 97 'dependencies': [ |
91 '<(DEPTH)/base/base.gyp:base', | 98 '<(DEPTH)/base/base.gyp:base', |
92 '<(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', |
93 '<(DEPTH)/skia/skia.gyp:skia', | 100 '<(DEPTH)/skia/skia.gyp:skia', |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 'dependencies': [ | 482 'dependencies': [ |
476 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 483 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
477 ], | 484 ], |
478 }], | 485 }], |
479 ], | 486 ], |
480 }, | 487 }, |
481 ], | 488 ], |
482 }], | 489 }], |
483 ], | 490 ], |
484 } | 491 } |
OLD | NEW |