summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorweili <weili@chromium.org>2016-04-28 12:44:32 -0700
committerCommit bot <commit-bot@chromium.org>2016-04-28 12:44:32 -0700
commit01a86203141df4a61ae90e289f62c4daf31ee2ba (patch)
tree5471c26fd9579cf4701c16f5f4c86307687298b0
parent224bc5a983a02c0da3ecc0ee55b6c8b1fe500980 (diff)
downloadpdfium-01a86203141df4a61ae90e289f62c4daf31ee2ba.tar.xz
Make two compilation flags for Windows Clang build effective
These two flags are not properly used. Change to the correct configuration to make them effective. Review-Url: https://codereview.chromium.org/1925143002
-rw-r--r--build_gyp/standalone.gypi16
1 files changed, 6 insertions, 10 deletions
diff --git a/build_gyp/standalone.gypi b/build_gyp/standalone.gypi
index 250c085e18..f7cad6622a 100644
--- a/build_gyp/standalone.gypi
+++ b/build_gyp/standalone.gypi
@@ -339,18 +339,14 @@
],
}],
['OS=="win" and clang==1 and MSVS_VERSION == "2013"', {
- 'VCCLCompilerTool': {
- 'AdditionalOptions': [
- '-fmsc-version=1800',
- ],
- },
+ 'AdditionalOptions': [
+ '-fmsc-version=1800',
+ ],
}],
['OS=="win" and clang==1 and MSVS_VERSION == "2015"', {
- 'VCCLCompilerTool': {
- 'AdditionalOptions': [
- '-fmsc-version=1900',
- ],
- },
+ 'AdditionalOptions': [
+ '-fmsc-version=1900',
+ ],
}],
],
},