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

Side by Side Diff: third_party/boringssl/boringssl.gypi

Issue 385983006: net: pickup "586" asm files for x86. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: .. Created 6 years, 5 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 | « third_party/boringssl/boringssl.gyp ('k') | third_party/boringssl/boringssl_tests.gypi » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2014 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 # This file is created by update_gypi_and_asm.py. Do not edit manually. 5 # This file is created by update_gypi_and_asm.py. Do not edit manually.
6 6
7 { 7 {
8 'variables': { 8 'variables': {
9 'boringssl_lib_sources': [ 9 'boringssl_lib_sources': [
10 'src/crypto/aes/aes.c', 10 'src/crypto/aes/aes.c',
11 'src/crypto/aes/mode_wrappers.c', 11 'src/crypto/aes/mode_wrappers.c',
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 'linux-arm/crypto/aes/bsaes-armv7.S', 318 'linux-arm/crypto/aes/bsaes-armv7.S',
319 'linux-arm/crypto/bn/armv4-mont.S', 319 'linux-arm/crypto/bn/armv4-mont.S',
320 'linux-arm/crypto/modes/ghash-armv4.S', 320 'linux-arm/crypto/modes/ghash-armv4.S',
321 'linux-arm/crypto/sha/sha1-armv4-large.S', 321 'linux-arm/crypto/sha/sha1-armv4-large.S',
322 'linux-arm/crypto/sha/sha256-armv4.S', 322 'linux-arm/crypto/sha/sha256-armv4.S',
323 'linux-arm/crypto/sha/sha512-armv4.S', 323 'linux-arm/crypto/sha/sha512-armv4.S',
324 'src/crypto/chacha/chacha_vec_arm.S', 324 'src/crypto/chacha/chacha_vec_arm.S',
325 'src/crypto/poly1305/poly1305_arm_asm.S', 325 'src/crypto/poly1305/poly1305_arm_asm.S',
326 ], 326 ],
327 'boringssl_linux_x86_sources': [ 327 'boringssl_linux_x86_sources': [
328 'linux-x86/crypto/aes/aes-586.S',
328 'linux-x86/crypto/aes/aesni-x86.S', 329 'linux-x86/crypto/aes/aesni-x86.S',
329 'linux-x86/crypto/aes/vpaes-x86.S', 330 'linux-x86/crypto/aes/vpaes-x86.S',
331 'linux-x86/crypto/bn/bn-586.S',
332 'linux-x86/crypto/bn/co-586.S',
330 'linux-x86/crypto/bn/x86-mont.S', 333 'linux-x86/crypto/bn/x86-mont.S',
331 'linux-x86/crypto/cpu-x86-asm.S', 334 'linux-x86/crypto/cpu-x86-asm.S',
335 'linux-x86/crypto/md5/md5-586.S',
332 'linux-x86/crypto/modes/ghash-x86.S', 336 'linux-x86/crypto/modes/ghash-x86.S',
337 'linux-x86/crypto/rc4/rc4-586.S',
338 'linux-x86/crypto/sha/sha1-586.S',
339 'linux-x86/crypto/sha/sha256-586.S',
340 'linux-x86/crypto/sha/sha512-586.S',
333 ], 341 ],
334 'boringssl_linux_x86_64_sources': [ 342 'boringssl_linux_x86_64_sources': [
335 'linux-x86_64/crypto/aes/aes-x86_64.S', 343 'linux-x86_64/crypto/aes/aes-x86_64.S',
336 'linux-x86_64/crypto/aes/aesni-x86_64.S', 344 'linux-x86_64/crypto/aes/aesni-x86_64.S',
337 'linux-x86_64/crypto/aes/bsaes-x86_64.S', 345 'linux-x86_64/crypto/aes/bsaes-x86_64.S',
338 'linux-x86_64/crypto/aes/vpaes-x86_64.S', 346 'linux-x86_64/crypto/aes/vpaes-x86_64.S',
339 'linux-x86_64/crypto/bn/modexp512-x86_64.S', 347 'linux-x86_64/crypto/bn/modexp512-x86_64.S',
340 'linux-x86_64/crypto/bn/rsaz-avx2.S', 348 'linux-x86_64/crypto/bn/rsaz-avx2.S',
341 'linux-x86_64/crypto/bn/rsaz-x86_64.S', 349 'linux-x86_64/crypto/bn/rsaz-x86_64.S',
342 'linux-x86_64/crypto/bn/x86_64-mont.S', 350 'linux-x86_64/crypto/bn/x86_64-mont.S',
343 'linux-x86_64/crypto/bn/x86_64-mont5.S', 351 'linux-x86_64/crypto/bn/x86_64-mont5.S',
344 'linux-x86_64/crypto/cpu-x86_64-asm.S', 352 'linux-x86_64/crypto/cpu-x86_64-asm.S',
345 'linux-x86_64/crypto/md5/md5-x86_64.S', 353 'linux-x86_64/crypto/md5/md5-x86_64.S',
346 'linux-x86_64/crypto/modes/aesni-gcm-x86_64.S', 354 'linux-x86_64/crypto/modes/aesni-gcm-x86_64.S',
347 'linux-x86_64/crypto/modes/ghash-x86_64.S', 355 'linux-x86_64/crypto/modes/ghash-x86_64.S',
348 'linux-x86_64/crypto/rc4/rc4-md5-x86_64.S', 356 'linux-x86_64/crypto/rc4/rc4-md5-x86_64.S',
349 'linux-x86_64/crypto/rc4/rc4-x86_64.S', 357 'linux-x86_64/crypto/rc4/rc4-x86_64.S',
350 'linux-x86_64/crypto/sha/sha1-x86_64.S', 358 'linux-x86_64/crypto/sha/sha1-x86_64.S',
351 'linux-x86_64/crypto/sha/sha256-x86_64.S', 359 'linux-x86_64/crypto/sha/sha256-x86_64.S',
352 'linux-x86_64/crypto/sha/sha512-x86_64.S', 360 'linux-x86_64/crypto/sha/sha512-x86_64.S',
353 ], 361 ],
354 'boringssl_mac_x86_sources': [ 362 'boringssl_mac_x86_sources': [
363 'mac-x86/crypto/aes/aes-586.S',
355 'mac-x86/crypto/aes/aesni-x86.S', 364 'mac-x86/crypto/aes/aesni-x86.S',
356 'mac-x86/crypto/aes/vpaes-x86.S', 365 'mac-x86/crypto/aes/vpaes-x86.S',
366 'mac-x86/crypto/bn/bn-586.S',
367 'mac-x86/crypto/bn/co-586.S',
357 'mac-x86/crypto/bn/x86-mont.S', 368 'mac-x86/crypto/bn/x86-mont.S',
358 'mac-x86/crypto/cpu-x86-asm.S', 369 'mac-x86/crypto/cpu-x86-asm.S',
370 'mac-x86/crypto/md5/md5-586.S',
359 'mac-x86/crypto/modes/ghash-x86.S', 371 'mac-x86/crypto/modes/ghash-x86.S',
372 'mac-x86/crypto/rc4/rc4-586.S',
373 'mac-x86/crypto/sha/sha1-586.S',
374 'mac-x86/crypto/sha/sha256-586.S',
375 'mac-x86/crypto/sha/sha512-586.S',
360 ], 376 ],
361 'boringssl_mac_x86_64_sources': [ 377 'boringssl_mac_x86_64_sources': [
362 'mac-x86_64/crypto/aes/aes-x86_64.S', 378 'mac-x86_64/crypto/aes/aes-x86_64.S',
363 'mac-x86_64/crypto/aes/aesni-x86_64.S', 379 'mac-x86_64/crypto/aes/aesni-x86_64.S',
364 'mac-x86_64/crypto/aes/bsaes-x86_64.S', 380 'mac-x86_64/crypto/aes/bsaes-x86_64.S',
365 'mac-x86_64/crypto/aes/vpaes-x86_64.S', 381 'mac-x86_64/crypto/aes/vpaes-x86_64.S',
366 'mac-x86_64/crypto/bn/modexp512-x86_64.S', 382 'mac-x86_64/crypto/bn/modexp512-x86_64.S',
367 'mac-x86_64/crypto/bn/rsaz-avx2.S', 383 'mac-x86_64/crypto/bn/rsaz-avx2.S',
368 'mac-x86_64/crypto/bn/rsaz-x86_64.S', 384 'mac-x86_64/crypto/bn/rsaz-x86_64.S',
369 'mac-x86_64/crypto/bn/x86_64-mont.S', 385 'mac-x86_64/crypto/bn/x86_64-mont.S',
(...skipping 23 matching lines...) Expand all
393 'win-x86_64/crypto/modes/aesni-gcm-x86_64.asm', 409 'win-x86_64/crypto/modes/aesni-gcm-x86_64.asm',
394 'win-x86_64/crypto/modes/ghash-x86_64.asm', 410 'win-x86_64/crypto/modes/ghash-x86_64.asm',
395 'win-x86_64/crypto/rc4/rc4-md5-x86_64.asm', 411 'win-x86_64/crypto/rc4/rc4-md5-x86_64.asm',
396 'win-x86_64/crypto/rc4/rc4-x86_64.asm', 412 'win-x86_64/crypto/rc4/rc4-x86_64.asm',
397 'win-x86_64/crypto/sha/sha1-x86_64.asm', 413 'win-x86_64/crypto/sha/sha1-x86_64.asm',
398 'win-x86_64/crypto/sha/sha256-x86_64.asm', 414 'win-x86_64/crypto/sha/sha256-x86_64.asm',
399 'win-x86_64/crypto/sha/sha512-x86_64.asm', 415 'win-x86_64/crypto/sha/sha512-x86_64.asm',
400 ], 416 ],
401 } 417 }
402 } 418 }
OLDNEW
« no previous file with comments | « third_party/boringssl/boringssl.gyp ('k') | third_party/boringssl/boringssl_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698