| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 pkg_config("libevdev-cros") { | 61 pkg_config("libevdev-cros") { |
| 62 packages = [ "libevdev-cros" ] | 62 packages = [ "libevdev-cros" ] |
| 63 } | 63 } |
| 64 | 64 |
| 65 pkg_config("libgestures") { | 65 pkg_config("libgestures") { |
| 66 packages = [ "libgestures" ] | 66 packages = [ "libgestures" ] |
| 67 } | 67 } |
| 68 } | 68 } |
| 69 | 69 |
| 70 config("x11") { | 70 config("x11") { |
| 71 # Don't bother running pkg-config for these X related libraries since it just | |
| 72 # returns the same libs, and forking pkg-config is slow. | |
| 73 libs = [ | 71 libs = [ |
| 74 "X11", | 72 "X11", |
| 75 "Xcomposite", | 73 "Xcomposite", |
| 76 "Xcursor", | 74 "Xcursor", |
| 77 "Xdamage", | 75 "Xdamage", |
| 78 "Xext", | 76 "Xext", |
| 79 "Xfixes", | 77 "Xfixes", |
| 80 "Xi", | 78 "Xi", |
| 81 "Xrender", | 79 "Xrender", |
| 82 "Xss", | |
| 83 "Xtst", | 80 "Xtst", |
| 84 ] | 81 ] |
| 85 } | 82 } |
| 86 | 83 |
| 87 config("xcomposite") { | 84 config("xcomposite") { |
| 88 libs = [ "Xcomposite" ] | 85 libs = [ "Xcomposite" ] |
| 89 } | 86 } |
| 90 | 87 |
| 91 config("xext") { | 88 config("xext") { |
| 92 libs = [ "Xext" ] | 89 libs = [ "Xext" ] |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 "pci_alloc", | 206 "pci_alloc", |
| 210 "pci_init", | 207 "pci_init", |
| 211 "pci_cleanup", | 208 "pci_cleanup", |
| 212 "pci_scan_bus", | 209 "pci_scan_bus", |
| 213 "pci_fill_info", | 210 "pci_fill_info", |
| 214 "pci_lookup_name", | 211 "pci_lookup_name", |
| 215 ] | 212 ] |
| 216 } | 213 } |
| 217 | 214 |
| 218 # Looking for libspeechd? Use //third_party/speech-dispatcher | 215 # Looking for libspeechd? Use //third_party/speech-dispatcher |
| OLD | NEW |