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