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

Side by Side Diff: crypto/crypto.gyp

Issue 11833014: Make crypto build on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 # 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 '../third_party/nss/nss.gyp:nspr', 122 '../third_party/nss/nss.gyp:nspr',
123 '../third_party/nss/nss.gyp:nss', 123 '../third_party/nss/nss.gyp:nss',
124 ], 124 ],
125 }], 125 }],
126 [ 'OS != "win"', { 126 [ 'OS != "win"', {
127 'sources!': [ 127 'sources!': [
128 'capi_util.h', 128 'capi_util.h',
129 'capi_util.cc', 129 'capi_util.cc',
130 ], 130 ],
131 }], 131 }],
132 [ 'OS == "win"', {
133 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
134 'msvs_disabled_warnings': [4267, ],
135 }],
132 [ 'use_openssl==1', { 136 [ 'use_openssl==1', {
133 # TODO(joth): Use a glob to match exclude patterns once the 137 # TODO(joth): Use a glob to match exclude patterns once the
134 # OpenSSL file set is complete. 138 # OpenSSL file set is complete.
135 'sources!': [ 139 'sources!': [
136 'ec_private_key_nss.cc', 140 'ec_private_key_nss.cc',
137 'ec_signature_creator_nss.cc', 141 'ec_signature_creator_nss.cc',
138 'encryptor_nss.cc', 142 'encryptor_nss.cc',
139 'hmac_nss.cc', 143 'hmac_nss.cc',
140 'nss_util.cc', 144 'nss_util.cc',
141 'nss_util.h', 145 'nss_util.h',
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 'rsa_private_key_unittest.cc', 316 'rsa_private_key_unittest.cc',
313 'signature_creator_unittest.cc', 317 'signature_creator_unittest.cc',
314 'signature_verifier_unittest.cc', 318 'signature_verifier_unittest.cc',
315 ], 319 ],
316 }], 320 }],
317 [ 'OS == "mac"', { 321 [ 'OS == "mac"', {
318 'dependencies': [ 322 'dependencies': [
319 '../third_party/nss/nss.gyp:nspr', 323 '../third_party/nss/nss.gyp:nspr',
320 ], 324 ],
321 }], 325 }],
326 [ 'OS == "win"', {
327 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
328 'msvs_disabled_warnings': [4267, ],
329 }],
322 [ 'use_openssl==1', { 330 [ 'use_openssl==1', {
323 'sources!': [ 331 'sources!': [
324 'nss_util_unittest.cc', 332 'nss_util_unittest.cc',
325 'openpgp_symmetric_encryption_unittest.cc', 333 'openpgp_symmetric_encryption_unittest.cc',
326 'rsa_private_key_nss_unittest.cc', 334 'rsa_private_key_nss_unittest.cc',
327 ], 335 ],
328 }], 336 }],
329 ], 337 ],
330 }, 338 },
331 ], 339 ],
(...skipping 23 matching lines...) Expand all
355 'configurations': { 363 'configurations': {
356 'Common_Base': { 364 'Common_Base': {
357 'msvs_target_platform': 'x64', 365 'msvs_target_platform': 'x64',
358 }, 366 },
359 }, 367 },
360 }, 368 },
361 ], 369 ],
362 }], 370 }],
363 ], 371 ],
364 } 372 }
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