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

Side by Side Diff: crypto/crypto.gyp

Issue 9701059: mac: Make crypto_unittests depend on nspr (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 | no next file » | 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 'sources!': [ 255 'sources!': [
256 'rsa_private_key_nss_unittest.cc', 256 'rsa_private_key_nss_unittest.cc',
257 'openpgp_symmetric_encryption_unittest.cc', 257 'openpgp_symmetric_encryption_unittest.cc',
258 ] 258 ]
259 }], 259 }],
260 [ 'OS == "mac" or OS == "win"', { 260 [ 'OS == "mac" or OS == "win"', {
261 'dependencies': [ 261 'dependencies': [
262 '../third_party/nss/nss.gyp:nss', 262 '../third_party/nss/nss.gyp:nss',
263 ], 263 ],
264 }], 264 }],
265 [ 'OS == "mac"', {
266 'dependencies': [
267 '../third_party/nss/nss.gyp:nspr',
268 ],
269 }],
265 [ 'use_openssl==1', { 270 [ 'use_openssl==1', {
266 'sources!': [ 271 'sources!': [
267 'nss_util_unittest.cc', 272 'nss_util_unittest.cc',
268 'openpgp_symmetric_encryption_unittest.cc', 273 'openpgp_symmetric_encryption_unittest.cc',
269 'rsa_private_key_nss_unittest.cc', 274 'rsa_private_key_nss_unittest.cc',
270 ], 275 ],
271 }], 276 }],
272 ], 277 ],
273 }, 278 },
274 ], 279 ],
275 } 280 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698