summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-12 03:07:46 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-12 03:07:46 +0000
commit49ee7ef2882b7bba875e6179c3ccb2596875312a (patch)
treeccf599a669e52be45521fd386bfe15f545aa2c69 /build
parenteece11eddc1249a156226a464c734b2ba2c73f1f (diff)
downloadchromium_src-49ee7ef2882b7bba875e6179c3ccb2596875312a.zip
chromium_src-49ee7ef2882b7bba875e6179c3ccb2596875312a.tar.gz
chromium_src-49ee7ef2882b7bba875e6179c3ccb2596875312a.tar.bz2
Remove a few dead MSVS_VERSION checks.
We only support 2013. TBR=robertshield@chromium.org BUG=340358 Review URL: https://codereview.chromium.org/233843003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263460 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/common.gypi38
1 files changed, 2 insertions, 36 deletions
diff --git a/build/common.gypi b/build/common.gypi
index 7f5d26b..c707a32 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -1741,7 +1741,7 @@
},{
'msvs_large_module_debug_link_mode%': '2', # Yes
}],
- ['MSVS_VERSION=="2013e" or MSVS_VERSION=="2012e" or MSVS_VERSION=="2010e"', {
+ ['MSVS_VERSION=="2013e"', {
'msvs_express%': 1,
'secure_atl%': 0,
},{
@@ -4863,25 +4863,6 @@
'<(windows_driver_kit_path)/inc/atl71',
'<(windows_driver_kit_path)/inc/mfc42',
],
- 'target_conditions': [
- ['chromium_code and MSVS_VERSION=="2010e"', {
- # Workaround for intsafe in 2010 Express + WDK.
- # ATL code uses intsafe.h and both intsafe.h and stdint.h
- # define INT8_MIN et al.
- # We can't use this workaround in third_party code because
- # it has various levels of intolerance for including stdint.h.
- # This is not necessary in 2013e, and should be removed once
- # mainline is switched: http://crbug.com/340358.
- 'msvs_system_include_dirs': [
- '<(DEPTH)/build',
- ],
- 'msvs_settings': {
- 'VCCLCompilerTool': {
- 'ForcedIncludeFiles': [ 'intsafe_workaround.h', ],
- },
- },
- }],
- ],
}],
],
'msvs_system_include_dirs': [
@@ -4988,6 +4969,7 @@
'WarnAsError': 'false',
'RuntimeTypeInfo': 'false',
'AdditionalOptions': [
+ '-fmsc-version=1800',
'/fallback',
# Many files use intrinsics without including this header.
@@ -5032,22 +5014,6 @@
'-ferror-limit=1',
],
},
- 'conditions': [
- ['MSVS_VERSION=="2013" or MSVS_VERSION=="2013e"', {
- 'VCCLCompilerTool': {
- 'AdditionalOptions': [
- '-fmsc-version=1800',
- ],
- },
- }],
- ['MSVS_VERSION=="2010" or MSVS_VERSION=="2010e"', {
- 'VCCLCompilerTool': {
- 'AdditionalOptions': [
- '-fmsc-version=1600',
- ],
- },
- }],
- ],
}],
['asan==1', {
# ASan on Windows is a work in progress and very experimental.