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

Side by Side Diff: tools/gyp/v8.gyp

Issue 7582003: Add lost -O3 flag when building inside Chromium (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 4 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 | Annotate | Revision Log
« 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 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 }], 185 }],
186 ], 186 ],
187 }, 187 },
188 'Release': { 188 'Release': {
189 'conditions': [ 189 'conditions': [
190 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { 190 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
191 'cflags!': [ 191 'cflags!': [
192 '-O2', 192 '-O2',
193 '-Os', 193 '-Os',
194 ], 194 ],
195 'cflags': [
196 '-fomit-frame-pointer',
197 '-O3',
198 ],
195 'conditions': [ 199 'conditions': [
196 [ 'gcc_version==44', { 200 [ 'gcc_version==44', {
197 'cflags': [ 201 'cflags': [
198 # Avoid crashes with gcc 4.4 in the v8 test suite. 202 # Avoid crashes with gcc 4.4 in the v8 test suite.
199 '-fno-tree-vrp', 203 '-fno-tree-vrp',
200 ], 204 ],
201 }], 205 }],
202 ], 206 ],
203 }], 207 }],
204 ['OS=="freebsd" or OS=="openbsd"', { 208 ['OS=="freebsd" or OS=="openbsd"', {
(...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after
1056 }], 1060 }],
1057 ], 1061 ],
1058 'dependencies': [ 1062 'dependencies': [
1059 'v8' 1063 'v8'
1060 ], 1064 ],
1061 }, 1065 },
1062 ], 1066 ],
1063 }], 1067 }],
1064 ], 1068 ],
1065 } 1069 }
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