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

Side by Side Diff: crypto/crypto.gyp

Issue 9328034: Upstream: Build crypto_unittests for Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 'openpgp_symmetric_encryption_unittest.cc', 230 'openpgp_symmetric_encryption_unittest.cc',
231 ], 231 ],
232 'dependencies': [ 232 'dependencies': [
233 'crypto', 233 'crypto',
234 '../base/base.gyp:base', 234 '../base/base.gyp:base',
235 '../base/base.gyp:test_support_base', 235 '../base/base.gyp:test_support_base',
236 '../testing/gmock.gyp:gmock', 236 '../testing/gmock.gyp:gmock',
237 '../testing/gtest.gyp:gtest', 237 '../testing/gtest.gyp:gtest',
238 ], 238 ],
239 'conditions': [ 239 'conditions': [
240 [ 'os_posix == 1 and OS != "mac"', { 240 [ 'os_posix == 1 and OS != "mac" and OS != "android"', {
241 'conditions': [ 241 'conditions': [
242 [ 'linux_use_tcmalloc==1', { 242 [ 'linux_use_tcmalloc==1', {
243 'dependencies': [ 243 'dependencies': [
244 '../base/allocator/allocator.gyp:allocator', 244 '../base/allocator/allocator.gyp:allocator',
245 ], 245 ],
246 }, 246 },
247 ], 247 ],
248 ], 248 ],
249 'dependencies': [ 249 'dependencies': [
250 '../build/linux/system.gyp:ssl', 250 '../build/linux/system.gyp:ssl',
251 ], 251 ],
252 }, { # os_posix != 1 or OS == "mac" 252 }, { # os_posix != 1 or OS == "mac" or OS == "android"
253 'sources!': [ 253 'sources!': [
254 'rsa_private_key_nss_unittest.cc', 254 'rsa_private_key_nss_unittest.cc',
255 'openpgp_symmetric_encryption_unittest.cc', 255 'openpgp_symmetric_encryption_unittest.cc',
256 ] 256 ]
257 }], 257 }],
258 [ 'OS == "mac" or OS == "win"', { 258 [ 'OS == "mac" or OS == "win"', {
259 'dependencies': [ 259 'dependencies': [
260 '../third_party/nss/nss.gyp:nss', 260 '../third_party/nss/nss.gyp:nss',
261 ], 261 ],
262 }], 262 }],
263 [ 'use_openssl==1', { 263 [ 'use_openssl==1', {
264 'sources!': [ 264 'sources!': [
265 'nss_util_unittest.cc', 265 'nss_util_unittest.cc',
266 'openpgp_symmetric_encryption_unittest.cc', 266 'openpgp_symmetric_encryption_unittest.cc',
267 'rsa_private_key_nss_unittest.cc', 267 'rsa_private_key_nss_unittest.cc',
268 ], 268 ],
269 }], 269 }],
270 ], 270 ],
271 }, 271 },
272 ], 272 ],
273 } 273 }
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