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

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: address review comments (spang) 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 'target_name': 'events_ozone_evdev', 46 'target_name': 'events_ozone_evdev',
47 'type': '<(component)', 47 'type': '<(component)',
48 'dependencies': [ 48 'dependencies': [
49 '../../../base/base.gyp:base', 49 '../../../base/base.gyp:base',
50 '../../gfx/gfx.gyp:gfx', 50 '../../gfx/gfx.gyp:gfx',
51 '../../ozone/ozone.gyp:ozone_base', 51 '../../ozone/ozone.gyp:ozone_base',
52 '../devices/events_devices.gyp:events_devices', 52 '../devices/events_devices.gyp:events_devices',
53 '../events.gyp:dom4_keycode_converter', 53 '../events.gyp:dom4_keycode_converter',
54 '../platform/events_platform.gyp:events_platform', 54 '../platform/events_platform.gyp:events_platform',
55 'events_ozone', 55 'events_ozone',
56 'events_ozone_layout',
56 ], 57 ],
57 'defines': [ 58 'defines': [
58 'EVENTS_OZONE_EVDEV_IMPLEMENTATION', 59 'EVENTS_OZONE_EVDEV_IMPLEMENTATION',
59 ], 60 ],
60 'sources': [ 61 'sources': [
61 'evdev/libgestures_glue/event_reader_libevdev_cros.cc', 62 'evdev/libgestures_glue/event_reader_libevdev_cros.cc',
62 'evdev/libgestures_glue/event_reader_libevdev_cros.h', 63 'evdev/libgestures_glue/event_reader_libevdev_cros.h',
63 'evdev/libgestures_glue/gesture_interpreter_libevdev_cros.cc', 64 'evdev/libgestures_glue/gesture_interpreter_libevdev_cros.cc',
64 'evdev/libgestures_glue/gesture_interpreter_libevdev_cros.h', 65 'evdev/libgestures_glue/gesture_interpreter_libevdev_cros.h',
65 'evdev/libgestures_glue/gesture_logging.cc', 66 'evdev/libgestures_glue/gesture_logging.cc',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 }, 109 },
109 }, { 110 }, {
110 'sources/': [ 111 'sources/': [
111 ['exclude', '^evdev/libgestures_glue/'], 112 ['exclude', '^evdev/libgestures_glue/'],
112 ], 113 ],
113 }], 114 }],
114 ['use_ozone_evdev==1', { 115 ['use_ozone_evdev==1', {
115 'defines': ['USE_OZONE_EVDEV=1'], 116 'defines': ['USE_OZONE_EVDEV=1'],
116 }], 117 }],
117 ], 118 ],
119 }, {
120 'target_name': 'events_ozone_layout',
121 'type': '<(component)',
122 'dependencies': [
123 '../../../base/base.gyp:base',
spang 2014/12/02 20:28:00 I think there's some missing deps here. Should go
kpschoedel 2014/12/02 21:52:34 Done; also ran component and GN builds.
spang 2014/12/16 04:05:20 They seem to have gotten lost.
124 ],
125 'defines': [
126 'EVENTS_OZONE_LAYOUT_IMPLEMENTATION',
127 ],
128 'sources': [
129 'layout/events_ozone_layout_export.h',
130 'layout/keyboard_layout_engine.h',
131 'layout/keyboard_layout_engine_manager.cc',
132 'layout/keyboard_layout_engine_manager.h',
133 'layout/no/no_keyboard_layout_engine.cc',
134 'layout/no/no_keyboard_layout_engine.h',
135 'layout/stub/stub_keyboard_layout_engine.cc',
136 'layout/stub/stub_keyboard_layout_engine.h',
137 ],
118 }] 138 }]
119 } 139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698