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 import("//build/config/ui.gni") | |
spang
2016/01/20 22:32:53
why is this imported?
kylechar
2016/01/21 14:14:52
Deleted.
| |
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_manager_ozone.cc", | |
18 "x11_window_manager_ozone.h", | |
19 "x11_window_ozone.cc", | |
20 "x11_window_ozone.h", | |
21 ] | |
22 | |
23 deps = [ | |
24 "//base", | |
25 "//ipc", | |
26 "//skia", | |
27 "//ui/display/types", | |
28 "//ui/display/util", | |
29 "//ui/events", | |
30 "//ui/events/devices", | |
31 "//ui/events/ozone:events_ozone", | |
32 "//ui/events/platform", | |
33 "//ui/events/x", | |
34 "//ui/gfx", | |
35 "//ui/gfx/geometry", | |
36 "//ui/gfx/x", | |
37 "//ui/ozone:ozone_base", | |
38 ] | |
39 | |
40 configs += [ "//build/config/linux:x11" ] | |
41 | |
42 public_configs = [ "//third_party/khronos:khronos_headers" ] | |
43 } | |
OLD | NEW |