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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 | 218 |
219 if (is_android) { | 219 if (is_android) { |
220 sources += [ "gesture_detection/gesture_config_helper_android.cc" ] | 220 sources += [ "gesture_detection/gesture_config_helper_android.cc" ] |
221 } else if (use_aura) { | 221 } else if (use_aura) { |
222 sources += [ "gesture_detection/gesture_config_helper_aura.cc" ] | 222 sources += [ "gesture_detection/gesture_config_helper_aura.cc" ] |
223 } else { | 223 } else { |
224 sources += [ "gesture_detection/gesture_config_helper.cc" ] | 224 sources += [ "gesture_detection/gesture_config_helper.cc" ] |
225 } | 225 } |
226 } | 226 } |
227 | 227 |
228 source_set("events_test_support") { | 228 source_set("test_support") { |
229 sources = [ | 229 sources = [ |
230 "test/cocoa_test_event_utils.h", | 230 "test/cocoa_test_event_utils.h", |
231 "test/cocoa_test_event_utils.mm", | 231 "test/cocoa_test_event_utils.mm", |
232 "test/events_test_utils.cc", | 232 "test/events_test_utils.cc", |
233 "test/events_test_utils.h", | 233 "test/events_test_utils.h", |
234 "test/events_test_utils_x11.cc", | 234 "test/events_test_utils_x11.cc", |
235 "test/events_test_utils_x11.h", | 235 "test/events_test_utils_x11.h", |
236 "test/mock_motion_event.cc", | 236 "test/mock_motion_event.cc", |
237 "test/mock_motion_event.h", | 237 "test/mock_motion_event.h", |
238 "test/platform_event_waiter.cc", | 238 "test/platform_event_waiter.cc", |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 if (use_ozone) { | 295 if (use_ozone) { |
296 sources += [ | 296 sources += [ |
297 "ozone/evdev/key_event_converter_evdev_unittest.cc", | 297 "ozone/evdev/key_event_converter_evdev_unittest.cc", |
298 "ozone/evdev/touch_event_converter_evdev_unittest.cc", | 298 "ozone/evdev/touch_event_converter_evdev_unittest.cc", |
299 ] | 299 ] |
300 } | 300 } |
301 | 301 |
302 deps = [ | 302 deps = [ |
303 ":events", | 303 ":events", |
304 ":events_base", | 304 ":events_base", |
305 ":events_test_support", | |
306 ":gesture_detection", | 305 ":gesture_detection", |
| 306 ":test_support", |
307 "//base", | 307 "//base", |
308 "//base/test:run_all_unittests", | 308 "//base/test:run_all_unittests", |
309 "//skia", | 309 "//skia", |
310 "//testing/gtest", | 310 "//testing/gtest", |
311 "//ui/gfx:gfx_test_support", | 311 "//ui/gfx:test_support", |
312 ] | 312 ] |
313 } | 313 } |
OLD | NEW |