Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 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 928 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 939 }], | 939 }], |
| 940 ['v8_target_arch=="x64"', { | 940 ['v8_target_arch=="x64"', { |
| 941 'MinimumRequiredVersion': '5.02', # Server 2003. | 941 'MinimumRequiredVersion': '5.02', # Server 2003. |
| 942 'TargetMachine': '17', # x64 | 942 'TargetMachine': '17', # x64 |
| 943 }, { | 943 }, { |
| 944 'MinimumRequiredVersion': '5.01', # XP. | 944 'MinimumRequiredVersion': '5.01', # XP. |
| 945 'TargetMachine': '1', # ia32 | 945 'TargetMachine': '1', # ia32 |
| 946 }], | 946 }], |
| 947 ], | 947 ], |
| 948 }, | 948 }, |
| 949 'conditions': [ | |
| 950 ['clang==1', { | |
| 951 'VCCLCompilerTool': { | |
| 952 'AdditionalOptions': [ | |
| 953 # Don't warn about unused function parameters. | |
| 954 # (This is also used on other platforms.) | |
| 955 '-Wno-unused-parameter', | |
| 956 # Don't warn about the "struct foo f = {0};" initialization | |
| 957 # pattern. | |
| 958 '-Wno-missing-field-initializers', | |
| 959 | |
| 960 # Many files use intrinsics without including this header. | |
| 961 # TODO(hans): Fix those files, or move this to sub-GYPs. | |
| 962 '/FIIntrin.h', | |
| 963 | |
| 964 # TODO(hans): Make this list shorter eventually, http://crbug. com/504657 | |
| 965 '-Wno-microsoft-enum-value', # http://crbug.com/505296 | |
| 966 '-Wno-unknown-pragmas', # http://crbug.com/505314 | |
| 967 '-Wno-microsoft-cast', # http://crbug.com/550065 | |
| 968 | |
| 969 '-fmsc-version=1900', | |
|
Nico
2016/04/14 13:54:12
1900 means msvc2015. If you're still on 2013, you
Michael Achenbach
2016/04/14 14:03:42
Yea - but no point in supporting also 2013 with cl
Nico
2016/04/14 14:48:06
In general, I feel you'll have fewest problems if
| |
| 970 ], | |
| 971 }, | |
| 972 }], | |
| 973 ], | |
| 949 }, | 974 }, |
| 950 }, | 975 }, |
| 951 }], # OS=="win" | 976 }], # OS=="win" |
| 952 ['OS=="mac"', { | 977 ['OS=="mac"', { |
| 953 'xcode_settings': { | 978 'xcode_settings': { |
| 954 'SDKROOT': 'macosx', | 979 'SDKROOT': 'macosx', |
| 955 'SYMROOT': '<(DEPTH)/xcodebuild', | 980 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 956 }, | 981 }, |
| 957 'target_defaults': { | 982 'target_defaults': { |
| 958 'xcode_settings': { | 983 'xcode_settings': { |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1404 '-fsanitize=cfi-vcall', | 1429 '-fsanitize=cfi-vcall', |
| 1405 '-fsanitize=cfi-derived-cast', | 1430 '-fsanitize=cfi-derived-cast', |
| 1406 '-fsanitize=cfi-unrelated-cast', | 1431 '-fsanitize=cfi-unrelated-cast', |
| 1407 ], | 1432 ], |
| 1408 }], | 1433 }], |
| 1409 ], | 1434 ], |
| 1410 }, | 1435 }, |
| 1411 }], | 1436 }], |
| 1412 ], | 1437 ], |
| 1413 } | 1438 } |
| OLD | NEW |