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

Side by Side Diff: build/linux/system.gyp

Issue 2163623003: Linux: Build with xcb (Reland) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added symbol references from ui/gfx/x 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 # If any of the linux_link_FOO below are set to 1, then the corresponding 7 # If any of the linux_link_FOO below are set to 1, then the corresponding
8 # target will be linked against the FOO library (either dynamically or 8 # target will be linked against the FOO library (either dynamically or
9 # statically, depending on the pkg-config files), as opposed to loading the 9 # statically, depending on the pkg-config files), as opposed to loading the
10 # FOO library dynamically with dlopen. 10 # FOO library dynamically with dlopen.
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 '<!@(<(pkg-config) --libs-only-L --libs-only-other x11 xi)', 226 '<!@(<(pkg-config) --libs-only-L --libs-only-other x11 xi)',
227 ], 227 ],
228 'libraries': [ 228 'libraries': [
229 '<!@(<(pkg-config) --libs-only-l x11 xi)', 229 '<!@(<(pkg-config) --libs-only-l x11 xi)',
230 ], 230 ],
231 }, 231 },
232 }], 232 }],
233 ], 233 ],
234 }, 234 },
235 { 235 {
236 'target_name': 'x11-xcb',
237 'type': 'none',
238 'direct_dependent_settings': {
239 'cflags': [
240 '<!@(<(pkg-config) --cflags x11-xcb)',
241 ],
242 },
243 'link_settings': {
244 'ldflags': [
245 '<!@(<(pkg-config) --libs-only-L --libs-only-other x11-xcb)',
246 ],
247 'libraries': [
248 '<!@(<(pkg-config) --libs-only-l x11-xcb)',
249 ],
250 },
251 },
252 {
253 'target_name': 'xcb',
254 'type': 'none',
255 'direct_dependent_settings': {
256 'cflags': [
257 '<!@(<(pkg-config) --cflags xcb)',
258 ],
259 },
260 'link_settings': {
261 'ldflags': [
262 '<!@(<(pkg-config) --libs-only-L --libs-only-other xcb)',
263 ],
264 'libraries': [
265 '<!@(<(pkg-config) --libs-only-l xcb)',
266 ],
267 },
268 },
269 {
236 'target_name': 'xcursor', 270 'target_name': 'xcursor',
237 'type': 'none', 271 'type': 'none',
238 'direct_dependent_settings': { 272 'direct_dependent_settings': {
239 'cflags': [ 273 'cflags': [
240 '<!@(<(pkg-config) --cflags xcursor)', 274 '<!@(<(pkg-config) --cflags xcursor)',
241 ], 275 ],
242 }, 276 },
243 'link_settings': { 277 'link_settings': {
244 'ldflags': [ 278 'ldflags': [
245 '<!@(<(pkg-config) --libs-only-L --libs-only-other xcursor)', 279 '<!@(<(pkg-config) --libs-only-L --libs-only-other xcursor)',
(...skipping 1015 matching lines...) Expand 10 before | Expand all | Expand 10 after
1261 ], 1295 ],
1262 'libraries': [ 1296 'libraries': [
1263 '<!@(<(pkg-config) --libs-only-l libffi)', 1297 '<!@(<(pkg-config) --libs-only-l libffi)',
1264 ], 1298 ],
1265 }, 1299 },
1266 }], 1300 }],
1267 ], 1301 ],
1268 }, 1302 },
1269 ], 1303 ],
1270 } 1304 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698