OLD | NEW |
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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 '../events.gyp:events_base', | 158 '../events.gyp:events_base', |
159 ], | 159 ], |
160 'defines': [ | 160 'defines': [ |
161 'EVENTS_OZONE_LAYOUT_IMPLEMENTATION', | 161 'EVENTS_OZONE_LAYOUT_IMPLEMENTATION', |
162 ], | 162 ], |
163 'sources': [ | 163 'sources': [ |
164 'layout/events_ozone_layout_export.h', | 164 'layout/events_ozone_layout_export.h', |
165 'layout/keyboard_layout_engine.h', | 165 'layout/keyboard_layout_engine.h', |
166 'layout/keyboard_layout_engine_manager.cc', | 166 'layout/keyboard_layout_engine_manager.cc', |
167 'layout/keyboard_layout_engine_manager.h', | 167 'layout/keyboard_layout_engine_manager.h', |
168 'layout/layout_util.cc', | |
169 'layout/layout_util.h', | |
170 'layout/no/no_keyboard_layout_engine.cc', | 168 'layout/no/no_keyboard_layout_engine.cc', |
171 'layout/no/no_keyboard_layout_engine.h', | 169 'layout/no/no_keyboard_layout_engine.h', |
172 'layout/stub/stub_keyboard_layout_engine.cc', | 170 'layout/stub/stub_keyboard_layout_engine.cc', |
173 'layout/stub/stub_keyboard_layout_engine.h', | 171 'layout/stub/stub_keyboard_layout_engine.h', |
174 ], | 172 ], |
175 'conditions': [ | 173 'conditions': [ |
176 ['use_xkbcommon==1', { | 174 ['use_xkbcommon==1', { |
177 'dependencies': [ | 175 'dependencies': [ |
178 '../../../build/linux/system.gyp:xkbcommon', | 176 '../../../build/linux/system.gyp:xkbcommon', |
179 ], | 177 ], |
180 'defines': [ | 178 'defines': [ |
181 'USE_XKBCOMMON', | 179 'USE_XKBCOMMON', |
182 ], | 180 ], |
183 'direct_dependent_settings': { | 181 'direct_dependent_settings': { |
184 'defines': [ | 182 'defines': [ |
185 'USE_XKBCOMMON', | 183 'USE_XKBCOMMON', |
186 ], | 184 ], |
187 }, | 185 }, |
188 'sources': [ | 186 'sources': [ |
189 'layout/xkb/scoped_xkb.h', | 187 'layout/xkb/scoped_xkb.h', |
190 'layout/xkb/xkb.h', | 188 'layout/xkb/xkb.h', |
191 'layout/xkb/xkb_evdev_codes.cc', | 189 'layout/xkb/xkb_evdev_codes.cc', |
192 'layout/xkb/xkb_evdev_codes.h', | 190 'layout/xkb/xkb_evdev_codes.h', |
193 'layout/xkb/xkb_key_code_converter.h', | 191 'layout/xkb/xkb_key_code_converter.h', |
194 'layout/xkb/xkb_keyboard_code_conversion.cc', | |
195 'layout/xkb/xkb_keyboard_code_conversion.h', | |
196 'layout/xkb/xkb_keyboard_layout_engine.cc', | 192 'layout/xkb/xkb_keyboard_layout_engine.cc', |
197 'layout/xkb/xkb_keyboard_layout_engine.h', | 193 'layout/xkb/xkb_keyboard_layout_engine.h', |
198 'layout/xkb/xkb_keysym.h', | 194 'layout/xkb/xkb_keysym.h', |
199 ], | 195 ], |
200 }], | 196 }], |
201 ], | 197 ], |
202 }] | 198 }] |
203 } | 199 } |
OLD | NEW |