diff options
author | 2023-12-08 19:35:28 +0000 | |
---|---|---|
committer | 2023-12-08 19:35:28 +0000 | |
commit | 5ada6c273867643cfdafb9f522f941892837fb10 (patch) | |
tree | 5eb61a945b1bebcdfda975a15d9de2091526dad6 /rust/androidmk.go | |
parent | 2237d24894fd461e4facd48dedd6a8802eb3e8ff (diff) | |
parent | 0c97185450af31897bec2f0362125edcf9b816ce (diff) |
Merge "rust: add aconfig_flag support" into main
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[""]) }, }, } |