| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 100 |
| 101 config("xrandr") { | 101 config("xrandr") { |
| 102 libs = [ "Xrandr" ] | 102 libs = [ "Xrandr" ] |
| 103 } | 103 } |
| 104 | 104 |
| 105 config("xscrnsaver") { | 105 config("xscrnsaver") { |
| 106 libs = [ "Xss" ] | 106 libs = [ "Xss" ] |
| 107 } | 107 } |
| 108 | 108 |
| 109 config("xfixes") { | 109 config("xfixes") { |
| 110 libs = [ "xfixes" ] | 110 libs = [ "Xfixes" ] |
| 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 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 "pci_alloc", | 179 "pci_alloc", |
| 180 "pci_init", | 180 "pci_init", |
| 181 "pci_cleanup", | 181 "pci_cleanup", |
| 182 "pci_scan_bus", | 182 "pci_scan_bus", |
| 183 "pci_fill_info", | 183 "pci_fill_info", |
| 184 "pci_lookup_name", | 184 "pci_lookup_name", |
| 185 ] | 185 ] |
| 186 } | 186 } |
| 187 | 187 |
| 188 # Looking for libspeechd? Use //third_party/speech-dispatcher | 188 # Looking for libspeechd? Use //third_party/speech-dispatcher |
| OLD | NEW |