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 'includes': [ | 9 'includes': [ |
10 'crypto.gypi', | 10 'crypto.gypi', |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 'crypto', | 188 'crypto', |
189 'crypto_test_support', | 189 'crypto_test_support', |
190 '../base/base.gyp:base', | 190 '../base/base.gyp:base', |
191 '../base/base.gyp:run_all_unittests', | 191 '../base/base.gyp:run_all_unittests', |
192 '../base/base.gyp:test_support_base', | 192 '../base/base.gyp:test_support_base', |
193 '../testing/gmock.gyp:gmock', | 193 '../testing/gmock.gyp:gmock', |
194 '../testing/gtest.gyp:gtest', | 194 '../testing/gtest.gyp:gtest', |
195 ], | 195 ], |
196 'conditions': [ | 196 'conditions': [ |
197 [ 'use_nss_certs == 1', { | 197 [ 'use_nss_certs == 1', { |
198 'conditions': [ | |
199 [ 'use_allocator!="none"', { | |
200 'dependencies': [ | |
201 '../base/allocator/allocator.gyp:allocator', | |
202 ], | |
203 }, | |
204 ], | |
205 ], | |
206 'dependencies': [ | 198 'dependencies': [ |
207 '../build/linux/system.gyp:ssl', | 199 '../build/linux/system.gyp:ssl', |
208 ], | 200 ], |
209 }], | 201 }], |
210 [ 'use_openssl == 1 and use_nss_certs == 0', { | 202 [ 'use_openssl == 1 and use_nss_certs == 0', { |
211 # Some files are built when NSS is used at all, either for the | 203 # Some files are built when NSS is used at all, either for the |
212 # internal crypto library or the platform certificate library. | 204 # internal crypto library or the platform certificate library. |
213 'sources!': [ | 205 'sources!': [ |
214 'nss_key_util_unittest.cc', | 206 'nss_key_util_unittest.cc', |
215 'nss_util_unittest.cc', | 207 'nss_util_unittest.cc', |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 '../build/isolate.gypi', | 310 '../build/isolate.gypi', |
319 ], | 311 ], |
320 'sources': [ | 312 'sources': [ |
321 'crypto_unittests.isolate', | 313 'crypto_unittests.isolate', |
322 ], | 314 ], |
323 }, | 315 }, |
324 ], | 316 ], |
325 }], | 317 }], |
326 ], | 318 ], |
327 } | 319 } |
OLD | NEW |