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 23 matching lines...) Expand all Loading... |
34 "latency_info.cc", | 34 "latency_info.cc", |
35 "latency_info.h", | 35 "latency_info.h", |
36 ] | 36 ] |
37 | 37 |
38 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] | 38 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] |
39 | 39 |
40 deps = [ | 40 deps = [ |
41 ":dom4_keycode_converter", | 41 ":dom4_keycode_converter", |
42 "//base", | 42 "//base", |
43 "//base/third_party/dynamic_annotations", | 43 "//base/third_party/dynamic_annotations", |
| 44 "//skia", |
44 "//ui/gfx", | 45 "//ui/gfx", |
45 "//ui/gfx/geometry", | 46 "//ui/gfx/geometry", |
46 ] | 47 ] |
47 | 48 |
48 if (use_x11) { | 49 if (use_x11) { |
49 configs += [ "//build/config/linux:x11" ] | 50 configs += [ "//build/config/linux:x11" ] |
50 | 51 |
51 sources += [ | 52 sources += [ |
52 "keycodes/keyboard_code_conversion_x.cc", | 53 "keycodes/keyboard_code_conversion_x.cc", |
53 "keycodes/keyboard_code_conversion_x.h", | 54 "keycodes/keyboard_code_conversion_x.h", |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 "test/platform_event_waiter.h", | 233 "test/platform_event_waiter.h", |
233 "test/test_event_handler.cc", | 234 "test/test_event_handler.cc", |
234 "test/test_event_handler.h", | 235 "test/test_event_handler.h", |
235 "test/test_event_processor.cc", | 236 "test/test_event_processor.cc", |
236 "test/test_event_processor.h", | 237 "test/test_event_processor.h", |
237 "test/test_event_target.cc", | 238 "test/test_event_target.cc", |
238 "test/test_event_target.h", | 239 "test/test_event_target.h", |
239 ] | 240 ] |
240 | 241 |
241 deps = [ | 242 deps = [ |
| 243 "//skia", |
242 ":events_base", | 244 ":events_base", |
243 ":events", | 245 ":events", |
244 ] | 246 ] |
245 | 247 |
246 if (is_ios) { | 248 if (is_ios) { |
247 sources -= [ | 249 sources -= [ |
248 "test/cocoa_test_event_utils.h", | 250 "test/cocoa_test_event_utils.h", |
249 "test/cocoa_test_event_utils.mm", | 251 "test/cocoa_test_event_utils.mm", |
250 ] | 252 ] |
251 } | 253 } |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 ] | 295 ] |
294 } | 296 } |
295 | 297 |
296 deps = [ | 298 deps = [ |
297 ":events", | 299 ":events", |
298 ":events_base", | 300 ":events_base", |
299 ":events_test_support", | 301 ":events_test_support", |
300 ":gesture_detection", | 302 ":gesture_detection", |
301 "//base", | 303 "//base", |
302 "//base/test:run_all_unittests", | 304 "//base/test:run_all_unittests", |
| 305 "//skia", |
303 "//testing/gtest", | 306 "//testing/gtest", |
304 "//ui/gfx:gfx_test_support", | 307 "//ui/gfx:gfx_test_support", |
305 ] | 308 ] |
306 } | 309 } |
OLD | NEW |