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