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

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

Issue 1542013005: Add a new driver bug workaround SANDBOX_START_EARLY Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add support for gn build Created 4 years, 7 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 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after
1289 'ldflags': [ 1289 'ldflags': [
1290 '<!@(<(pkg-config) --libs-only-L --libs-only-other libffi)', 1290 '<!@(<(pkg-config) --libs-only-L --libs-only-other libffi)',
1291 ], 1291 ],
1292 'libraries': [ 1292 'libraries': [
1293 '<!@(<(pkg-config) --libs-only-l libffi)', 1293 '<!@(<(pkg-config) --libs-only-l libffi)',
1294 ], 1294 ],
1295 }, 1295 },
1296 }], 1296 }],
1297 ], 1297 ],
1298 }, 1298 },
1299 {
1300 'target_name': 'dridriverdir',
1301 'type': 'none',
1302 'conditions': [
1303 ['_toolset=="target"', {
1304 'direct_dependent_settings': {
1305 'defines': [
1306 'DRI_DRIVER_DIR="<!@(<(pkg-config) --variable=dridriverdir dri)"',
1307 ],
1308 },
1309 }],
1310 ],
1311 },
1299 ], 1312 ],
1300 } 1313 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698