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 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//tools/generate_library_loader/generate_library_loader.gni") | 8 import("//tools/generate_library_loader/generate_library_loader.gni") |
9 | 9 |
10 config("sdk") { | 10 config("sdk") { |
(...skipping 28 matching lines...) Expand all Loading... |
39 pkg_config("gtk") { | 39 pkg_config("gtk") { |
40 # Gtk requires gmodule, but it does not list it as a dependency in some | 40 # Gtk requires gmodule, but it does not list it as a dependency in some |
41 # misconfigured systems. | 41 # misconfigured systems. |
42 packages = [ "gmodule-2.0", "gtk+-2.0", "gthread-2.0" ] | 42 packages = [ "gmodule-2.0", "gtk+-2.0", "gthread-2.0" ] |
43 } | 43 } |
44 | 44 |
45 pkg_config("pangocairo") { | 45 pkg_config("pangocairo") { |
46 packages = [ "pangocairo" ] | 46 packages = [ "pangocairo" ] |
47 } | 47 } |
48 | 48 |
| 49 pkg_config("pangoft2") { |
| 50 packages = [ "pangoft2" ] |
| 51 } |
| 52 |
49 pkg_config("udev") { | 53 pkg_config("udev") { |
50 packages = [ "libudev" ] | 54 packages = [ "libudev" ] |
51 } | 55 } |
52 | 56 |
53 # Note: if your target also depends on //dbus, you don't need to add this | 57 # Note: if your target also depends on //dbus, you don't need to add this |
54 # config (it will get added automatically if you depend on //dbus). | 58 # config (it will get added automatically if you depend on //dbus). |
55 pkg_config("dbus") { | 59 pkg_config("dbus") { |
56 packages = [ "dbus-1" ] | 60 packages = [ "dbus-1" ] |
57 } | 61 } |
58 | 62 |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 "pci_alloc", | 156 "pci_alloc", |
153 "pci_init", | 157 "pci_init", |
154 "pci_cleanup", | 158 "pci_cleanup", |
155 "pci_scan_bus", | 159 "pci_scan_bus", |
156 "pci_fill_info", | 160 "pci_fill_info", |
157 "pci_lookup_name", | 161 "pci_lookup_name", |
158 ] | 162 ] |
159 } | 163 } |
160 | 164 |
161 # Looking for libspeechd? Use //third_party/speech-dispatcher | 165 # Looking for libspeechd? Use //third_party/speech-dispatcher |
OLD | NEW |