| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 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 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 'boringssl.gypi', | 7 'boringssl.gypi', |
| 8 ], | 8 ], |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 }], | 143 }], |
| 144 ] | 144 ] |
| 145 }], | 145 }], |
| 146 ['msan == 1 or (target_arch != "arm" and target_arch != "ia32" and targe
t_arch != "x64" and target_arch != "arm64")', { | 146 ['msan == 1 or (target_arch != "arm" and target_arch != "ia32" and targe
t_arch != "x64" and target_arch != "arm64")', { |
| 147 'direct_dependent_settings': { | 147 'direct_dependent_settings': { |
| 148 'defines': [ 'OPENSSL_NO_ASM' ], | 148 'defines': [ 'OPENSSL_NO_ASM' ], |
| 149 }, | 149 }, |
| 150 }], | 150 }], |
| 151 ], | 151 ], |
| 152 }, | 152 }, |
| 153 { # Builds decrepit BoringSSL sources. |
| 154 'target_name': 'boringssl-decrepit', |
| 155 'type': '<(component)', |
| 156 'includes': [ |
| 157 'boringssl.gypi', |
| 158 ], |
| 159 'sources': [ |
| 160 '<@(boringssl_decrepit_sources)', |
| 161 ], |
| 162 'include_dirs': [ |
| 163 'src/include', |
| 164 ], |
| 165 }, |
| 153 ], | 166 ], |
| 154 } | 167 } |
| OLD | NEW |