diff options
author | 2023-12-07 21:56:59 +0000 | |
---|---|---|
committer | 2023-12-07 21:56:59 +0000 | |
commit | 0c97185450af31897bec2f0362125edcf9b816ce (patch) | |
tree | 48cd3c09bf5d0d76e2193263fb0d495cb55c1664 /rust/androidmk.go | |
parent | d788b3e6cb8753ea3460bd2cb462aff27a966aef (diff) |
rust: add aconfig_flag support
Bug: b/308625757
Test: manual
Change-Id: Ifd98cd0ad4e2525b08f5766e9332991c049162ea
Diffstat (limited to 'rust/androidmk.go')
-rw-r--r-- | rust/androidmk.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rust/androidmk.go b/rust/androidmk.go index e02c3f619..733ffc5eb 100644 --- a/rust/androidmk.go +++ b/rust/androidmk.go @@ -66,7 +66,8 @@ func (mod *Module) AndroidMkEntries() []android.AndroidMkEntries { if mod.UseVndk() { entries.SetBool("LOCAL_USE_VNDK", true) } - + // TODO(b/311155208): The container here should be system. + entries.SetPaths("LOCAL_ACONFIG_FILES", mod.mergedAconfigFiles[""]) }, }, } |