OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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/linux/pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/sysroot.gni") | 7 import("//build/config/sysroot.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//tools/generate_library_loader/generate_library_loader.gni") | 9 import("//tools/generate_library_loader/generate_library_loader.gni") |
10 | 10 |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 } | 111 } |
112 | 112 |
113 config("libcap") { | 113 config("libcap") { |
114 libs = [ "cap" ] | 114 libs = [ "cap" ] |
115 } | 115 } |
116 | 116 |
117 config("xi") { | 117 config("xi") { |
118 libs = [ "Xi" ] | 118 libs = [ "Xi" ] |
119 } | 119 } |
120 | 120 |
| 121 config("xtst") { |
| 122 libs = [ "Xtst" ] |
| 123 } |
| 124 |
121 config("libresolv") { | 125 config("libresolv") { |
122 libs = [ "resolv" ] | 126 libs = [ "resolv" ] |
123 } | 127 } |
124 | 128 |
125 # CrOS doesn't install GTK, gconf or any gnome packages. | 129 # CrOS doesn't install GTK, gconf or any gnome packages. |
126 if (!is_chromeos) { | 130 if (!is_chromeos) { |
127 # These packages should _only_ be expected when building for a target. | 131 # These packages should _only_ be expected when building for a target. |
128 # If these extra checks are not run, gconf is required when building host | 132 # If these extra checks are not run, gconf is required when building host |
129 # tools for a CrOS build. | 133 # tools for a CrOS build. |
130 if (current_toolchain == default_toolchain) { | 134 if (current_toolchain == default_toolchain) { |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 | 222 |
219 functions = gypi_values.libudev_functions | 223 functions = gypi_values.libudev_functions |
220 } | 224 } |
221 | 225 |
222 group("udev") { | 226 group("udev") { |
223 deps = [ | 227 deps = [ |
224 ":udev0_loader", | 228 ":udev0_loader", |
225 ":udev1_loader", | 229 ":udev1_loader", |
226 ] | 230 ] |
227 } | 231 } |
OLD | NEW |