| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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") { |
| 108 libs = [ "xfixes" ] |
| 109 } |
| 110 |
| 107 config("libcap") { | 111 config("libcap") { |
| 108 libs = [ "cap" ] | 112 libs = [ "cap" ] |
| 109 } | 113 } |
| 110 | 114 |
| 111 config("libresolv") { | 115 config("libresolv") { |
| 112 libs = [ "resolv" ] | 116 libs = [ "resolv" ] |
| 113 } | 117 } |
| 114 | 118 |
| 115 pkg_config("gconf") { | 119 pkg_config("gconf") { |
| 116 packages = [ "gconf-2.0" ] | 120 packages = [ "gconf-2.0" ] |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 "pci_alloc", | 173 "pci_alloc", |
| 170 "pci_init", | 174 "pci_init", |
| 171 "pci_cleanup", | 175 "pci_cleanup", |
| 172 "pci_scan_bus", | 176 "pci_scan_bus", |
| 173 "pci_fill_info", | 177 "pci_fill_info", |
| 174 "pci_lookup_name", | 178 "pci_lookup_name", |
| 175 ] | 179 ] |
| 176 } | 180 } |
| 177 | 181 |
| 178 # Looking for libspeechd? Use //third_party/speech-dispatcher | 182 # Looking for libspeechd? Use //third_party/speech-dispatcher |
| OLD | NEW |