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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 static_library("dom4_keycode_converter") { | 7 static_library("dom4_keycode_converter") { |
8 sources = [ | 8 sources = [ |
9 "keycodes/dom4/keycode_converter.cc", | 9 "keycodes/dom4/keycode_converter.cc", |
10 "keycodes/dom4/keycode_converter.h", | 10 "keycodes/dom4/keycode_converter.h", |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 sources += [ | 136 sources += [ |
137 "linux/text_edit_command_auralinux.cc", | 137 "linux/text_edit_command_auralinux.cc", |
138 "linux/text_edit_command_auralinux.h", | 138 "linux/text_edit_command_auralinux.h", |
139 "linux/text_edit_key_bindings_delegate_auralinux.cc", | 139 "linux/text_edit_key_bindings_delegate_auralinux.cc", |
140 "linux/text_edit_key_bindings_delegate_auralinux.h", | 140 "linux/text_edit_key_bindings_delegate_auralinux.h", |
141 ] | 141 ] |
142 } | 142 } |
143 | 143 |
144 if (use_ozone) { | 144 if (use_ozone) { |
145 sources += [ | 145 sources += [ |
146 "ozone/evdev/device_manager_evdev.cc", | 146 "ozone/device/udev/device_manager_udev.cc", |
147 "ozone/evdev/device_manager_evdev.h", | 147 "ozone/device/udev/device_manager_udev.h", |
148 "ozone/evdev/device_manager_udev.cc", | |
149 "ozone/evdev/device_manager_udev.h", | |
150 "ozone/evdev/event_converter_evdev.cc", | 148 "ozone/evdev/event_converter_evdev.cc", |
151 "ozone/evdev/event_converter_evdev.h", | 149 "ozone/evdev/event_converter_evdev.h", |
152 "ozone/evdev/event_device_info.cc", | 150 "ozone/evdev/event_device_info.cc", |
153 "ozone/evdev/event_device_info.h", | 151 "ozone/evdev/event_device_info.h", |
154 "ozone/evdev/event_factory_evdev.cc", | 152 "ozone/evdev/event_factory_evdev.cc", |
155 "ozone/evdev/event_factory_evdev.h", | 153 "ozone/evdev/event_factory_evdev.h", |
156 "ozone/evdev/event_modifiers_evdev.cc", | 154 "ozone/evdev/event_modifiers_evdev.cc", |
157 "ozone/evdev/event_modifiers_evdev.h", | 155 "ozone/evdev/event_modifiers_evdev.h", |
158 "ozone/evdev/key_event_converter_evdev.cc", | 156 "ozone/evdev/key_event_converter_evdev.cc", |
159 "ozone/evdev/key_event_converter_evdev.h", | 157 "ozone/evdev/key_event_converter_evdev.h", |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 ":events_base", | 302 ":events_base", |
305 ":events_test_support", | 303 ":events_test_support", |
306 ":gesture_detection", | 304 ":gesture_detection", |
307 "//base", | 305 "//base", |
308 "//base/test:run_all_unittests", | 306 "//base/test:run_all_unittests", |
309 "//skia", | 307 "//skia", |
310 "//testing/gtest", | 308 "//testing/gtest", |
311 "//ui/gfx:gfx_test_support", | 309 "//ui/gfx:gfx_test_support", |
312 ] | 310 ] |
313 } | 311 } |
OLD | NEW |