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

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

Issue 742103002: Ozone keyboard layout (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lite-code
Patch Set: reeeeebase 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
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 'target_name': 'events_ozone_evdev', 54 'target_name': 'events_ozone_evdev',
55 'type': '<(component)', 55 'type': '<(component)',
56 'dependencies': [ 56 'dependencies': [
57 '../../../base/base.gyp:base', 57 '../../../base/base.gyp:base',
58 '../../gfx/gfx.gyp:gfx', 58 '../../gfx/gfx.gyp:gfx',
59 '../../ozone/ozone.gyp:ozone_base', 59 '../../ozone/ozone.gyp:ozone_base',
60 '../devices/events_devices.gyp:events_devices', 60 '../devices/events_devices.gyp:events_devices',
61 '../events.gyp:dom4_keycode_converter', 61 '../events.gyp:dom4_keycode_converter',
62 '../platform/events_platform.gyp:events_platform', 62 '../platform/events_platform.gyp:events_platform',
63 'events_ozone', 63 'events_ozone',
64 'events_ozone_layout',
64 ], 65 ],
65 'defines': [ 66 'defines': [
66 'EVENTS_OZONE_EVDEV_IMPLEMENTATION', 67 'EVENTS_OZONE_EVDEV_IMPLEMENTATION',
67 'USE_EVDEV', 68 'USE_EVDEV',
68 ], 69 ],
69 'direct_dependent_settings': { 70 'direct_dependent_settings': {
70 'defines': [ 71 'defines': [
71 'USE_EVDEV', 72 'USE_EVDEV',
72 ], 73 ],
73 }, 74 },
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 }, 123 },
123 }, { 124 }, {
124 'sources/': [ 125 'sources/': [
125 ['exclude', '^evdev/libgestures_glue/'], 126 ['exclude', '^evdev/libgestures_glue/'],
126 ], 127 ],
127 }], 128 }],
128 ['use_ozone_evdev==1', { 129 ['use_ozone_evdev==1', {
129 'defines': ['USE_OZONE_EVDEV=1'], 130 'defines': ['USE_OZONE_EVDEV=1'],
130 }], 131 }],
131 ], 132 ],
133 }, {
134 'target_name': 'events_ozone_layout',
135 'type': '<(component)',
136 'dependencies': [
137 '../../../base/base.gyp:base',
138 ],
139 'defines': [
140 'EVENTS_OZONE_LAYOUT_IMPLEMENTATION',
141 ],
142 'sources': [
143 'layout/events_ozone_layout_export.h',
144 'layout/keyboard_layout_engine.h',
145 'layout/keyboard_layout_engine_manager.cc',
146 'layout/keyboard_layout_engine_manager.h',
147 'layout/no/no_keyboard_layout_engine.cc',
148 'layout/no/no_keyboard_layout_engine.h',
149 'layout/stub/stub_keyboard_layout_engine.cc',
150 'layout/stub/stub_keyboard_layout_engine.h',
151 ],
132 }] 152 }]
133 } 153 }
OLDNEW
« no previous file with comments | « ui/events/ozone/evdev/keyboard_evdev.cc ('k') | ui/events/ozone/layout/events_ozone_layout_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698