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

Side by Side Diff: net/third_party/nss/ssl.gyp

Issue 244593002: pkg-config-wrapper: use system_libdir for libpath (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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
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 'conditions': [ 6 'conditions': [
7 [ 'os_posix == 1 and OS != "mac" and OS != "ios"', { 7 [ 'os_posix == 1 and OS != "mac" and OS != "ios"', {
8 'conditions': [ 8 'conditions': [
9 ['sysroot!=""', { 9 ['sysroot!=""', {
10 'variables': { 10 'variables': {
11 'pkg-config': '../../../build/linux/pkg-config-wrapper "<(sysroot)" "<(target_arch)"', 11 'pkg-config': '../../../build/linux/pkg-config-wrapper "<(sysroot)" "<(target_arch)" "<(system_libdir)"',
12 }, 12 },
13 }, { 13 }, {
14 'variables': { 14 'variables': {
15 'pkg-config': 'pkg-config' 15 'pkg-config': 'pkg-config'
16 }, 16 },
17 }], 17 }],
18 ], 18 ],
19 }], 19 }],
20 ], 20 ],
21 21
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 'configurations': { 190 'configurations': {
191 'Debug_Base': { 191 'Debug_Base': {
192 'defines': [ 192 'defines': [
193 'DEBUG', 193 'DEBUG',
194 ], 194 ],
195 }, 195 },
196 }, 196 },
197 }, 197 },
198 ], 198 ],
199 } 199 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698