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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 '../../ozone/ozone.gyp:ozone_base', | 51 '../../ozone/ozone.gyp:ozone_base', |
52 '../devices/events_devices.gyp:events_devices', | 52 '../devices/events_devices.gyp:events_devices', |
53 '../events.gyp:dom4_keycode_converter', | 53 '../events.gyp:dom4_keycode_converter', |
54 '../platform/events_platform.gyp:events_platform', | 54 '../platform/events_platform.gyp:events_platform', |
55 'events_ozone', | 55 'events_ozone', |
| 56 'events_ozone_layout', |
56 ], | 57 ], |
57 'defines': [ | 58 'defines': [ |
58 'EVENTS_OZONE_EVDEV_IMPLEMENTATION', | 59 'EVENTS_OZONE_EVDEV_IMPLEMENTATION', |
59 'USE_EVDEV', | 60 'USE_EVDEV', |
60 ], | 61 ], |
61 'direct_dependent_settings': { | 62 'direct_dependent_settings': { |
62 'defines': [ | 63 'defines': [ |
63 'USE_EVDEV', | 64 'USE_EVDEV', |
64 ], | 65 ], |
65 }, | 66 }, |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 }, | 115 }, |
115 }, { | 116 }, { |
116 'sources/': [ | 117 'sources/': [ |
117 ['exclude', '^evdev/libgestures_glue/'], | 118 ['exclude', '^evdev/libgestures_glue/'], |
118 ], | 119 ], |
119 }], | 120 }], |
120 ['use_ozone_evdev==1', { | 121 ['use_ozone_evdev==1', { |
121 'defines': ['USE_OZONE_EVDEV=1'], | 122 'defines': ['USE_OZONE_EVDEV=1'], |
122 }], | 123 }], |
123 ], | 124 ], |
| 125 }, { |
| 126 'target_name': 'events_ozone_layout', |
| 127 'type': '<(component)', |
| 128 'dependencies': [ |
| 129 '../../../base/base.gyp:base', |
| 130 ], |
| 131 'defines': [ |
| 132 'EVENTS_OZONE_LAYOUT_IMPLEMENTATION', |
| 133 ], |
| 134 'sources': [ |
| 135 'layout/events_ozone_layout_export.h', |
| 136 'layout/keyboard_layout_engine.h', |
| 137 'layout/keyboard_layout_engine_manager.cc', |
| 138 'layout/keyboard_layout_engine_manager.h', |
| 139 'layout/no/no_keyboard_layout_engine.cc', |
| 140 'layout/no/no_keyboard_layout_engine.h', |
| 141 'layout/stub/stub_keyboard_layout_engine.cc', |
| 142 'layout/stub/stub_keyboard_layout_engine.h', |
| 143 ], |
124 }] | 144 }] |
125 } | 145 } |
OLD | NEW |