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

Unified Diff: infra/mb/mb_config.pyl

Issue 2125703005: [gn] Fix config for using clang (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra/mb/mb_config.pyl
diff --git a/infra/mb/mb_config.pyl b/infra/mb/mb_config.pyl
index e763349bc779aeacfd5a0bcc5e4b9c9e03f74418..fa5e00611027704d498f3011921a0b0a6da15e85 100644
--- a/infra/mb/mb_config.pyl
+++ b/infra/mb/mb_config.pyl
@@ -372,7 +372,7 @@
},
'asan': {
- 'gn_args': 'clang=true asan=true',
+ 'gn_args': 'is_clang=true asan=true',
'gyp_defines': 'clang=1 asan=1',
},
@@ -387,7 +387,7 @@
},
'clang': {
- 'gn_args': 'clang=true',
+ 'gn_args': 'is_clang=true',
'gyp_defines': 'clang=1',
},
@@ -425,7 +425,7 @@
},
'gcc': {
- 'gn_args': 'clang=false',
+ 'gn_args': 'is_clang=false',
'gyp_defines': 'clang=0',
},
@@ -466,7 +466,7 @@
},
'msan': {
- 'gn_args': 'clang=true msan=true',
+ 'gn_args': 'is_clang=true msan=true',
'gyp_defines': 'clang=1 msan=1',
},
@@ -550,7 +550,7 @@
},
'tsan': {
- 'gn_args': 'clang=true tsan=true',
+ 'gn_args': 'is_clang=true tsan=true',
'gyp_defines': 'clang=1 tsan=1',
},
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698