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

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

Issue 1480002: GYP changes for FreeBSD and OpenBSD (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 == "linux"', { 7 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', {
8 'conditions': [ 8 'conditions': [
9 ['sysroot!=""', { 9 ['sysroot!=""', {
10 'variables': { 10 'variables': {
11 'pkg-config': '../../../build/linux/pkg-config-wrapper "<(sysroot)"' , 11 'pkg-config': '../../../build/linux/pkg-config-wrapper "<(sysroot)"' ,
12 }, 12 },
13 }, { 13 }, {
14 'variables': { 14 'variables': {
15 'pkg-config': 'pkg-config' 15 'pkg-config': 'pkg-config'
16 }, 16 },
17 }], 17 }],
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 'defines': [ 70 'defines': [
71 'NSS_ENABLE_ECC', 71 'NSS_ENABLE_ECC',
72 'NSS_ENABLE_ZLIB', 72 'NSS_ENABLE_ZLIB',
73 'USE_UTIL_DIRECTLY', 73 'USE_UTIL_DIRECTLY',
74 ], 74 ],
75 'defines!': [ 75 'defines!': [
76 # Regrettably, NSS can't be compiled with NO_NSPR_10_SUPPORT yet. 76 # Regrettably, NSS can't be compiled with NO_NSPR_10_SUPPORT yet.
77 'NO_NSPR_10_SUPPORT', 77 'NO_NSPR_10_SUPPORT',
78 ], 78 ],
79 'conditions': [ 79 'conditions': [
80 [ 'OS == "linux"', { 80 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', {
81 'sources!': [ 81 'sources!': [
82 'ssl/os2_err.c', 82 'ssl/os2_err.c',
83 'ssl/os2_err.h', 83 'ssl/os2_err.h',
84 'ssl/win32err.c', 84 'ssl/win32err.c',
85 'ssl/win32err.h', 85 'ssl/win32err.h',
86 ], 86 ],
87 'defines': [ 87 'defines': [
88 # These macros are needed only for compiling the files in 88 # These macros are needed only for compiling the files in
89 # ssl/bodge. 89 # ssl/bodge.
90 'SHLIB_PREFIX="lib"', 90 'SHLIB_PREFIX="lib"',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 }, 135 },
136 }, 136 },
137 ], 137 ],
138 } 138 }
139 139
140 # Local Variables: 140 # Local Variables:
141 # tab-width:2 141 # tab-width:2
142 # indent-tabs-mode:nil 142 # indent-tabs-mode:nil
143 # End: 143 # End:
144 # vim: set expandtab tabstop=2 shiftwidth=2: 144 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698