OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 component("x") { | 5 component("x") { |
| 6 output_name = "events_x" |
6 sources = [ | 7 sources = [ |
7 "events_x_export.h", | 8 "events_x_export.h", |
8 "events_x_utils.cc", | 9 "events_x_utils.cc", |
9 "events_x_utils.h", | 10 "events_x_utils.h", |
10 ] | 11 ] |
11 defines = [ "EVENTS_X_IMPLEMENTATION" ] | 12 defines = [ "EVENTS_X_IMPLEMENTATION" ] |
12 deps = [ | 13 deps = [ |
13 "//base", | 14 "//base", |
14 "//skia", | 15 "//skia", |
15 "//ui/events:events_base", | 16 "//ui/events:events_base", |
16 "//ui/events/devices", | 17 "//ui/events/devices", |
| 18 "//ui/events/devices/x11", |
17 "//ui/gfx/x", | 19 "//ui/gfx/x", |
18 ] | 20 ] |
19 configs += [ "//build/config/linux:x11" ] | 21 configs += [ "//build/config/linux:x11" ] |
20 } | 22 } |
OLD | NEW |