| 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 } | 40 } |
| 41 | 41 |
| 42 pkg_config("pangocairo") { | 42 pkg_config("pangocairo") { |
| 43 packages = [ "pangocairo" ] | 43 packages = [ "pangocairo" ] |
| 44 } | 44 } |
| 45 | 45 |
| 46 pkg_config("pangoft2") { | 46 pkg_config("pangoft2") { |
| 47 packages = [ "pangoft2" ] | 47 packages = [ "pangoft2" ] |
| 48 } | 48 } |
| 49 | 49 |
| 50 if (use_udev) { | 50 pkg_config("udev") { |
| 51 pkg_config("udev") { | 51 packages = [ "libudev" ] |
| 52 packages = [ "libudev" ] | |
| 53 } | |
| 54 } | 52 } |
| 55 | 53 |
| 56 # Note: if your target also depends on //dbus, you don't need to add this | 54 # Note: if your target also depends on //dbus, you don't need to add this |
| 57 # config (it will get added automatically if you depend on //dbus). | 55 # config (it will get added automatically if you depend on //dbus). |
| 58 pkg_config("dbus") { | 56 pkg_config("dbus") { |
| 59 packages = [ "dbus-1" ] | 57 packages = [ "dbus-1" ] |
| 60 } | 58 } |
| 61 | 59 |
| 62 pkg_config("gnome_keyring") { | 60 pkg_config("gnome_keyring") { |
| 63 packages = [ "gnome-keyring-1" ] | 61 packages = [ "gnome-keyring-1" ] |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 "pci_alloc", | 177 "pci_alloc", |
| 180 "pci_init", | 178 "pci_init", |
| 181 "pci_cleanup", | 179 "pci_cleanup", |
| 182 "pci_scan_bus", | 180 "pci_scan_bus", |
| 183 "pci_fill_info", | 181 "pci_fill_info", |
| 184 "pci_lookup_name", | 182 "pci_lookup_name", |
| 185 ] | 183 ] |
| 186 } | 184 } |
| 187 | 185 |
| 188 # Looking for libspeechd? Use //third_party/speech-dispatcher | 186 # Looking for libspeechd? Use //third_party/speech-dispatcher |
| OLD | NEW |