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

Side by Side Diff: chrome/test/data/nacl/nacl_test_data.gyp

Issue 401243002: Non-SFI NaCl: Do not create unwind tables for libc_free.c (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: drop -funwind-tables Created 6 years, 5 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) 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 'includes': [ 6 'includes': [
7 '../../../../ppapi/ppapi_nacl_test_common.gypi', 7 '../../../../ppapi/ppapi_nacl_test_common.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 1136 matching lines...) Expand 10 before | Expand all | Expand 10 after
1147 ], 1147 ],
1148 'cflags!': [ 1148 'cflags!': [
1149 # We filter these out because release_extra_cflags or another 1149 # We filter these out because release_extra_cflags or another
1150 # such thing might be adding them in, and those options wind up 1150 # such thing might be adding them in, and those options wind up
1151 # coming after the -fno-stack-protector we added above. 1151 # coming after the -fno-stack-protector we added above.
1152 '-fstack-protector', 1152 '-fstack-protector',
1153 '-fstack-protector-all', 1153 '-fstack-protector-all',
1154 '-fprofile-generate', 1154 '-fprofile-generate',
1155 '-finstrument-functions', 1155 '-finstrument-functions',
1156 '-O2', 1156 '-O2',
1157 # ARM GCC emits symbols like __aeabi_unwind_cpp_pr0 in
1158 # .exidx sections with this flag.
1159 '-funwind-tables',
1157 ], 1160 ],
1158 'ldflags': [ 1161 'ldflags': [
1159 '-nostdlib', 1162 '-nostdlib',
1160 '-shared', 1163 '-shared',
1161 # This binary cannot relocate itself, so we should have no 1164 # This binary cannot relocate itself, so we should have no
1162 # undefined references left. 1165 # undefined references left.
1163 '-Wl,--no-undefined', 1166 '-Wl,--no-undefined',
1164 ], 1167 ],
1165 'ldflags!': [ 1168 'ldflags!': [
1166 # Explicitly remove the -pthread flag to avoid a link time warning. 1169 # Explicitly remove the -pthread flag to avoid a link time warning.
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
1224 'files': [ 1227 'files': [
1225 '>@(test_files)', 1228 '>@(test_files)',
1226 ], 1229 ],
1227 }, 1230 },
1228 ], 1231 ],
1229 }, 1232 },
1230 ], 1233 ],
1231 }], 1234 }],
1232 ], 1235 ],
1233 } 1236 }
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