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

Side by Side Diff: build/common.gypi

Issue 8052031: Add /bigobj parameter to cctest to make MSVS happy. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: added output directory change from issue 8055031 Created 9 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 | test/cctest/cctest.gyp » ('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 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 262
263 # -fstrict-aliasing. Mainline gcc 263 # -fstrict-aliasing. Mainline gcc
264 # enables this at -O2 and above, 264 # enables this at -O2 and above,
265 # but Apple gcc does not unless it 265 # but Apple gcc does not unless it
266 # is specified explicitly. 266 # is specified explicitly.
267 'GCC_STRICT_ALIASING': 'YES', 267 'GCC_STRICT_ALIASING': 'YES',
268 }, 268 },
269 }], 269 }],
270 ['OS=="win"', { 270 ['OS=="win"', {
271 'msvs_configuration_attributes': { 271 'msvs_configuration_attributes': {
272 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)', 272 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)',
273 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', 273 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
274 'CharacterSet': '1', 274 'CharacterSet': '1',
275 }, 275 },
276 'msvs_settings': { 276 'msvs_settings': {
277 'VCCLCompilerTool': { 277 'VCCLCompilerTool': {
278 'Optimization': '2', 278 'Optimization': '2',
279 'InlineFunctionExpansion': '2', 279 'InlineFunctionExpansion': '2',
280 'EnableIntrinsicFunctions': 'true', 280 'EnableIntrinsicFunctions': 'true',
281 'FavorSizeOrSpeed': '0', 281 'FavorSizeOrSpeed': '0',
282 'OmitFramePointers': 'true', 282 'OmitFramePointers': 'true',
(...skipping 17 matching lines...) Expand all
300 # some test cases can cause stack overflow. 300 # some test cases can cause stack overflow.
301 # 'StackReserveSize': '297152', 301 # 'StackReserveSize': '297152',
302 }, 302 },
303 }, 303 },
304 }], 304 }],
305 ], 305 ],
306 }, 306 },
307 }, 307 },
308 }, 308 },
309 } 309 }
OLDNEW
« no previous file with comments | « no previous file | test/cctest/cctest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698