OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 component("x11") { |
| 6 output_name = "events_devices_x11" |
| 7 |
| 8 sources = [ |
| 9 "device_data_manager_x11.cc", |
| 10 "device_data_manager_x11.h", |
| 11 "device_list_cache_x11.cc", |
| 12 "device_list_cache_x11.h", |
| 13 "events_devices_x11_export.h", |
| 14 "touch_factory_x11.cc", |
| 15 "touch_factory_x11.h", |
| 16 ] |
| 17 |
| 18 configs += [ "//build/config/linux:x11" ] |
| 19 |
| 20 defines = [ "EVENTS_DEVICES_X11_IMPLEMENTATION" ] |
| 21 |
| 22 deps = [ |
| 23 "//base", |
| 24 "//base/third_party/dynamic_annotations", |
| 25 "//skia", |
| 26 "//ui/events:events_base", |
| 27 "//ui/events/devices", |
| 28 "//ui/gfx", |
| 29 "//ui/gfx/geometry", |
| 30 "//ui/gfx/x", |
| 31 ] |
| 32 } |
OLD | NEW |