Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: ui/events/ozone/events_ozone.gyp

Issue 751623003: ozone: Add initial build support for xkbcommon (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix niits Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/events/ozone/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'target_name': 'events_ozone', 10 'target_name': 'events_ozone',
(...skipping 18 matching lines...) Expand all
29 'device/udev/device_manager_udev.cc', 29 'device/udev/device_manager_udev.cc',
30 'device/udev/device_manager_udev.h', 30 'device/udev/device_manager_udev.h',
31 'events_ozone_export.h', 31 'events_ozone_export.h',
32 ], 32 ],
33 'conditions': [ 33 'conditions': [
34 ['use_udev==0', { 34 ['use_udev==0', {
35 'sources/': [ 35 'sources/': [
36 ['exclude', '_udev\\.(h|cc)$'], 36 ['exclude', '_udev\\.(h|cc)$'],
37 ], 37 ],
38 }], 38 }],
39 ['use_xkbcommon==1', {
40 'dependencies': [
41 '../../../build/linux/system.gyp:xkbcommon',
42 ],
43 'defines': [
44 'USE_XKBCOMMON',
45 ],
46 }],
39 ['use_ozone_evdev==1 and use_udev==1', { 47 ['use_ozone_evdev==1 and use_udev==1', {
40 'dependencies': [ 48 'dependencies': [
41 '<(DEPTH)/device/udev_linux/udev.gyp:udev_linux', 49 '<(DEPTH)/device/udev_linux/udev.gyp:udev_linux',
42 ], 50 ],
43 }], 51 }],
44 ], 52 ],
45 }, { 53 }, {
46 'target_name': 'events_ozone_evdev', 54 'target_name': 'events_ozone_evdev',
47 'type': '<(component)', 55 'type': '<(component)',
48 'dependencies': [ 56 'dependencies': [
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 'sources/': [ 124 'sources/': [
117 ['exclude', '^evdev/libgestures_glue/'], 125 ['exclude', '^evdev/libgestures_glue/'],
118 ], 126 ],
119 }], 127 }],
120 ['use_ozone_evdev==1', { 128 ['use_ozone_evdev==1', {
121 'defines': ['USE_OZONE_EVDEV=1'], 129 'defines': ['USE_OZONE_EVDEV=1'],
122 }], 130 }],
123 ], 131 ],
124 }] 132 }]
125 } 133 }
OLDNEW
« no previous file with comments | « ui/events/ozone/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698