| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 component("util") { | 7 component("util") { |
| 8 output_name = "display_util" | 8 output_name = "display_util" |
| 9 sources = [ | 9 sources = [ |
| 10 "display_util.cc", | 10 "display_util.cc", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 sources += [ | 26 sources += [ |
| 27 "x11/edid_parser_x11.cc", | 27 "x11/edid_parser_x11.cc", |
| 28 "x11/edid_parser_x11.h", | 28 "x11/edid_parser_x11.h", |
| 29 ] | 29 ] |
| 30 configs += [ | 30 configs += [ |
| 31 "//build/config/linux:x11", | 31 "//build/config/linux:x11", |
| 32 "//build/config/linux:xrandr", | 32 "//build/config/linux:xrandr", |
| 33 ] | 33 ] |
| 34 deps += [ "//ui/gfx/x" ] | 34 deps += [ "//ui/gfx/x" ] |
| 35 } | 35 } |
| 36 if (is_chromeos) { | 36 if (is_chromeos_ui) { |
| 37 deps += [ "//ui/display/types" ] | 37 deps += [ "//ui/display/types" ] |
| 38 } | 38 } |
| 39 } | 39 } |
| OLD | NEW |