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 source_set("x11") { | 5 source_set("x11") { |
6 sources = [ | 6 sources = [ |
7 "client_native_pixmap_factory_x11.cc", | 7 "client_native_pixmap_factory_x11.cc", |
8 "client_native_pixmap_factory_x11.h", | 8 "client_native_pixmap_factory_x11.h", |
9 "ozone_platform_x11.cc", | 9 "ozone_platform_x11.cc", |
10 "ozone_platform_x11.h", | 10 "ozone_platform_x11.h", |
11 "x11_surface_factory.cc", | 11 "x11_surface_factory.cc", |
12 "x11_surface_factory.h", | 12 "x11_surface_factory.h", |
13 ] | 13 ] |
14 | 14 |
15 deps = [ | 15 deps = [ |
16 "//base", | 16 "//base", |
17 "//skia", | 17 "//skia", |
18 "//ui/base", | 18 "//ui/base", |
19 "//ui/display/types", | 19 "//ui/display/types", |
20 "//ui/display/util", | 20 "//ui/display/util", |
21 "//ui/events", | 21 "//ui/events", |
22 "//ui/events/devices", | 22 "//ui/events/devices", |
23 "//ui/events/ozone:events_ozone", | 23 "//ui/events/ozone:events_ozone", |
24 "//ui/events/platform", | 24 "//ui/events/platform", |
| 25 "//ui/events/platform/x11", |
25 "//ui/events/x", | 26 "//ui/events/x", |
26 "//ui/gfx", | 27 "//ui/gfx", |
27 "//ui/gfx/geometry", | 28 "//ui/gfx/geometry", |
28 "//ui/gfx/x", | 29 "//ui/gfx/x", |
29 "//ui/ozone:ozone_base", | 30 "//ui/ozone:ozone_base", |
| 31 "//ui/platform_window/x11", |
30 ] | 32 ] |
31 | 33 |
32 configs += [ "//build/config/linux:x11" ] | 34 configs += [ "//build/config/linux:x11" ] |
33 | 35 |
34 public_configs = [ "//third_party/khronos:khronos_headers" ] | 36 public_configs = [ "//third_party/khronos:khronos_headers" ] |
35 } | 37 } |
OLD | NEW |