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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 sources += [ | 135 sources += [ |
136 "linux/text_edit_command_auralinux.cc", | 136 "linux/text_edit_command_auralinux.cc", |
137 "linux/text_edit_command_auralinux.h", | 137 "linux/text_edit_command_auralinux.h", |
138 "linux/text_edit_key_bindings_delegate_auralinux.cc", | 138 "linux/text_edit_key_bindings_delegate_auralinux.cc", |
139 "linux/text_edit_key_bindings_delegate_auralinux.h", | 139 "linux/text_edit_key_bindings_delegate_auralinux.h", |
140 ] | 140 ] |
141 } | 141 } |
142 | 142 |
143 if (use_ozone) { | 143 if (use_ozone) { |
144 sources += [ | 144 sources += [ |
145 "ozone/device/udev/device_manager_udev.cc", | |
146 "ozone/device/udev/device_manager_udev.h", | |
147 "ozone/evdev/event_converter_evdev.cc", | |
148 "ozone/evdev/event_converter_evdev.h", | |
149 "ozone/evdev/event_device_info.cc", | |
150 "ozone/evdev/event_device_info.h", | |
151 "ozone/evdev/event_factory_evdev.cc", | |
152 "ozone/evdev/event_factory_evdev.h", | |
153 "ozone/evdev/event_modifiers_evdev.cc", | |
154 "ozone/evdev/event_modifiers_evdev.h", | |
155 "ozone/evdev/key_event_converter_evdev.cc", | |
156 "ozone/evdev/key_event_converter_evdev.h", | |
157 "ozone/evdev/touch_event_converter_evdev.cc", | |
158 "ozone/evdev/touch_event_converter_evdev.h", | |
159 "ozone/event_factory_ozone.cc", | |
160 "ozone/event_factory_ozone.h", | |
161 "ozone/events_ozone.cc", | 145 "ozone/events_ozone.cc", |
162 ] | 146 ] |
163 } | 147 } |
164 | 148 |
165 if (use_aura) { | 149 if (use_aura) { |
166 sources += [ | 150 sources += [ |
167 "gestures/gesture_provider_aura.cc", | 151 "gestures/gesture_provider_aura.cc", |
168 "gestures/gesture_provider_aura.h", | 152 "gestures/gesture_provider_aura.h", |
169 "gestures/motion_event_aura.cc", | 153 "gestures/motion_event_aura.cc", |
170 "gestures/motion_event_aura.h", | 154 "gestures/motion_event_aura.h", |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 ":events_base", | 293 ":events_base", |
310 ":gesture_detection", | 294 ":gesture_detection", |
311 ":test_support", | 295 ":test_support", |
312 "//base", | 296 "//base", |
313 "//base/test:run_all_unittests", | 297 "//base/test:run_all_unittests", |
314 "//skia", | 298 "//skia", |
315 "//testing/gtest", | 299 "//testing/gtest", |
316 "//ui/gfx:test_support", | 300 "//ui/gfx:test_support", |
317 ] | 301 ] |
318 } | 302 } |
OLD | NEW |