OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2014 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 import("//build/config/ui.gni") | |
6 | |
7 source_set("x11") { | |
8 sources = [ | |
9 "client_native_pixmap_factory_x11.cc", | |
10 "client_native_pixmap_factory_x11.h", | |
11 "ozone_platform_x11.cc", | |
12 "ozone_platform_x11.h", | |
13 "x11_event_factory.cc", | |
14 "x11_event_factory.h", | |
15 "x11_surface_factory.cc", | |
16 "x11_surface_factory.h", | |
17 "x11_window_host.cc", | |
18 "x11_window_host.h", | |
19 "x11_window_host_manager.cc", | |
20 "x11_window_host_manager.h", | |
21 ] | |
22 | |
23 deps = [ | |
24 "//base", | |
25 "//ipc", | |
26 "//skia", | |
27 "//ui/base", | |
28 "//ui/display/types", | |
29 "//ui/display/util", | |
30 "//ui/events", | |
31 "//ui/events/devices", | |
32 "//ui/events/ozone:events_ozone", | |
33 "//ui/events/ozone:events_ozone_evdev", | |
34 "//ui/events/ozone:events_ozone_layout", | |
35 "//ui/events/platform", | |
36 "//ui/events/x", | |
37 "//ui/gfx", | |
38 "//ui/gfx/geometry", | |
39 "//ui/gfx/x", | |
40 "//ui/ozone:ozone_base", | |
41 ] | |
42 | |
43 configs += [ | |
44 "//build/config/linux:x11", | |
45 "//build/config/linux:glib", | |
spang
2016/01/20 22:32:53
What's using glib?
kylechar
2016/01/21 14:14:52
Nothing was, just left over from some earlier conf
| |
46 ] | |
47 public_configs = [ "//third_party/khronos:khronos_headers" ] | |
48 } | |
OLD | NEW |