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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 '../events.gyp:events_base', | 143 '../events.gyp:events_base', |
144 ], | 144 ], |
145 'defines': [ | 145 'defines': [ |
146 'EVENTS_OZONE_LAYOUT_IMPLEMENTATION', | 146 'EVENTS_OZONE_LAYOUT_IMPLEMENTATION', |
147 ], | 147 ], |
148 'sources': [ | 148 'sources': [ |
149 'layout/events_ozone_layout_export.h', | 149 'layout/events_ozone_layout_export.h', |
150 'layout/keyboard_layout_engine.h', | 150 'layout/keyboard_layout_engine.h', |
151 'layout/keyboard_layout_engine_manager.cc', | 151 'layout/keyboard_layout_engine_manager.cc', |
152 'layout/keyboard_layout_engine_manager.h', | 152 'layout/keyboard_layout_engine_manager.h', |
153 'layout/layout_util.cc', | |
154 'layout/layout_util.h', | |
155 'layout/no/no_keyboard_layout_engine.cc', | 153 'layout/no/no_keyboard_layout_engine.cc', |
156 'layout/no/no_keyboard_layout_engine.h', | 154 'layout/no/no_keyboard_layout_engine.h', |
157 'layout/stub/stub_keyboard_layout_engine.cc', | 155 'layout/stub/stub_keyboard_layout_engine.cc', |
158 'layout/stub/stub_keyboard_layout_engine.h', | 156 'layout/stub/stub_keyboard_layout_engine.h', |
159 ], | 157 ], |
160 'conditions': [ | 158 'conditions': [ |
161 ['use_xkbcommon==1', { | 159 ['use_xkbcommon==1', { |
162 'dependencies': [ | 160 'dependencies': [ |
163 '../../../build/linux/system.gyp:xkbcommon', | 161 '../../../build/linux/system.gyp:xkbcommon', |
164 ], | 162 ], |
165 'defines': [ | 163 'defines': [ |
166 'USE_XKBCOMMON', | 164 'USE_XKBCOMMON', |
167 ], | 165 ], |
168 'direct_dependent_settings': { | 166 'direct_dependent_settings': { |
169 'defines': [ | 167 'defines': [ |
170 'USE_XKBCOMMON', | 168 'USE_XKBCOMMON', |
171 ], | 169 ], |
172 }, | 170 }, |
173 'sources': [ | 171 'sources': [ |
174 'layout/xkb/xkb.h', | 172 'layout/xkb/xkb.h', |
175 'layout/xkb/xkb_evdev_codes.cc', | 173 'layout/xkb/xkb_evdev_codes.cc', |
176 'layout/xkb/xkb_evdev_codes.h', | 174 'layout/xkb/xkb_evdev_codes.h', |
177 'layout/xkb/xkb_key_code_converter.h', | 175 'layout/xkb/xkb_key_code_converter.h', |
178 'layout/xkb/xkb_keyboard_code_conversion.cc', | |
179 'layout/xkb/xkb_keyboard_code_conversion.h', | |
180 'layout/xkb/xkb_keyboard_layout_engine.cc', | 176 'layout/xkb/xkb_keyboard_layout_engine.cc', |
181 'layout/xkb/xkb_keyboard_layout_engine.h', | 177 'layout/xkb/xkb_keyboard_layout_engine.h', |
182 'layout/xkb/xkb_keysym.h', | 178 'layout/xkb/xkb_keysym.h', |
183 'layout/xkb/scoped_xkb.h', | 179 'layout/xkb/scoped_xkb.h', |
184 ], | 180 ], |
185 }], | 181 }], |
186 ], | 182 ], |
187 }] | 183 }] |
188 } | 184 } |
OLD | NEW |