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

Side by Side Diff: build/common.gypi

Issue 11265011: Fix stack overflow 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 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 },
183 }], # v8_target_arch=="ia32" 188 }], # v8_target_arch=="ia32"
184 ['v8_target_arch=="mipsel"', { 189 ['v8_target_arch=="mipsel"', {
185 'defines': [ 190 'defines': [
186 'V8_TARGET_ARCH_MIPS', 191 'V8_TARGET_ARCH_MIPS',
187 ], 192 ],
188 'variables': { 193 'variables': {
189 'mipscompiler': '<!($(echo ${CXX:-$(which g++)}) -v 2>&1 | grep -q "^T arget: mips" && echo "yes" || echo "no")', 194 'mipscompiler': '<!($(echo ${CXX:-$(which g++)}) -v 2>&1 | grep -q "^T arget: mips" && echo "yes" || echo "no")',
190 }, 195 },
191 'conditions': [ 196 'conditions': [
192 ['mipscompiler=="yes"', { 197 ['mipscompiler=="yes"', {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 }], # v8_target_arch=="mipsel" 244 }], # v8_target_arch=="mipsel"
240 ['v8_target_arch=="x64"', { 245 ['v8_target_arch=="x64"', {
241 'defines': [ 246 'defines': [
242 'V8_TARGET_ARCH_X64', 247 'V8_TARGET_ARCH_X64',
243 ], 248 ],
244 'xcode_settings': { 249 'xcode_settings': {
245 'ARCHS': [ 'x86_64' ], 250 'ARCHS': [ 'x86_64' ],
246 }, 251 },
247 'msvs_settings': { 252 'msvs_settings': {
248 'VCLinkerTool': { 253 'VCLinkerTool': {
249 'StackReserveSize': '2097152', 254 'StackReserveSize': '8388608',
250 }, 255 },
251 }, 256 },
252 'msvs_configuration_platform': 'x64', 257 'msvs_configuration_platform': 'x64',
253 }], # v8_target_arch=="x64" 258 }], # v8_target_arch=="x64"
254 ['v8_use_liveobjectlist=="true"', { 259 ['v8_use_liveobjectlist=="true"', {
255 'defines': [ 260 'defines': [
256 'ENABLE_DEBUGGER_SUPPORT', 261 'ENABLE_DEBUGGER_SUPPORT',
257 'INSPECTOR', 262 'INSPECTOR',
258 'OBJECT_PRINT', 263 'OBJECT_PRINT',
259 'LIVEOBJECTLIST', 264 'LIVEOBJECTLIST',
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 'OptimizeReferences': '2', 442 'OptimizeReferences': '2',
438 'EnableCOMDATFolding': '2', 443 'EnableCOMDATFolding': '2',
439 }, 444 },
440 }, 445 },
441 }], # OS=="win" 446 }], # OS=="win"
442 ], # conditions 447 ], # conditions
443 }, # Release 448 }, # Release
444 }, # configurations 449 }, # configurations
445 }, # target_defaults 450 }, # target_defaults
446 } 451 }
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