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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 92 ], | 92 ], |
| 93 }, { | 93 }, { |
| 94 'sources/': [ | 94 'sources/': [ |
| 95 ['exclude', '^evdev/libgestures_glue/'], | 95 ['exclude', '^evdev/libgestures_glue/'], |
| 96 ], | 96 ], |
| 97 }], | 97 }], |
| 98 ['use_ozone_evdev==1', { | 98 ['use_ozone_evdev==1', { |
| 99 'defines': ['USE_OZONE_EVDEV=1'], | 99 'defines': ['USE_OZONE_EVDEV=1'], |
| 100 }], | 100 }], |
| 101 ], | 101 ], |
| 102 }, { | |
| 103 'target_name': 'events_ozone_layout_stub', | |
| 104 'type': '<(component)', | |
| 105 'dependencies': [ | |
| 106 '../../../base/base.gyp:base', | |
| 107 '../events.gyp:dom4_keycode_converter', | |
| 108 ], | |
| 109 'defines': [ | |
| 110 'EVENTS_OZONE_LAYOUT_IMPLEMENTATION', | |
| 111 ], | |
| 112 'sources': [ | |
| 113 'layout/events_ozone_layout_export.h', | |
| 114 'layout/stub/stub_keyboard_layouts.cc', | |
| 115 'layout/stub/stub_keyboard_layouts.h', | |
|
kpschoedel
2014/11/20 16:18:38
I've tentatively put keyboard layouts under
ui/e
| |
| 116 ], | |
| 102 }] | 117 }] |
| 103 } | 118 } |
| OLD | NEW |