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

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

Issue 174138: Try compiling V8 for Mac with -O3 when using the v8.gyp file. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 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 2009 the V8 project authors. All rights reserved. 1 # Copyright 2009 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 '-fno-strict-aliasing', 94 '-fno-strict-aliasing',
95 # Avoid crashes with gcc 4.4 in the v8 test suite. 95 # Avoid crashes with gcc 4.4 in the v8 test suite.
96 '-fno-tree-vrp', 96 '-fno-tree-vrp',
97 ], 97 ],
98 }], 98 }],
99 ], 99 ],
100 'cflags_cc': [ 100 'cflags_cc': [
101 '-fno-rtti', 101 '-fno-rtti',
102 ], 102 ],
103 }], 103 }],
104 ['OS=="mac"', {
105 'xcode_settings': {
106 'GCC_OPTIMIZATION_LEVEL': '3',
107 },
108 }],
104 ['OS=="win"', { 109 ['OS=="win"', {
105 'msvs_configuration_attributes': { 110 'msvs_configuration_attributes': {
106 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)', 111 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)',
107 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', 112 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
108 'CharacterSet': '1', 113 'CharacterSet': '1',
109 }, 114 },
110 'msvs_settings': { 115 'msvs_settings': {
111 'VCCLCompilerTool': { 116 'VCCLCompilerTool': {
112 'RuntimeLibrary': '0', 117 'RuntimeLibrary': '0',
113 'Optimizations': '2', 118 'Optimizations': '2',
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 ], 580 ],
576 'conditions': [ 581 'conditions': [
577 [ 'OS=="win"', { 582 [ 'OS=="win"', {
578 # This could be gotten by not setting chromium_code, if that's OK. 583 # This could be gotten by not setting chromium_code, if that's OK.
579 'defines': ['_CRT_SECURE_NO_WARNINGS'], 584 'defines': ['_CRT_SECURE_NO_WARNINGS'],
580 }], 585 }],
581 ], 586 ],
582 }, 587 },
583 ], 588 ],
584 } 589 }
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