| OLD | NEW |
| 1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 { | 9 { |
| 10 'variables' : { | 10 'variables' : { |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 'sp/src/arm/neon/armSP_FFT_CToC_FC32_Radix4_unsafe_s.S', | 280 'sp/src/arm/neon/armSP_FFT_CToC_FC32_Radix4_unsafe_s.S', |
| 281 'sp/src/arm/neon/armSP_FFT_CToC_FC32_Radix8_fs_unsafe_s.S', | 281 'sp/src/arm/neon/armSP_FFT_CToC_FC32_Radix8_fs_unsafe_s.S', |
| 282 'sp/src/arm/neon/omxSP_FFTInv_CToC_FC32_Sfs_s.S', | 282 'sp/src/arm/neon/omxSP_FFTInv_CToC_FC32_Sfs_s.S', |
| 283 'sp/src/arm/neon/omxSP_FFTFwd_CToC_FC32_Sfs_s.S', | 283 'sp/src/arm/neon/omxSP_FFTFwd_CToC_FC32_Sfs_s.S', |
| 284 # Real floating-point FFT | 284 # Real floating-point FFT |
| 285 'sp/src/arm/neon/armSP_FFTInv_CCSToR_F32_preTwiddleRadix2_unsafe_s.S
', | 285 'sp/src/arm/neon/armSP_FFTInv_CCSToR_F32_preTwiddleRadix2_unsafe_s.S
', |
| 286 'sp/src/arm/neon/omxSP_FFTFwd_RToCCS_F32_Sfs_s.S', | 286 'sp/src/arm/neon/omxSP_FFTFwd_RToCCS_F32_Sfs_s.S', |
| 287 'sp/src/arm/neon/omxSP_FFTInv_CCSToR_F32_Sfs_s.S', | 287 'sp/src/arm/neon/omxSP_FFTInv_CCSToR_F32_Sfs_s.S', |
| 288 ], | 288 ], |
| 289 'conditions': [ | 289 'conditions': [ |
| 290 # Disable LTO due to NEON issues | 290 # Disable GCC LTO due to NEON issues |
| 291 # crbug.com/408997 | 291 # crbug.com/408997 |
| 292 ['use_lto==1', { | 292 ['clang==0 and use_lto==1', { |
| 293 'cflags!': [ | 293 'cflags!': [ |
| 294 '-flto', | 294 '-flto', |
| 295 '-ffat-lto-objects', | 295 '-ffat-lto-objects', |
| 296 ], | 296 ], |
| 297 }], | 297 }], |
| 298 ], | 298 ], |
| 299 }, | 299 }, |
| 300 ], | 300 ], |
| 301 }], | 301 }], |
| 302 ], | 302 ], |
| 303 } | 303 } |
| OLD | NEW |