Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(585)

Unified Diff: build/standalone.gypi

Issue 1895453002: [build] Tweak configuration for win-clang (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Copyright Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/set_clang_warning_flags.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/standalone.gypi
diff --git a/build/standalone.gypi b/build/standalone.gypi
index 051df411eab2ba9be0a0d8bc8870da1ffbbe1061..fbe8cc4372432480c3b8ded05fee8e938056cf77 100644
--- a/build/standalone.gypi
+++ b/build/standalone.gypi
@@ -389,12 +389,14 @@
'target_defaults': {
'variables': {
'v8_code%': '<(v8_code)',
+ 'clang_warning_flags': [],
'conditions':[
['OS=="android"', {
'host_os%': '<(host_os)',
}],
],
},
+ 'includes': [ 'set_clang_warning_flags.gypi', ],
'default_configuration': 'Debug',
'configurations': {
'DebugBaseCommon': {
@@ -957,10 +959,23 @@
'/FIIntrin.h',
# TODO(hans): Make this list shorter eventually, http://crbug.com/504657
+ '-Qunused-arguments', # http://crbug.com/504658
'-Wno-microsoft-enum-value', # http://crbug.com/505296
'-Wno-unknown-pragmas', # http://crbug.com/505314
'-Wno-microsoft-cast', # http://crbug.com/550065
-
+ ],
+ },
+ }],
+ ['clang==1 and MSVS_VERSION == "2013"', {
+ 'VCCLCompilerTool': {
+ 'AdditionalOptions': [
+ '-fmsc-version=1800',
+ ],
+ },
+ }],
+ ['clang==1 and MSVS_VERSION == "2015"', {
+ 'VCCLCompilerTool': {
+ 'AdditionalOptions': [
'-fmsc-version=1900',
],
},
« no previous file with comments | « build/set_clang_warning_flags.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698