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

Side by Side Diff: crypto/crypto.gyp

Issue 103333004: Allow Win64 build of base library even in a Win32 build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Base Win64: Address CR feedback Created 7 years 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 | « courgette/courgette.gyp ('k') | gpu/gpu.gyp » ('j') | 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 # Put all transitive dependencies for Windows HMAC here. 8 # Put all transitive dependencies for Windows HMAC here.
9 # This is required so that we can build them for nacl win64. 9 # This is required so that we can build them for nacl win64.
10 'hmac_win64_related_sources': [ 10 'hmac_win64_related_sources': [
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 'conditions': [ 320 'conditions': [
321 ['OS == "win" and target_arch=="ia32"', { 321 ['OS == "win" and target_arch=="ia32"', {
322 'targets': [ 322 'targets': [
323 { 323 {
324 'target_name': 'crypto_nacl_win64', 324 'target_name': 'crypto_nacl_win64',
325 # We do not want nacl_helper to depend on NSS because this would 325 # We do not want nacl_helper to depend on NSS because this would
326 # require including a 64-bit copy of NSS. Thus, use the native APIs 326 # require including a 64-bit copy of NSS. Thus, use the native APIs
327 # for the helper. 327 # for the helper.
328 'type': '<(component)', 328 'type': '<(component)',
329 'dependencies': [ 329 'dependencies': [
330 '../base/base.gyp:base_nacl_win64', 330 '../base/base.gyp:base_win64',
331 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations_win64', 331 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations_win64',
332 ], 332 ],
333 'sources': [ 333 'sources': [
334 '<@(hmac_win64_related_sources)', 334 '<@(hmac_win64_related_sources)',
335 ], 335 ],
336 'defines': [ 336 'defines': [
337 'CRYPTO_IMPLEMENTATION', 337 'CRYPTO_IMPLEMENTATION',
338 '<@(nacl_win64_defines)', 338 '<@(nacl_win64_defines)',
339 ], 339 ],
340 'msvs_disabled_warnings': [ 340 'msvs_disabled_warnings': [
341 4018, 341 4018,
342 ], 342 ],
343 'configurations': { 343 'configurations': {
344 'Common_Base': { 344 'Common_Base': {
345 'msvs_target_platform': 'x64', 345 'msvs_target_platform': 'x64',
346 }, 346 },
347 }, 347 },
348 }, 348 },
349 ], 349 ],
350 }], 350 }],
351 ], 351 ],
352 } 352 }
OLDNEW
« no previous file with comments | « courgette/courgette.gyp ('k') | gpu/gpu.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698