| 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/sysroot.gni") | 6 import("//build/config/sysroot.gni") |
| 7 | 7 |
| 8 config("sdk") { | 8 config("sdk") { |
| 9 if (sysroot != "") { | 9 if (sysroot != "") { |
| 10 cflags = [ "--sysroot=" + sysroot ] | 10 cflags = [ "--sysroot=" + sysroot ] |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 } | 70 } |
| 71 | 71 |
| 72 config("xcomposite") { | 72 config("xcomposite") { |
| 73 libs = [ "Xcomposite" ] | 73 libs = [ "Xcomposite" ] |
| 74 } | 74 } |
| 75 | 75 |
| 76 config("xext") { | 76 config("xext") { |
| 77 libs = [ "Xext" ] | 77 libs = [ "Xext" ] |
| 78 } | 78 } |
| 79 | 79 |
| 80 config("xrandr") { |
| 81 libs = [ "xrandr" ] |
| 82 } |
| 83 |
| 80 config("libcap") { | 84 config("libcap") { |
| 81 libs = [ "cap" ] | 85 libs = [ "cap" ] |
| 82 } | 86 } |
| 83 | 87 |
| 84 config("libresolv") { | 88 config("libresolv") { |
| 85 libs = [ "resolv" ] | 89 libs = [ "resolv" ] |
| 86 } | 90 } |
| 87 | 91 |
| 88 pkg_config("gconf") { | 92 pkg_config("gconf") { |
| 89 packages = [ "gconf-2.0" ] | 93 packages = [ "gconf-2.0" ] |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 | 180 |
| 177 functions = [ | 181 functions = [ |
| 178 "pci_alloc", | 182 "pci_alloc", |
| 179 "pci_init", | 183 "pci_init", |
| 180 "pci_cleanup", | 184 "pci_cleanup", |
| 181 "pci_scan_bus", | 185 "pci_scan_bus", |
| 182 "pci_fill_info", | 186 "pci_fill_info", |
| 183 "pci_lookup_name", | 187 "pci_lookup_name", |
| 184 ] | 188 ] |
| 185 } | 189 } |
| OLD | NEW |