Chromium Code Reviews| 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 18 matching lines...) Expand all Loading... | |
| 29 'device/udev/device_manager_udev.cc', | 29 'device/udev/device_manager_udev.cc', |
| 30 'device/udev/device_manager_udev.h', | 30 'device/udev/device_manager_udev.h', |
| 31 'events_ozone_export.h', | 31 'events_ozone_export.h', |
| 32 ], | 32 ], |
| 33 'conditions': [ | 33 'conditions': [ |
| 34 ['use_udev==0', { | 34 ['use_udev==0', { |
| 35 'sources/': [ | 35 'sources/': [ |
| 36 ['exclude', '_udev\\.(h|cc)$'], | 36 ['exclude', '_udev\\.(h|cc)$'], |
| 37 ], | 37 ], |
| 38 }], | 38 }], |
| 39 ['use_xkbcommon==1', { | 39 ['use_xkbcommon==1', { |
|
spang
2014/12/15 19:16:22
remove this.
kpschoedel
2014/12/15 19:48:47
Done.
| |
| 40 'dependencies': [ | 40 'dependencies': [ |
| 41 '../../../build/linux/system.gyp:xkbcommon', | 41 '../../../build/linux/system.gyp:xkbcommon', |
| 42 ], | 42 ], |
| 43 'defines': [ | 43 'defines': [ |
| 44 'USE_XKBCOMMON', | 44 'USE_XKBCOMMON', |
| 45 ], | 45 ], |
| 46 }], | 46 }], |
| 47 ['use_ozone_evdev==1 and use_udev==1', { | 47 ['use_ozone_evdev==1 and use_udev==1', { |
| 48 'dependencies': [ | 48 'dependencies': [ |
| 49 '<(DEPTH)/device/udev_linux/udev.gyp:udev_linux', | 49 '<(DEPTH)/device/udev_linux/udev.gyp:udev_linux', |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 137 '../../../base/base.gyp:base', | 137 '../../../base/base.gyp:base', |
| 138 ], | 138 ], |
| 139 'defines': [ | 139 'defines': [ |
| 140 'EVENTS_OZONE_LAYOUT_IMPLEMENTATION', | 140 'EVENTS_OZONE_LAYOUT_IMPLEMENTATION', |
| 141 ], | 141 ], |
| 142 'sources': [ | 142 'sources': [ |
| 143 'layout/events_ozone_layout_export.h', | 143 'layout/events_ozone_layout_export.h', |
| 144 'layout/keyboard_layout_engine.h', | 144 'layout/keyboard_layout_engine.h', |
| 145 'layout/keyboard_layout_engine_manager.cc', | 145 'layout/keyboard_layout_engine_manager.cc', |
| 146 'layout/keyboard_layout_engine_manager.h', | 146 'layout/keyboard_layout_engine_manager.h', |
| 147 'layout/layout_util.cc', | |
| 148 'layout/layout_util.h', | |
| 147 'layout/no/no_keyboard_layout_engine.cc', | 149 'layout/no/no_keyboard_layout_engine.cc', |
| 148 'layout/no/no_keyboard_layout_engine.h', | 150 'layout/no/no_keyboard_layout_engine.h', |
| 149 'layout/stub/stub_keyboard_layout_engine.cc', | 151 'layout/stub/stub_keyboard_layout_engine.cc', |
| 150 'layout/stub/stub_keyboard_layout_engine.h', | 152 'layout/stub/stub_keyboard_layout_engine.h', |
| 151 ], | 153 ], |
| 154 'conditions': [ | |
| 155 ['use_xkbcommon==1', { | |
| 156 'dependencies': [ | |
| 157 '../../../build/linux/system.gyp:xkbcommon', | |
| 158 ], | |
| 159 'defines': [ | |
| 160 'USE_XKBCOMMON', | |
| 161 ], | |
| 162 'sources': [ | |
| 163 'layout/xkb/xkb.h', | |
| 164 'layout/xkb/xkb_evdev_codes.cc', | |
| 165 'layout/xkb/xkb_evdev_codes.h', | |
| 166 'layout/xkb/xkb_keyboard_code_conversion.cc', | |
| 167 'layout/xkb/xkb_keyboard_code_conversion.h', | |
| 168 'layout/xkb/xkb_keyboard_layout_engine.cc', | |
| 169 'layout/xkb/xkb_keyboard_layout_engine.h', | |
| 170 'layout/xkb/xkb_keysym.h', | |
| 171 ], | |
| 172 }], | |
| 173 ], | |
| 152 }] | 174 }] |
| 153 } | 175 } |
| OLD | NEW |