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

Side by Side Diff: libvpx_srcs_arm_neon_cpu_detect_intrinsics.gypi

Issue 471653004: [libvpx] Disable LTO for one target. (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Rebase Created 6 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 | « libvpx.gyp ('k') | 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 # This file is generated. Do not edit. 1 # This file is generated. Do not edit.
Nico 2014/08/29 14:00:35 I think you might have to edit the generate_gypi.s
Fabrice (no longer in Chrome) 2014/08/29 14:27:03 Done.
2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'libvpx_intrinsics_neon', 9 'target_name': 'libvpx_intrinsics_neon',
10 'type': 'static_library', 10 'type': 'static_library',
11 'include_dirs': [ 11 'include_dirs': [
(...skipping 22 matching lines...) Expand all
34 '<(libvpx_source)/vp9/common/arm/neon/vp9_loopfilter_16_neon.c', 34 '<(libvpx_source)/vp9/common/arm/neon/vp9_loopfilter_16_neon.c',
35 '<(libvpx_source)/vp9/encoder/arm/neon/vp9_dct_neon.c', 35 '<(libvpx_source)/vp9/encoder/arm/neon/vp9_dct_neon.c',
36 '<(libvpx_source)/vp9/encoder/arm/neon/vp9_quantize_neon.c', 36 '<(libvpx_source)/vp9/encoder/arm/neon/vp9_quantize_neon.c',
37 '<(libvpx_source)/vp9/encoder/arm/neon/vp9_sad_neon.c', 37 '<(libvpx_source)/vp9/encoder/arm/neon/vp9_sad_neon.c',
38 '<(libvpx_source)/vp9/encoder/arm/neon/vp9_subtract_neon.c', 38 '<(libvpx_source)/vp9/encoder/arm/neon/vp9_subtract_neon.c',
39 '<(libvpx_source)/vp9/encoder/arm/neon/vp9_variance_neon.c', 39 '<(libvpx_source)/vp9/encoder/arm/neon/vp9_variance_neon.c',
40 ], 40 ],
41 'cflags!': [ '-mfpu=vfpv3-d16' ], 41 'cflags!': [ '-mfpu=vfpv3-d16' ],
42 'cflags': [ '-mfpu=neon', ], 42 'cflags': [ '-mfpu=neon', ],
43 'xcode_settings': { 'OTHER_CFLAGS': [ '-mfpu=neon' ] }, 43 'xcode_settings': { 'OTHER_CFLAGS': [ '-mfpu=neon' ] },
44 'conditions': [
45 # Disable LTO in libvpx_intrinsics_neon target due to compiler bug
46 ['use_lto==1', {
47 'cflags!': [
48 '-flto',
49 '-ffat-lto-objects',
50 ],
51 }],
52 ],
44 }, 53 },
45 ], 54 ],
46 } 55 }
OLDNEW
« no previous file with comments | « libvpx.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698