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" ] |
+ } |
+} |