| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 90 |
| 91 config("xcomposite") { | 91 config("xcomposite") { |
| 92 libs = [ "Xcomposite" ] | 92 libs = [ "Xcomposite" ] |
| 93 } | 93 } |
| 94 | 94 |
| 95 config("xext") { | 95 config("xext") { |
| 96 libs = [ "Xext" ] | 96 libs = [ "Xext" ] |
| 97 } | 97 } |
| 98 | 98 |
| 99 config("xrandr") { | 99 config("xrandr") { |
| 100 libs = [ "xrandr" ] | 100 libs = [ "Xrandr" ] |
| 101 } | 101 } |
| 102 | 102 |
| 103 config("xscrnsaver") { | 103 config("xscrnsaver") { |
| 104 libs = [ "Xss" ] | 104 libs = [ "Xss" ] |
| 105 } | 105 } |
| 106 | 106 |
| 107 config("xfixes") { | 107 config("xfixes") { |
| 108 libs = [ "xfixes" ] | 108 libs = [ "xfixes" ] |
| 109 } | 109 } |
| 110 | 110 |
| 111 config("libcap") { | 111 config("libcap") { |
| 112 libs = [ "cap" ] | 112 libs = [ "cap" ] |
| 113 } | 113 } |
| 114 | 114 |
| 115 config("xi") { |
| 116 libs = [ "Xi" ] |
| 117 } |
| 118 |
| 115 config("libresolv") { | 119 config("libresolv") { |
| 116 libs = [ "resolv" ] | 120 libs = [ "resolv" ] |
| 117 } | 121 } |
| 118 | 122 |
| 119 pkg_config("gconf") { | 123 pkg_config("gconf") { |
| 120 packages = [ "gconf-2.0" ] | 124 packages = [ "gconf-2.0" ] |
| 121 defines = [ "USE_GCONF" ] | 125 defines = [ "USE_GCONF" ] |
| 122 } | 126 } |
| 123 | 127 |
| 124 # If brlapi isn't needed, don't require it to be installed. | 128 # If brlapi isn't needed, don't require it to be installed. |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 "pci_alloc", | 177 "pci_alloc", |
| 174 "pci_init", | 178 "pci_init", |
| 175 "pci_cleanup", | 179 "pci_cleanup", |
| 176 "pci_scan_bus", | 180 "pci_scan_bus", |
| 177 "pci_fill_info", | 181 "pci_fill_info", |
| 178 "pci_lookup_name", | 182 "pci_lookup_name", |
| 179 ] | 183 ] |
| 180 } | 184 } |
| 181 | 185 |
| 182 # Looking for libspeechd? Use //third_party/speech-dispatcher | 186 # Looking for libspeechd? Use //third_party/speech-dispatcher |
| OLD | NEW |