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