Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: build/config/linux/BUILD.gn

Issue 682893003: Remove unnecessary libXss dependency via //build/config/linux:x11 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698