| 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 import("//build/config/ui.gni") |
| 5 import("//ui/ozone/ozone.gni") |
| 6 |
| 7 assert(use_x11 || ozone_platform_x11) |
| 4 | 8 |
| 5 component("x11") { | 9 component("x11") { |
| 6 output_name = "events_devices_x11" | 10 output_name = "events_devices_x11" |
| 7 | 11 |
| 8 sources = [ | 12 sources = [ |
| 9 "device_data_manager_x11.cc", | 13 "device_data_manager_x11.cc", |
| 10 "device_data_manager_x11.h", | 14 "device_data_manager_x11.h", |
| 11 "device_list_cache_x11.cc", | 15 "device_list_cache_x11.cc", |
| 12 "device_list_cache_x11.h", | 16 "device_list_cache_x11.h", |
| 13 "events_devices_x11_export.h", | 17 "events_devices_x11_export.h", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 25 "//skia", | 29 "//skia", |
| 26 "//ui/display", | 30 "//ui/display", |
| 27 "//ui/events:events_base", | 31 "//ui/events:events_base", |
| 28 "//ui/events/devices", | 32 "//ui/events/devices", |
| 29 "//ui/events/keycodes:x11", | 33 "//ui/events/keycodes:x11", |
| 30 "//ui/gfx", | 34 "//ui/gfx", |
| 31 "//ui/gfx/geometry", | 35 "//ui/gfx/geometry", |
| 32 "//ui/gfx/x", | 36 "//ui/gfx/x", |
| 33 ] | 37 ] |
| 34 } | 38 } |
| OLD | NEW |