Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Unified Diff: ui/ozone/platform/x11/BUILD.gn

Issue 1602173005: Add PlatformWindow/Event related code for Ozone X11. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes for comments. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..8bd2fa8160a85462cb8835f0870511fe58ea7918
--- /dev/null
+++ b/ui/ozone/platform/x11/BUILD.gn
@@ -0,0 +1,38 @@
+# 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.
+
+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_surface_factory.cc",
+ "x11_surface_factory.h",
+ ]
+
+ deps = [
+ "//base",
+ "//ipc",
+ "//skia",
+ "//ui/base",
+ "//ui/display/types",
+ "//ui/display/util",
+ "//ui/events",
+ "//ui/events/devices",
+ "//ui/events/ozone:events_ozone",
+ "//ui/events/platform",
+ "//ui/events/platform/x11",
+ "//ui/events/x",
+ "//ui/gfx",
+ "//ui/gfx/geometry",
+ "//ui/gfx/x",
+ "//ui/ozone:ozone_base",
+ "//ui/platform_window/x11",
+ ]
+
+ configs += [ "//build/config/linux:x11" ]
+
+ public_configs = [ "//third_party/khronos:khronos_headers" ]
+}

Powered by Google App Engine
This is Rietveld 408576698