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

Side by Side 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, 1 month 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 | src/json-stringifier.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 'defines': [ 173 'defines': [
174 'USE_EABI_HARDFLOAT=0', 174 'USE_EABI_HARDFLOAT=0',
175 ], 175 ],
176 }], 176 }],
177 ], 177 ],
178 }], # v8_target_arch=="arm" 178 }], # v8_target_arch=="arm"
179 ['v8_target_arch=="ia32"', { 179 ['v8_target_arch=="ia32"', {
180 'defines': [ 180 'defines': [
181 'V8_TARGET_ARCH_IA32', 181 'V8_TARGET_ARCH_IA32',
182 ], 182 ],
183 'msvs_settings': {
184 'VCLinkerTool': {
185 'StackReserveSize': '4194304',
186 },
187 },
188 }], # v8_target_arch=="ia32" 183 }], # v8_target_arch=="ia32"
189 ['v8_target_arch=="mipsel"', { 184 ['v8_target_arch=="mipsel"', {
190 'defines': [ 185 'defines': [
191 'V8_TARGET_ARCH_MIPS', 186 'V8_TARGET_ARCH_MIPS',
192 ], 187 ],
193 'variables': { 188 'variables': {
194 'mipscompiler': '<!($(echo ${CXX:-$(which g++)}) -v 2>&1 | grep -q "^T arget: mips" && echo "yes" || echo "no")', 189 'mipscompiler': '<!($(echo ${CXX:-$(which g++)}) -v 2>&1 | grep -q "^T arget: mips" && echo "yes" || echo "no")',
195 }, 190 },
196 'conditions': [ 191 'conditions': [
197 ['mipscompiler=="yes"', { 192 ['mipscompiler=="yes"', {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 }], # v8_target_arch=="mipsel" 239 }], # v8_target_arch=="mipsel"
245 ['v8_target_arch=="x64"', { 240 ['v8_target_arch=="x64"', {
246 'defines': [ 241 'defines': [
247 'V8_TARGET_ARCH_X64', 242 'V8_TARGET_ARCH_X64',
248 ], 243 ],
249 'xcode_settings': { 244 'xcode_settings': {
250 'ARCHS': [ 'x86_64' ], 245 'ARCHS': [ 'x86_64' ],
251 }, 246 },
252 'msvs_settings': { 247 'msvs_settings': {
253 'VCLinkerTool': { 248 'VCLinkerTool': {
254 'StackReserveSize': '8388608', 249 'StackReserveSize': '2097152',
255 }, 250 },
256 }, 251 },
257 'msvs_configuration_platform': 'x64', 252 'msvs_configuration_platform': 'x64',
258 }], # v8_target_arch=="x64" 253 }], # v8_target_arch=="x64"
259 ['v8_use_liveobjectlist=="true"', { 254 ['v8_use_liveobjectlist=="true"', {
260 'defines': [ 255 'defines': [
261 'ENABLE_DEBUGGER_SUPPORT', 256 'ENABLE_DEBUGGER_SUPPORT',
262 'INSPECTOR', 257 'INSPECTOR',
263 'OBJECT_PRINT', 258 'OBJECT_PRINT',
264 'LIVEOBJECTLIST', 259 'LIVEOBJECTLIST',
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 'OptimizeReferences': '2', 437 'OptimizeReferences': '2',
443 'EnableCOMDATFolding': '2', 438 'EnableCOMDATFolding': '2',
444 }, 439 },
445 }, 440 },
446 }], # OS=="win" 441 }], # OS=="win"
447 ], # conditions 442 ], # conditions
448 }, # Release 443 }, # Release
449 }, # configurations 444 }, # configurations
450 }, # target_defaults 445 }, # target_defaults
451 } 446 }
OLDNEW
« 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