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

Side by Side Diff: dl/dl.gyp

Issue 1318803004: Re-enable LLVM LTO on Neon targets. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc/deps/third_party/openmax.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698