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 29 matching lines...) Expand all Loading... |
40 pkg_config("gtk") { | 40 pkg_config("gtk") { |
41 # Gtk requires gmodule, but it does not list it as a dependency in some | 41 # Gtk requires gmodule, but it does not list it as a dependency in some |
42 # misconfigured systems. | 42 # misconfigured systems. |
43 packages = [ "gmodule-2.0", "gtk+-2.0", "gthread-2.0" ] | 43 packages = [ "gmodule-2.0", "gtk+-2.0", "gthread-2.0" ] |
44 } | 44 } |
45 | 45 |
46 pkg_config("pangocairo") { | 46 pkg_config("pangocairo") { |
47 packages = [ "pangocairo" ] | 47 packages = [ "pangocairo" ] |
48 } | 48 } |
49 | 49 |
| 50 pkg_config("pangoft2") { |
| 51 packages = [ "pangoft2" ] |
| 52 } |
| 53 |
50 pkg_config("udev") { | 54 pkg_config("udev") { |
51 packages = [ "libudev" ] | 55 packages = [ "libudev" ] |
52 } | 56 } |
53 | 57 |
54 # Note: if your target also depends on //dbus, you don't need to add this | 58 # Note: if your target also depends on //dbus, you don't need to add this |
55 # config (it will get added automatically if you depend on //dbus). | 59 # config (it will get added automatically if you depend on //dbus). |
56 pkg_config("dbus") { | 60 pkg_config("dbus") { |
57 packages = [ "dbus-1" ] | 61 packages = [ "dbus-1" ] |
58 } | 62 } |
59 | 63 |
(...skipping 117 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 |