Revert 87309 - Second attempt to fix linux redux builder

Numerous targets were depending on linux/system.gyp:nss even on the openssl build and the gyp update means it shows up as a link error.

BUG=None
TEST=Builds with and without use_openssl=1

Review URL: http://codereview.chromium.org/7050040

TBR=joth@chromium.org
Review URL: http://codereview.chromium.org/7054041

git-svn-id: http://src.chromium.org/svn/trunk/src/build@87315 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
mirandac@chromium.org 2011-05-31 17:02:45 +00:00
Родитель c5403b209c
Коммит 052dc43fda
1 изменённых файлов: 5 добавлений и 11 удалений

Просмотреть файл

@ -74,17 +74,12 @@
}]]
},
{
'target_name': 'ssl',
'target_name': 'nss',
'type': 'settings',
'conditions': [
['_toolset=="target"', {
'conditions': [
['use_openssl==1', {
'dependencies': [
'../../third_party/openssl/openssl.gyp:openssl',
],
}],
['use_openssl==0 and use_system_ssl==0', {
['use_system_ssl==0', {
'dependencies': [
'../../net/third_party/nss/ssl.gyp:ssl',
'../../third_party/zlib/zlib.gyp:zlib',
@ -111,8 +106,7 @@
'<!@(<(pkg-config) --libs-only-l nss | sed -e "s/-lssl3//")',
],
},
}],
['use_openssl==0 and use_system_ssl==1', {
}, {
'direct_dependent_settings': {
'cflags': [
'<!@(<(pkg-config) --cflags nss)',
@ -129,8 +123,8 @@
'<!@(<(pkg-config) --libs-only-l nss)',
],
},
}],
]
}
]]
}],
],
},