| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |