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

Unified Diff: build/common.gypi

Issue 11271021: Correctly check for stack limit in JSON.stringify. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/json-stringifier.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index e0564989e62014dd62072f10b746fee942a02f4e..97f0aae6643802f34858d812baea4ee4df89f178 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -180,11 +180,6 @@
'defines': [
'V8_TARGET_ARCH_IA32',
],
- 'msvs_settings': {
- 'VCLinkerTool': {
- 'StackReserveSize': '4194304',
- },
- },
}], # v8_target_arch=="ia32"
['v8_target_arch=="mipsel"', {
'defines': [
@@ -251,7 +246,7 @@
},
'msvs_settings': {
'VCLinkerTool': {
- 'StackReserveSize': '8388608',
+ 'StackReserveSize': '2097152',
},
},
'msvs_configuration_platform': 'x64',
« no previous file with comments | « no previous file | src/json-stringifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698