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

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

Issue 173117: Experimental change to omit frame pointers from V8 on Mac... (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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
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"', { 104 ['OS=="mac"', {
105 'xcode_settings': { 105 'xcode_settings': {
106 'GCC_OPTIMIZATION_LEVEL': '3', 106 'GCC_OPTIMIZATION_LEVEL': '3',
107 'OTHER_CFLAGS': [ '-fomit-frame-pointer' ],
107 }, 108 },
108 }], 109 }],
109 ['OS=="win"', { 110 ['OS=="win"', {
110 'msvs_configuration_attributes': { 111 'msvs_configuration_attributes': {
111 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)', 112 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)',
112 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', 113 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
113 'CharacterSet': '1', 114 'CharacterSet': '1',
114 }, 115 },
115 'msvs_settings': { 116 'msvs_settings': {
116 'VCCLCompilerTool': { 117 'VCCLCompilerTool': {
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 ], 581 ],
581 'conditions': [ 582 'conditions': [
582 [ 'OS=="win"', { 583 [ 'OS=="win"', {
583 # This could be gotten by not setting chromium_code, if that's OK. 584 # This could be gotten by not setting chromium_code, if that's OK.
584 'defines': ['_CRT_SECURE_NO_WARNINGS'], 585 'defines': ['_CRT_SECURE_NO_WARNINGS'],
585 }], 586 }],
586 ], 587 ],
587 }, 588 },
588 ], 589 ],
589 } 590 }
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