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

Unified Diff: ui/platform_window/BUILD.gn

Issue 1285183008: Ozone integration. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 4 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/platform_window/BUILD.gn
diff --git a/ui/platform_window/BUILD.gn b/ui/platform_window/BUILD.gn
index 09e92130c0c460a9bab290891fd9dc1c542dd9a2..aa26446b046d96cff781e5f103f6730e7737b882 100644
--- a/ui/platform_window/BUILD.gn
+++ b/ui/platform_window/BUILD.gn
@@ -2,13 +2,12 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-component("platform_window") {
- defines = [ "PLATFORM_WINDOW_IMPLEMENTATION" ]
+import("//build/config/ui.gni")
+source_set("platform_window") {
sources = [
"platform_window.h",
"platform_window_delegate.h",
- "platform_window_export.h",
]
deps = [
@@ -16,3 +15,11 @@ component("platform_window") {
"//ui/gfx",
]
}
+
+group("platform_impls") {
+ if (use_x11) {
+ deps = [
+ "//ui/platform_window/x11",
+ ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698