From 884fe9e17479c6697b6ae0e5b34c978f339cb4c0 Mon Sep 17 00:00:00 2001 From: Liz Kammer Date: Tue, 28 Feb 2023 14:29:13 -0500 Subject: [PATCH] Update non-user-facing properties to be mutated Test: m nothing Test: CI Change-Id: Ibfbb91653fa36277a19555a39a5df8da27a7a765 --- rust/rust.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rust/rust.go b/rust/rust.go index e4cf67129..8a13ba364 100644 --- a/rust/rust.go +++ b/rust/rust.go @@ -62,11 +62,11 @@ type Flags struct { } type BaseProperties struct { - AndroidMkRlibs []string - AndroidMkDylibs []string - AndroidMkProcMacroLibs []string - AndroidMkSharedLibs []string - AndroidMkStaticLibs []string + AndroidMkRlibs []string `blueprint:"mutated"` + AndroidMkDylibs []string `blueprint:"mutated"` + AndroidMkProcMacroLibs []string `blueprint:"mutated"` + AndroidMkSharedLibs []string `blueprint:"mutated"` + AndroidMkStaticLibs []string `blueprint:"mutated"` ImageVariationPrefix string `blueprint:"mutated"` VndkVersion string `blueprint:"mutated"`