Commit ffde7939 authored by tc@google.com's avatar tc@google.com

Re-add the code to only add sse2 flags on Chromium builds. It

was accidentally lost in r16719.

BUG=9007

Review URL: http://codereview.chromium.org/115902


git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17155 0039d316-1c4b-4281-b951-d872f2087c98
parent 3e02b979
......@@ -328,12 +328,18 @@
# used during computation does not change depending on how the
# compiler optimized the code, since the value is always kept
# in its specified precision.
'conditions': [
['branding=="Chromium"', {
'cflags': [
'-march=pentium4',
'-msse2',
'-mfpmath=sse',
],
}],
],
'cflags': [
'-m32',
'-march=pentium4',
'-fno-exceptions',
'-msse2',
'-mfpmath=sse',
'-Wall',
],
'ldflags': [
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment