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

Side by Side Diff: build/toolchain.gypi

Issue 426233002: Land the Fan (disabled) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review feedback, rebase and "git cl format" Created 6 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 | include/v8.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 2013 the V8 project authors. All rights reserved. 1 # Copyright 2013 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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 '-Wno-long-long', 445 '-Wno-long-long',
446 ], 446 ],
447 'ldflags': [ 447 'ldflags': [
448 '-mx32', 448 '-mx32',
449 ], 449 ],
450 }], # v8_target_arch=="x32" 450 }], # v8_target_arch=="x32"
451 ['OS=="win"', { 451 ['OS=="win"', {
452 'defines': [ 452 'defines': [
453 'WIN32', 453 'WIN32',
454 ], 454 ],
455 # 4351: VS 2005 and later are warning us that they've fixed a bug
456 # present in VS 2003 and earlier.
457 'msvs_disabled_warnings': [4351],
455 'msvs_configuration_attributes': { 458 'msvs_configuration_attributes': {
456 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)', 459 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)',
457 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', 460 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
458 'CharacterSet': '1', 461 'CharacterSet': '1',
459 }, 462 },
460 'msvs_settings': { 463 'msvs_settings': {
461 'VCCLCompilerTool': { 464 'VCCLCompilerTool': {
462 # Ensure no surprising artifacts from 80bit double math with x86. 465 # Ensure no surprising artifacts from 80bit double math with x86.
463 'AdditionalOptions': ['/arch:SSE2'], 466 'AdditionalOptions': ['/arch:SSE2'],
464 }, 467 },
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
836 'OptimizeReferences': '2', 839 'OptimizeReferences': '2',
837 'EnableCOMDATFolding': '2', 840 'EnableCOMDATFolding': '2',
838 }, 841 },
839 }, 842 },
840 }], # OS=="win" 843 }], # OS=="win"
841 ], # conditions 844 ], # conditions
842 }, # Release 845 }, # Release
843 }, # configurations 846 }, # configurations
844 }, # target_defaults 847 }, # target_defaults
845 } 848 }
OLDNEW
« no previous file with comments | « no previous file | include/v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698