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

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

Issue 462433002: make it possible to disable the use of libpci on linux again (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove unneeded import Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | gpu/config/BUILD.gn » ('j') | 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) 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 'conditions': [ 7 'conditions': [
8 ['sysroot!=""', { 8 ['sysroot!=""', {
9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)" "<(system_libdir)"', 9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)" "<(system_libdir)"',
10 }, { 10 }, {
11 'pkg-config': 'pkg-config', 11 'pkg-config': 'pkg-config',
12 }], 12 }],
13 ], 13 ],
14 14
15 # If any of the linux_link_FOO below are set to 1, then the corresponding
16 # target will be linked against the FOO library (either dynamically or
17 # statically, depending on the pkg-config files), as opposed to loading the
18 # FOO library dynamically with dlopen.
15 'linux_link_libgps%': 0, 19 'linux_link_libgps%': 0,
16 'linux_link_libpci%': 0, 20 'linux_link_libpci%': 0,
17 'linux_link_libspeechd%': 0, 21 'linux_link_libspeechd%': 0,
18 'linux_link_libbrlapi%': 0, 22 'linux_link_libbrlapi%': 0,
19 }, 23 },
20 'conditions': [ 24 'conditions': [
21 [ 'chromeos==0 and use_ozone==0', { 25 [ 'chromeos==0 and use_ozone==0', {
22 # Hide GTK and related dependencies for Chrome OS and Ozone, so they won't get 26 # Hide GTK and related dependencies for Chrome OS and Ozone, so they won't get
23 # added back to Chrome OS and Ozone. Don't try to use GTK on Chrome OS and Ozone. 27 # added back to Chrome OS and Ozone. Don't try to use GTK on Chrome OS and Ozone.
24 'targets': [ 28 'targets': [
(...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after
1045 ], 1049 ],
1046 'libraries': [ 1050 'libraries': [
1047 '<!@(<(pkg-config) --libs-only-l libudev)', 1051 '<!@(<(pkg-config) --libs-only-l libudev)',
1048 ], 1052 ],
1049 }, 1053 },
1050 }], 1054 }],
1051 ], 1055 ],
1052 }, 1056 },
1053 ], 1057 ],
1054 } 1058 }
OLDNEW
« no previous file with comments | « no previous file | gpu/config/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698