| Index: third_party/boringssl/boringssl.gyp
|
| diff --git a/third_party/boringssl/boringssl.gyp b/third_party/boringssl/boringssl.gyp
|
| index d0b716a8f7d43b348f336d69441f3bf34cb4d4eb..845a920589a2a9a393d870cf12e0671702dadf4e 100644
|
| --- a/third_party/boringssl/boringssl.gyp
|
| +++ b/third_party/boringssl/boringssl.gyp
|
| @@ -29,6 +29,9 @@
|
| ['target_arch == "arm"', {
|
| 'sources': [ '<@(boringssl_linux_arm_sources)' ],
|
| }],
|
| + ['target_arch == "arm64"', {
|
| + 'sources': [ '<@(boringssl_linux_aarch64_sources)' ],
|
| + }],
|
| ['target_arch == "ia32"', {
|
| 'conditions': [
|
| ['OS == "mac"', {
|
| @@ -77,7 +80,7 @@
|
| }],
|
| ]
|
| }],
|
| - ['target_arch != "arm" and target_arch != "ia32" and target_arch != "x64"', {
|
| + ['target_arch != "arm" and target_arch != "ia32" and target_arch != "x64" and target_arch != "arm64"', {
|
| 'defines': [ 'OPENSSL_NO_ASM' ],
|
| }],
|
| ],
|
|
|