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

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

Issue 2163623003: Linux: Build with xcb (Reland) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert all expected_deps* Created 4 years, 4 months 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 | build/linux/sysroot_scripts/install-sysroot.py » ('j') | ui/base/x/BUILD.gn » ('J')
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/ui.gni") 6 import("//build/config/ui.gni")
7 7
8 group("linux") { 8 group("linux") {
9 visibility = [ "//:optimize_gn_gen" ] 9 visibility = [ "//:optimize_gn_gen" ]
10 } 10 }
(...skipping 19 matching lines...) Expand all
30 } 30 }
31 31
32 config("fontconfig") { 32 config("fontconfig") {
33 visibility = [ "//build/linux:fontconfig" ] 33 visibility = [ "//build/linux:fontconfig" ]
34 libs = [ "fontconfig" ] 34 libs = [ "fontconfig" ]
35 } 35 }
36 36
37 config("x11") { 37 config("x11") {
38 libs = [ 38 libs = [
39 "X11", 39 "X11",
40 "X11-xcb",
41 "xcb",
40 "Xcomposite", 42 "Xcomposite",
41 "Xcursor", 43 "Xcursor",
42 "Xdamage", 44 "Xdamage",
43 "Xext", 45 "Xext",
44 "Xfixes", 46 "Xfixes",
45 "Xi", 47 "Xi",
46 "Xrender", 48 "Xrender",
47 "Xtst", 49 "Xtst",
48 ] 50 ]
49 } 51 }
50 52
53 config("x11-xcb") {
54 libs = [ "X11-xcb" ]
55 }
56
57 config("xcb") {
58 libs = [ "xcb" ]
59 }
60
51 config("xcomposite") { 61 config("xcomposite") {
52 libs = [ "Xcomposite" ] 62 libs = [ "Xcomposite" ]
53 } 63 }
54 64
55 config("xext") { 65 config("xext") {
56 libs = [ "Xext" ] 66 libs = [ "Xext" ]
57 } 67 }
58 68
59 config("xrandr") { 69 config("xrandr") {
60 libs = [ "Xrandr" ] 70 libs = [ "Xrandr" ]
(...skipping 26 matching lines...) Expand all
87 if (use_glib) { 97 if (use_glib) {
88 pkg_config("glib") { 98 pkg_config("glib") {
89 packages = [ 99 packages = [
90 "glib-2.0", 100 "glib-2.0",
91 "gmodule-2.0", 101 "gmodule-2.0",
92 "gobject-2.0", 102 "gobject-2.0",
93 "gthread-2.0", 103 "gthread-2.0",
94 ] 104 ]
95 } 105 }
96 } 106 }
OLDNEW
« no previous file with comments | « no previous file | build/linux/sysroot_scripts/install-sysroot.py » ('j') | ui/base/x/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698