| 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 30 matching lines...) Expand all Loading... |
| 41 '<(DEPTH)/device/udev_linux/udev.gyp:udev_linux', | 41 '<(DEPTH)/device/udev_linux/udev.gyp:udev_linux', |
| 42 ], | 42 ], |
| 43 }], | 43 }], |
| 44 ], | 44 ], |
| 45 }, { | 45 }, { |
| 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 '../../latency_info/latency_info.gyp:latency_info', |
| 51 '../../ozone/ozone.gyp:ozone_base', | 52 '../../ozone/ozone.gyp:ozone_base', |
| 52 '../devices/events_devices.gyp:events_devices', | 53 '../devices/events_devices.gyp:events_devices', |
| 53 '../events.gyp:dom_keycode_converter', | 54 '../events.gyp:dom_keycode_converter', |
| 54 '../events.gyp:events', | 55 '../events.gyp:events', |
| 55 '../events.gyp:events_base', | 56 '../events.gyp:events_base', |
| 56 '../platform/events_platform.gyp:events_platform', | 57 '../platform/events_platform.gyp:events_platform', |
| 57 'events_ozone', | 58 'events_ozone', |
| 58 'events_ozone_layout', | 59 'events_ozone_layout', |
| 59 ], | 60 ], |
| 60 'defines': [ | 61 'defines': [ |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 }], | 150 }], |
| 150 ['use_ozone_evdev==1', { | 151 ['use_ozone_evdev==1', { |
| 151 'defines': ['USE_OZONE_EVDEV=1'], | 152 'defines': ['USE_OZONE_EVDEV=1'], |
| 152 }], | 153 }], |
| 153 ], | 154 ], |
| 154 }, { | 155 }, { |
| 155 'target_name': 'events_ozone_layout', | 156 'target_name': 'events_ozone_layout', |
| 156 'type': '<(component)', | 157 'type': '<(component)', |
| 157 'dependencies': [ | 158 'dependencies': [ |
| 158 '../../../base/base.gyp:base', | 159 '../../../base/base.gyp:base', |
| 160 '../../latency_info/latency_info.gyp:latency_info', |
| 159 '../events.gyp:dom_keycode_converter', | 161 '../events.gyp:dom_keycode_converter', |
| 160 '../events.gyp:events_base', | 162 '../events.gyp:events_base', |
| 161 ], | 163 ], |
| 162 'defines': [ | 164 'defines': [ |
| 163 'EVENTS_OZONE_LAYOUT_IMPLEMENTATION', | 165 'EVENTS_OZONE_LAYOUT_IMPLEMENTATION', |
| 164 ], | 166 ], |
| 165 'sources': [ | 167 'sources': [ |
| 166 'layout/events_ozone_layout_export.h', | 168 'layout/events_ozone_layout_export.h', |
| 167 'layout/keyboard_layout_engine.h', | 169 'layout/keyboard_layout_engine.h', |
| 168 'layout/keyboard_layout_engine_manager.cc', | 170 'layout/keyboard_layout_engine_manager.cc', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 192 'layout/xkb/xkb_evdev_codes.cc', | 194 'layout/xkb/xkb_evdev_codes.cc', |
| 193 'layout/xkb/xkb_evdev_codes.h', | 195 'layout/xkb/xkb_evdev_codes.h', |
| 194 'layout/xkb/xkb_key_code_converter.h', | 196 'layout/xkb/xkb_key_code_converter.h', |
| 195 'layout/xkb/xkb_keyboard_layout_engine.cc', | 197 'layout/xkb/xkb_keyboard_layout_engine.cc', |
| 196 'layout/xkb/xkb_keyboard_layout_engine.h', | 198 'layout/xkb/xkb_keyboard_layout_engine.h', |
| 197 ], | 199 ], |
| 198 }], | 200 }], |
| 199 ], | 201 ], |
| 200 }] | 202 }] |
| 201 } | 203 } |
| OLD | NEW |