Chromium Code Reviews| Index: ui/ozone/platform/x11/BUILD.gn |
| diff --git a/ui/ozone/platform/x11/BUILD.gn b/ui/ozone/platform/x11/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..88e9fc34595962aec230b8422646ba94250f38cc |
| --- /dev/null |
| +++ b/ui/ozone/platform/x11/BUILD.gn |
| @@ -0,0 +1,43 @@ |
| +# Copyright 2016 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +import("//build/config/ui.gni") |
|
spang
2016/01/20 22:32:53
why is this imported?
kylechar
2016/01/21 14:14:52
Deleted.
|
| + |
| +source_set("x11") { |
| + sources = [ |
| + "client_native_pixmap_factory_x11.cc", |
| + "client_native_pixmap_factory_x11.h", |
| + "ozone_platform_x11.cc", |
| + "ozone_platform_x11.h", |
| + "x11_event_factory.cc", |
| + "x11_event_factory.h", |
| + "x11_surface_factory.cc", |
| + "x11_surface_factory.h", |
| + "x11_window_manager_ozone.cc", |
| + "x11_window_manager_ozone.h", |
| + "x11_window_ozone.cc", |
| + "x11_window_ozone.h", |
| + ] |
| + |
| + deps = [ |
| + "//base", |
| + "//ipc", |
| + "//skia", |
| + "//ui/display/types", |
| + "//ui/display/util", |
| + "//ui/events", |
| + "//ui/events/devices", |
| + "//ui/events/ozone:events_ozone", |
| + "//ui/events/platform", |
| + "//ui/events/x", |
| + "//ui/gfx", |
| + "//ui/gfx/geometry", |
| + "//ui/gfx/x", |
| + "//ui/ozone:ozone_base", |
| + ] |
| + |
| + configs += [ "//build/config/linux:x11" ] |
| + |
| + public_configs = [ "//third_party/khronos:khronos_headers" ] |
| +} |