summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build/Android.bp6
1 files changed, 6 insertions, 0 deletions
diff --git a/build/Android.bp b/build/Android.bp
index 07410b360c..8401d88bdb 100644
--- a/build/Android.bp
+++ b/build/Android.bp
@@ -20,9 +20,15 @@ bootstrap_go_package {
art_clang_tidy_errors = [
// Protect scoped things like MutexLock.
"bugprone-unused-raii",
+ "performance-for-range-copy",
+ "performance-unnecessary-copy-initialization",
+ "performance-unnecessary-value-param",
]
// Should be: strings.Join(art_clang_tidy_errors, ",").
art_clang_tidy_errors_str = "bugprone-unused-raii"
+ + ",performance-for-range-copy"
+ + ",performance-unnecessary-copy-initialization"
+ + ",performance-unnecessary-value-param"
art_clang_tidy_disabled = [
"-google-default-arguments",