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 21 matching lines...) Expand all Loading... |
32 pkg_config("glib") { | 32 pkg_config("glib") { |
33 packages = [ "glib-2.0", "gmodule-2.0", "gobject-2.0", "gthread-2.0" ] | 33 packages = [ "glib-2.0", "gmodule-2.0", "gobject-2.0", "gthread-2.0" ] |
34 } | 34 } |
35 | 35 |
36 pkg_config("gtk") { | 36 pkg_config("gtk") { |
37 # Gtk requires gmodule, but it does not list it as a dependency in some | 37 # Gtk requires gmodule, but it does not list it as a dependency in some |
38 # misconfigured systems. | 38 # misconfigured systems. |
39 packages = [ "gmodule-2.0", "gtk+-2.0", "gthread-2.0" ] | 39 packages = [ "gmodule-2.0", "gtk+-2.0", "gthread-2.0" ] |
40 } | 40 } |
41 | 41 |
| 42 pkg_config("gtkprint") { |
| 43 packages = [ "gtk+-unix-print-2.0" ] |
| 44 } |
| 45 |
42 pkg_config("pangocairo") { | 46 pkg_config("pangocairo") { |
43 packages = [ "pangocairo" ] | 47 packages = [ "pangocairo" ] |
44 } | 48 } |
45 | 49 |
46 pkg_config("pangoft2") { | 50 pkg_config("pangoft2") { |
47 packages = [ "pangoft2" ] | 51 packages = [ "pangoft2" ] |
48 } | 52 } |
49 | 53 |
50 pkg_config("udev") { | 54 pkg_config("udev") { |
51 packages = [ "libudev" ] | 55 packages = [ "libudev" ] |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 "pci_alloc", | 181 "pci_alloc", |
178 "pci_init", | 182 "pci_init", |
179 "pci_cleanup", | 183 "pci_cleanup", |
180 "pci_scan_bus", | 184 "pci_scan_bus", |
181 "pci_fill_info", | 185 "pci_fill_info", |
182 "pci_lookup_name", | 186 "pci_lookup_name", |
183 ] | 187 ] |
184 } | 188 } |
185 | 189 |
186 # Looking for libspeechd? Use //third_party/speech-dispatcher | 190 # Looking for libspeechd? Use //third_party/speech-dispatcher |
OLD | NEW |