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

Unified Diff: build/common.gypi

Issue 1665363002: Clang plugin to check that unstable types are not used in IPC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typos Created 4 years, 10 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 | build/config/clang/BUILD.gn » ('j') | tools/clang/plugins/CheckIPCVisitor.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index fc8295992c055c47b8692aa117d8395b8440091d..8de62cac9d1d0a456a51a1e1282052a1771deb0a 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -2228,6 +2228,11 @@
# no need to load it dynamically.
'clang_dynlib_flags%': '',
}],
+ ['OS=="android"', {
+ 'clang_plugin_args_ipc%': '-Xclang -plugin-arg-find-bad-constructs -Xclang check-ipc',
+ }, {
+ 'clang_plugin_args_ipc%': '',
+ }],
],
'clang_plugin_args%': '-Xclang -plugin-arg-find-bad-constructs -Xclang check-templates '
'-Xclang -plugin-arg-find-bad-constructs -Xclang follow-macro-expansion ',
@@ -2235,7 +2240,7 @@
# If you change these, also change build/config/clang/BUILD.gn.
'clang_chrome_plugins_flags%':
'<(clang_dynlib_flags)'
- '-Xclang -add-plugin -Xclang find-bad-constructs <(clang_plugin_args)',
+ '-Xclang -add-plugin -Xclang find-bad-constructs <(clang_plugin_args) <(clang_plugin_args_ipc)',
}],
['asan==1 or msan==1 or lsan==1 or tsan==1', {
'clang%': 1,
« no previous file with comments | « no previous file | build/config/clang/BUILD.gn » ('j') | tools/clang/plugins/CheckIPCVisitor.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698