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

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

Issue 1151753002: Fix use of 'sysroot' variable in harfbuzz.gyp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 | « media/media.gyp ('k') | third_party/harfbuzz-ng/harfbuzz.gyp » ('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 'conditions': [
7 [ 'os_posix == 1 and OS != "mac" and OS != "ios"', {
8 'conditions': [
9 ['sysroot!=""', {
10 'variables': {
11 'pkg-config': '../../../build/linux/pkg-config-wrapper "<(sysroot)" "<(target_arch)" "<(system_libdir)"',
12 },
13 }, {
14 'variables': {
15 'pkg-config': 'pkg-config'
16 },
17 }],
18 ],
19 }],
20 ],
21
22 'targets': [ 6 'targets': [
23 { 7 {
24 'target_name': 'libssl', 8 'target_name': 'libssl',
25 'type': '<(component)', 9 'type': '<(component)',
26 'product_name': 'crssl', # Don't conflict with OpenSSL's libssl 10 'product_name': 'crssl', # Don't conflict with OpenSSL's libssl
27 'sources': [ 11 'sources': [
28 'ssl/SSLerrs.h', 12 'ssl/SSLerrs.h',
29 'ssl/authcert.c', 13 'ssl/authcert.c',
30 'ssl/bodge/secitem_array.c', 14 'ssl/bodge/secitem_array.c',
31 'ssl/cmpcert.c', 15 'ssl/cmpcert.c',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 'configurations': { 176 'configurations': {
193 'Debug_Base': { 177 'Debug_Base': {
194 'defines': [ 178 'defines': [
195 'DEBUG', 179 'DEBUG',
196 ], 180 ],
197 }, 181 },
198 }, 182 },
199 }, 183 },
200 ], 184 ],
201 } 185 }
OLDNEW
« no previous file with comments | « media/media.gyp ('k') | third_party/harfbuzz-ng/harfbuzz.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698