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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 'target_name': 'crypto_nacl_win64', | 231 'target_name': 'crypto_nacl_win64', |
232 # We do not want nacl_helper to depend on NSS because this would | 232 # We do not want nacl_helper to depend on NSS because this would |
233 # require including a 64-bit copy of NSS. Thus, use the native APIs | 233 # require including a 64-bit copy of NSS. Thus, use the native APIs |
234 # for the helper. | 234 # for the helper. |
235 'type': '<(component)', | 235 'type': '<(component)', |
236 'dependencies': [ | 236 'dependencies': [ |
237 '../base/base.gyp:base_win64', | 237 '../base/base.gyp:base_win64', |
238 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations_win64', | 238 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations_win64', |
239 ], | 239 ], |
240 'sources': [ | 240 'sources': [ |
241 '<@(hmac_win64_related_sources)', | 241 '<@(nacl_win64_sources)', |
242 ], | 242 ], |
243 'defines': [ | 243 'defines': [ |
244 'CRYPTO_IMPLEMENTATION', | 244 'CRYPTO_IMPLEMENTATION', |
245 '<@(nacl_win64_defines)', | 245 '<@(nacl_win64_defines)', |
246 ], | 246 ], |
247 'msvs_disabled_warnings': [ | 247 'msvs_disabled_warnings': [ |
248 4018, | 248 4018, |
249 ], | 249 ], |
250 'configurations': { | 250 'configurations': { |
251 'Common_Base': { | 251 'Common_Base': { |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 '../build/isolate.gypi', | 309 '../build/isolate.gypi', |
310 ], | 310 ], |
311 'sources': [ | 311 'sources': [ |
312 'crypto_unittests.isolate', | 312 'crypto_unittests.isolate', |
313 ], | 313 ], |
314 }, | 314 }, |
315 ], | 315 ], |
316 }], | 316 }], |
317 ], | 317 ], |
318 } | 318 } |
OLD | NEW |