OLD | NEW |
---|---|
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 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
453 'WIN32', | 453 'WIN32', |
454 ], | 454 ], |
455 # 4351: VS 2005 and later are warning us that they've fixed a bug | 455 # 4351: VS 2005 and later are warning us that they've fixed a bug |
456 # present in VS 2003 and earlier. | 456 # present in VS 2003 and earlier. |
457 'msvs_disabled_warnings': [4351], | 457 'msvs_disabled_warnings': [4351], |
458 'msvs_configuration_attributes': { | 458 'msvs_configuration_attributes': { |
459 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)', | 459 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)', |
460 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', | 460 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', |
461 'CharacterSet': '1', | 461 'CharacterSet': '1', |
462 }, | 462 }, |
463 }], | |
464 ['OS=="win" and target_arch=="ia32"', { | |
Jakob Kummerow
2014/07/31 16:52:43
better use v8_target_arch. It shouldn't make a dif
| |
463 'msvs_settings': { | 465 'msvs_settings': { |
464 'VCCLCompilerTool': { | 466 'VCCLCompilerTool': { |
465 # Ensure no surprising artifacts from 80bit double math with x86. | 467 # Ensure no surprising artifacts from 80bit double math with x86. |
466 'AdditionalOptions': ['/arch:SSE2'], | 468 'AdditionalOptions': ['/arch:SSE2'], |
467 }, | 469 }, |
468 }, | 470 }, |
469 }], | 471 }], |
470 ['OS=="win" and v8_enable_prof==1', { | 472 ['OS=="win" and v8_enable_prof==1', { |
471 'msvs_settings': { | 473 'msvs_settings': { |
472 'VCLinkerTool': { | 474 'VCLinkerTool': { |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
839 'OptimizeReferences': '2', | 841 'OptimizeReferences': '2', |
840 'EnableCOMDATFolding': '2', | 842 'EnableCOMDATFolding': '2', |
841 }, | 843 }, |
842 }, | 844 }, |
843 }], # OS=="win" | 845 }], # OS=="win" |
844 ], # conditions | 846 ], # conditions |
845 }, # Release | 847 }, # Release |
846 }, # configurations | 848 }, # configurations |
847 }, # target_defaults | 849 }, # target_defaults |
848 } | 850 } |
OLD | NEW |