Chromium Code Reviews| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'openssl', | 8 'target_name': 'openssl', |
| 9 'type': '<(component)', | 9 'type': '<(component)', |
| 10 'includes': [ | 10 'includes': [ |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 57 'defines!': [ 'OPENSSL_NO_ASM' ], | 57 'defines!': [ 'OPENSSL_NO_ASM' ], |
| 58 }], | 58 }], |
| 59 ['target_arch == "ia32"', { | 59 ['target_arch == "ia32"', { |
| 60 'sources': [ '<@(openssl_x86_sources)' ], | 60 'sources': [ '<@(openssl_x86_sources)' ], |
| 61 'sources!': [ '<@(openssl_x86_source_excludes)' ], | 61 'sources!': [ '<@(openssl_x86_source_excludes)' ], |
| 62 'defines': [ '<@(openssl_x86_defines)' ], | 62 'defines': [ '<@(openssl_x86_defines)' ], |
| 63 'defines!': [ 'OPENSSL_NO_ASM' ], | 63 'defines!': [ 'OPENSSL_NO_ASM' ], |
| 64 }], | 64 }], |
| 65 ['target_arch == "x64"', { | 65 ['target_arch == "x64"', { |
| 66 'sources': [ '<@(openssl_x86_64_sources)' ], | 66 'sources': [ '<@(openssl_x86_64_sources)' ], |
| 67 'sources!': [ '<@(openssl_x86_64_source_excludes)' ], | 67 'sources!': [ '<@(openssl_x86_64_source_excludes)' ], |
|
wtc
2013/10/15 22:39:15
Should we change the definitions of openssl_x86_64
yhirano
2013/10/17 05:31:42
I filed a bug https://code.google.com/p/chromium/i
| |
| 68 'conditions': [ | |
| 69 ['OS != "android"', { | |
| 70 # Due to a goma problem with compiling rc4-x86_64.S, | |
| 71 # We use the C rc4 source instead of the ASM source. | |
| 72 # This hurts performance, but it's not a problem | |
| 73 # because no production code uses openssl on x86-64. | |
| 74 'sources/': [ | |
| 75 ['exclude', 'openssl/crypto/rc4/asm/rc4-x86_64\\.S' ], | |
| 76 ['include', 'openssl/crypto/rc4/rc4_enc\\.c' ], | |
| 77 ['include', 'openssl/crypto/rc4/rc4_skey\\.c' ], | |
| 78 ], | |
| 79 }] | |
| 80 ], | |
| 68 'defines': [ '<@(openssl_x86_64_defines)' ], | 81 'defines': [ '<@(openssl_x86_64_defines)' ], |
| 69 'defines!': [ 'OPENSSL_NO_ASM' ], | 82 'defines!': [ 'OPENSSL_NO_ASM' ], |
| 70 'variables': { | 83 'variables': { |
| 71 # Ensure the 64-bit opensslconf.h header is used. | 84 # Ensure the 64-bit opensslconf.h header is used. |
| 72 'openssl_include_dirs+': [ 'config/x64' ], | 85 'openssl_include_dirs+': [ 'config/x64' ], |
| 73 }, | 86 }, |
| 74 }], | 87 }], |
| 75 ['component == "shared_library"', { | 88 ['component == "shared_library"', { |
| 76 'cflags!': ['-fvisibility=hidden'], | 89 'cflags!': ['-fvisibility=hidden'], |
| 77 }], | 90 }], |
| (...skipping 21 matching lines...) Expand all Loading... | |
| 99 }, | 112 }, |
| 100 }, | 113 }, |
| 101 ], | 114 ], |
| 102 } | 115 } |
| 103 | 116 |
| 104 # Local Variables: | 117 # Local Variables: |
| 105 # tab-width:2 | 118 # tab-width:2 |
| 106 # indent-tabs-mode:nil | 119 # indent-tabs-mode:nil |
| 107 # End: | 120 # End: |
| 108 # vim: set expandtab tabstop=2 shiftwidth=2: | 121 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |