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

Unified Diff: ui/display/util/BUILD.gn

Issue 393953008: Add ui/display, message_center, webview to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 6 years, 5 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
« no previous file with comments | « ui/display/types/BUILD.gn ('k') | ui/message_center/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/util/BUILD.gn
diff --git a/ui/display/util/BUILD.gn b/ui/display/util/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..83f456db3a9cdce85c5533fa4b634c9196c7c7c7
--- /dev/null
+++ b/ui/display/util/BUILD.gn
@@ -0,0 +1,35 @@
+# Copyright 2014 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")
+
+component("util") {
+ output_name = "display_util"
+ sources = [
+ "display_util.cc",
+ "display_util.h",
+ "display_util_export.h",
+ "edid_parser.cc",
+ "edid_parser.h",
+ ]
+
+ defines = [ "DISPLAY_UTIL_IMPLEMENTATION" ]
+
+ deps = [
+ "//base",
+ "//ui/gfx/geometry",
+ ]
+
+ if (use_x11) {
+ sources += [
+ "x11/edid_parser_x11.cc",
+ "x11/edid_parser_x11.h",
+ ]
+ configs += [ "//build/config/linux:xrandr" ]
+ deps += [ "//ui/gfx/x" ]
+ }
+ if (is_chromeos) {
+ deps += [ "//ui/display/types" ]
+ }
+}
« no previous file with comments | « ui/display/types/BUILD.gn ('k') | ui/message_center/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698