| 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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 }], # v8_target_arch=="x32" | 445 }], # v8_target_arch=="x32" |
| 446 ['OS=="win"', { | 446 ['OS=="win"', { |
| 447 'defines': [ | 447 'defines': [ |
| 448 'WIN32', | 448 'WIN32', |
| 449 ], | 449 ], |
| 450 'msvs_configuration_attributes': { | 450 'msvs_configuration_attributes': { |
| 451 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)', | 451 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)', |
| 452 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', | 452 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', |
| 453 'CharacterSet': '1', | 453 'CharacterSet': '1', |
| 454 }, | 454 }, |
| 455 'msvs_settings': { |
| 456 'VCCLCompilerTool': { |
| 457 # Ensure no surprising artifacts from 80bit double math with x86. |
| 458 'AdditionalOptions': ['/arch:SSE2'], |
| 459 }, |
| 460 }, |
| 455 }], | 461 }], |
| 456 ['OS=="win" and v8_enable_prof==1', { | 462 ['OS=="win" and v8_enable_prof==1', { |
| 457 'msvs_settings': { | 463 'msvs_settings': { |
| 458 'VCLinkerTool': { | 464 'VCLinkerTool': { |
| 459 'GenerateMapFile': 'true', | 465 'GenerateMapFile': 'true', |
| 460 }, | 466 }, |
| 461 }, | 467 }, |
| 462 }], | 468 }], |
| 463 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \ | 469 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \ |
| 464 or OS=="netbsd" or OS=="mac" or OS=="android" or OS=="qnx") and \ | 470 or OS=="netbsd" or OS=="mac" or OS=="android" or OS=="qnx") and \ |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 825 'OptimizeReferences': '2', | 831 'OptimizeReferences': '2', |
| 826 'EnableCOMDATFolding': '2', | 832 'EnableCOMDATFolding': '2', |
| 827 }, | 833 }, |
| 828 }, | 834 }, |
| 829 }], # OS=="win" | 835 }], # OS=="win" |
| 830 ], # conditions | 836 ], # conditions |
| 831 }, # Release | 837 }, # Release |
| 832 }, # configurations | 838 }, # configurations |
| 833 }, # target_defaults | 839 }, # target_defaults |
| 834 } | 840 } |
| OLD | NEW |