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 | 71 # Don't bother running pkg-config for these X related libraries since it just |
jamesr
2014/10/28 00:18:05
hmm, the comment here seems like a lie given that
Ben Chan
2014/10/28 00:32:00
Sorry, I'm not familiar with this 'x11' dependency
| |
72 # returns the same libs, and forking pkg-config is slow. | 72 # returns the same libs, and forking pkg-config is slow. |
73 libs = [ | 73 libs = [ |
74 "X11", | 74 "X11", |
75 "Xcomposite", | 75 "Xcomposite", |
76 "Xcursor", | 76 "Xcursor", |
77 "Xdamage", | 77 "Xdamage", |
78 "Xext", | 78 "Xext", |
79 "Xfixes", | 79 "Xfixes", |
80 "Xi", | 80 "Xi", |
81 "Xrender", | 81 "Xrender", |
82 "Xss", | |
83 "Xtst", | 82 "Xtst", |
84 ] | 83 ] |
85 } | 84 } |
86 | 85 |
87 config("xcomposite") { | 86 config("xcomposite") { |
88 libs = [ "Xcomposite" ] | 87 libs = [ "Xcomposite" ] |
89 } | 88 } |
90 | 89 |
91 config("xext") { | 90 config("xext") { |
92 libs = [ "Xext" ] | 91 libs = [ "Xext" ] |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
209 "pci_alloc", | 208 "pci_alloc", |
210 "pci_init", | 209 "pci_init", |
211 "pci_cleanup", | 210 "pci_cleanup", |
212 "pci_scan_bus", | 211 "pci_scan_bus", |
213 "pci_fill_info", | 212 "pci_fill_info", |
214 "pci_lookup_name", | 213 "pci_lookup_name", |
215 ] | 214 ] |
216 } | 215 } |
217 | 216 |
218 # Looking for libspeechd? Use //third_party/speech-dispatcher | 217 # Looking for libspeechd? Use //third_party/speech-dispatcher |
OLD | NEW |