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

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

Issue 28513004: Move evdev events support into EventFactoryDelegateEvdev (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: s/_evdev//, add event_factory_delegate_ozone.cc, move GetRequestedDelegate() Created 7 years, 2 months 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 | Annotate | Revision Log
OLDNEW
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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 'keycodes/keyboard_code_conversion_gtk.h', 58 'keycodes/keyboard_code_conversion_gtk.h',
59 'keycodes/keyboard_code_conversion_mac.h', 59 'keycodes/keyboard_code_conversion_mac.h',
60 'keycodes/keyboard_code_conversion_mac.mm', 60 'keycodes/keyboard_code_conversion_mac.mm',
61 'keycodes/keyboard_code_conversion_win.cc', 61 'keycodes/keyboard_code_conversion_win.cc',
62 'keycodes/keyboard_code_conversion_win.h', 62 'keycodes/keyboard_code_conversion_win.h',
63 'keycodes/keyboard_code_conversion_x.cc', 63 'keycodes/keyboard_code_conversion_x.cc',
64 'keycodes/keyboard_code_conversion_x.h', 64 'keycodes/keyboard_code_conversion_x.h',
65 'keycodes/keyboard_codes.h', 65 'keycodes/keyboard_codes.h',
66 'latency_info.cc', 66 'latency_info.cc',
67 'latency_info.h', 67 'latency_info.h',
68 'ozone/evdev/key_event_converter_ozone.cc', 68 'ozone/evdev/event_factory_delegate.cc',
69 'ozone/evdev/key_event_converter_ozone.h', 69 'ozone/evdev/event_factory_delegate.h',
70 'ozone/evdev/touch_event_converter_ozone.cc', 70 'ozone/evdev/key_event_converter.cc',
71 'ozone/evdev/touch_event_converter_ozone.h', 71 'ozone/evdev/key_event_converter.h',
72 'ozone/evdev/touch_event_converter.cc',
73 'ozone/evdev/touch_event_converter.h',
72 'ozone/event_converter_ozone.cc', 74 'ozone/event_converter_ozone.cc',
73 'ozone/event_converter_ozone.h', 75 'ozone/event_converter_ozone.h',
76 'ozone/event_factory_delegate_ozone.cc',
74 'ozone/event_factory_delegate_ozone.h', 77 'ozone/event_factory_delegate_ozone.h',
75 'ozone/event_factory_ozone.cc', 78 'ozone/event_factory_ozone.cc',
76 'ozone/event_factory_ozone.h', 79 'ozone/event_factory_ozone.h',
77 'ozone/events_ozone.cc', 80 'ozone/events_ozone.cc',
78 'win/events_win.cc', 81 'win/events_win.cc',
79 'x/device_data_manager.cc', 82 'x/device_data_manager.cc',
80 'x/device_data_manager.h', 83 'x/device_data_manager.h',
81 'x/device_list_cache_x.cc', 84 'x/device_list_cache_x.cc',
82 'x/device_list_cache_x.h', 85 'x/device_list_cache_x.h',
83 'x/events_x.cc', 86 'x/events_x.cc',
(...skipping 24 matching lines...) Expand all
108 'sources!': [ 111 'sources!': [
109 'event_utils.cc', 112 'event_utils.cc',
110 'keycodes/keyboard_code_conversion.cc', 113 'keycodes/keyboard_code_conversion.cc',
111 ], 114 ],
112 }], 115 }],
113 ['use_x11==1', { 116 ['use_x11==1', {
114 'dependencies': [ 117 'dependencies': [
115 '<(DEPTH)/build/linux/system.gyp:x11', 118 '<(DEPTH)/build/linux/system.gyp:x11',
116 ], 119 ],
117 }], 120 }],
121 ['use_ozone_evdev==1', {
122 'defines': ['USE_OZONE_EVDEV=1'],
123 }],
124 ['use_ozone_evdev==0', {
125 'sources/': [
126 ['exclude', '^ozone/evdev/*'],
sadrul 2013/10/21 20:22:54 Move this rule into build/filename_rules.gypi (for
spang 2013/10/21 20:32:04 Done.
127 ]
128 }],
118 ], 129 ],
119 } 130 }
120 ], 131 ],
121 } 132 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698