OLD | NEW |
---|---|
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 1162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1173 '-O0', | 1173 '-O0', |
1174 ], | 1174 ], |
1175 'cflags!': [ | 1175 'cflags!': [ |
1176 # We filter these out because release_extra_cflags or another | 1176 # We filter these out because release_extra_cflags or another |
1177 # such thing might be adding them in, and those options wind up | 1177 # such thing might be adding them in, and those options wind up |
1178 # coming after the -fno-stack-protector we added above. | 1178 # coming after the -fno-stack-protector we added above. |
1179 '-fstack-protector', | 1179 '-fstack-protector', |
1180 '-fstack-protector-all', | 1180 '-fstack-protector-all', |
1181 '-fprofile-generate', | 1181 '-fprofile-generate', |
1182 '-finstrument-functions', | 1182 '-finstrument-functions', |
1183 '-O', | |
1184 '-O1', | |
Mark Seaborn
2014/08/06 20:51:21
FWIW, Gyp does support regexps. You could probabl
hamaji
2014/08/06 22:04:12
You meant ^-O ? Done.
| |
1183 '-O2', | 1185 '-O2', |
1186 '-O3', | |
1187 '-O4', | |
1188 '-Ofast', | |
1189 '-Os', | |
1184 # ARM GCC emits symbols like __aeabi_unwind_cpp_pr0 in | 1190 # ARM GCC emits symbols like __aeabi_unwind_cpp_pr0 in |
1185 # .exidx sections with this flag. | 1191 # .exidx sections with this flag. |
1186 '-funwind-tables', | 1192 '-funwind-tables', |
1187 ], | 1193 ], |
1188 'ldflags': [ | 1194 'ldflags': [ |
1189 '-nostdlib', | 1195 '-nostdlib', |
1190 '-shared', | 1196 '-shared', |
1191 # This binary cannot relocate itself, so we should have no | 1197 # This binary cannot relocate itself, so we should have no |
1192 # undefined references left. | 1198 # undefined references left. |
1193 '-Wl,--no-undefined', | 1199 '-Wl,--no-undefined', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1254 'files': [ | 1260 'files': [ |
1255 '>@(test_files)', | 1261 '>@(test_files)', |
1256 ], | 1262 ], |
1257 }, | 1263 }, |
1258 ], | 1264 ], |
1259 }, | 1265 }, |
1260 ], | 1266 ], |
1261 }], | 1267 }], |
1262 ], | 1268 ], |
1263 } | 1269 } |
OLD | NEW |