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", |
11 "keycodes/dom4/keycode_converter_data.h", | 11 "keycodes/dom4/keycode_converter_data.h", |
12 ] | 12 ] |
13 | 13 |
14 deps = [ "//base" ] | 14 deps = [ "//base" ] |
15 } | 15 } |
16 | 16 |
17 component("events_ipc") { | |
sadrul
2014/05/16 14:49:26
Can this be in events/ipc/BUILD.gn?
Yufeng Shen (Slow to review)
2014/05/16 17:13:13
Done.
| |
18 sources = [ | |
19 "ipc/latency_info_param_traits.cc", | |
20 "ipc/latency_info_param_traits.h", | |
21 ] | |
22 | |
23 defines = [ "EVENTS_IMPLEMENTATION" ] | |
24 | |
25 deps = [ "//ipc" ] | |
26 } | |
27 | |
17 component("events_base") { | 28 component("events_base") { |
18 sources = [ | 29 sources = [ |
19 "event_constants.h", | 30 "event_constants.h", |
20 "event_switches.cc", | 31 "event_switches.cc", |
21 "event_switches.h", | 32 "event_switches.h", |
22 "events_base_export.h", | 33 "events_base_export.h", |
23 "gesture_event_details.cc", | 34 "gesture_event_details.cc", |
24 "gesture_event_details.h", | 35 "gesture_event_details.h", |
25 "keycodes/keyboard_code_conversion.cc", | 36 "keycodes/keyboard_code_conversion.cc", |
26 "keycodes/keyboard_code_conversion.h", | 37 "keycodes/keyboard_code_conversion.h", |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
300 ":events_base", | 311 ":events_base", |
301 ":events_test_support", | 312 ":events_test_support", |
302 ":gesture_detection", | 313 ":gesture_detection", |
303 "//base", | 314 "//base", |
304 "//base/test:run_all_unittests", | 315 "//base/test:run_all_unittests", |
305 "//skia", | 316 "//skia", |
306 "//testing/gtest", | 317 "//testing/gtest", |
307 "//ui/gfx:gfx_test_support", | 318 "//ui/gfx:gfx_test_support", |
308 ] | 319 ] |
309 } | 320 } |
OLD | NEW |