| 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 973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 984 ], | 984 ], |
| 985 }], | 985 }], |
| 986 ['OS=="win"', { | 986 ['OS=="win"', { |
| 987 'defines': [ | 987 'defines': [ |
| 988 'WIN32', | 988 'WIN32', |
| 989 ], | 989 ], |
| 990 # 4351: VS 2005 and later are warning us that they've fixed a bug | 990 # 4351: VS 2005 and later are warning us that they've fixed a bug |
| 991 # present in VS 2003 and earlier. | 991 # present in VS 2003 and earlier. |
| 992 'msvs_disabled_warnings': [4351], | 992 'msvs_disabled_warnings': [4351], |
| 993 'msvs_configuration_attributes': { | 993 'msvs_configuration_attributes': { |
| 994 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)', | |
| 995 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', | |
| 996 'CharacterSet': '1', | 994 'CharacterSet': '1', |
| 997 }, | 995 }, |
| 998 }], | 996 }], |
| 999 ['OS=="win" and v8_target_arch=="ia32"', { | 997 ['OS=="win" and v8_target_arch=="ia32"', { |
| 1000 'msvs_settings': { | 998 'msvs_settings': { |
| 1001 'VCCLCompilerTool': { | 999 'VCCLCompilerTool': { |
| 1002 # Ensure no surprising artifacts from 80bit double math with x86. | 1000 # Ensure no surprising artifacts from 80bit double math with x86. |
| 1003 'AdditionalOptions': ['/arch:SSE2'], | 1001 'AdditionalOptions': ['/arch:SSE2'], |
| 1004 }, | 1002 }, |
| 1005 }, | 1003 }, |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1413 ], | 1411 ], |
| 1414 }, | 1412 }, |
| 1415 'Release_x64': { | 1413 'Release_x64': { |
| 1416 'inherit_from': ['ReleaseBase'], | 1414 'inherit_from': ['ReleaseBase'], |
| 1417 }, | 1415 }, |
| 1418 }], | 1416 }], |
| 1419 ], | 1417 ], |
| 1420 }, # configurations | 1418 }, # configurations |
| 1421 }, # target_defaults | 1419 }, # target_defaults |
| 1422 } | 1420 } |
| OLD | NEW |