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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 "x/touch_factory_x11.h", | 67 "x/touch_factory_x11.h", |
68 ] | 68 ] |
69 } | 69 } |
70 } | 70 } |
71 | 71 |
72 component("events") { | 72 component("events") { |
73 deps = [ | 73 deps = [ |
74 ":dom4_keycode_converter", | 74 ":dom4_keycode_converter", |
75 ":events_base", | 75 ":events_base", |
76 ":gesture_detection", | 76 ":gesture_detection", |
| 77 "//base/third_party/dynamic_annotations", |
77 "//skia", | 78 "//skia", |
78 "//ui/gfx", | 79 "//ui/gfx", |
79 "//ui/gfx/geometry", | 80 "//ui/gfx/geometry", |
80 ] | 81 ] |
81 | 82 |
82 defines = [ "EVENTS_IMPLEMENTATION" ] | 83 defines = [ "EVENTS_IMPLEMENTATION" ] |
83 | 84 |
84 sources = [ | 85 sources = [ |
85 "cocoa/cocoa_event_utils.h", | 86 "cocoa/cocoa_event_utils.h", |
86 "cocoa/cocoa_event_utils.mm", | 87 "cocoa/cocoa_event_utils.mm", |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 ":events_base", | 304 ":events_base", |
304 ":events_test_support", | 305 ":events_test_support", |
305 ":gesture_detection", | 306 ":gesture_detection", |
306 "//base", | 307 "//base", |
307 "//base/test:run_all_unittests", | 308 "//base/test:run_all_unittests", |
308 "//skia", | 309 "//skia", |
309 "//testing/gtest", | 310 "//testing/gtest", |
310 "//ui/gfx:gfx_test_support", | 311 "//ui/gfx:gfx_test_support", |
311 ] | 312 ] |
312 } | 313 } |
OLD | NEW |