diff options
Diffstat (limited to 'apex/androidmk.go')
-rw-r--r-- | apex/androidmk.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apex/androidmk.go b/apex/androidmk.go index e094a1276..059b4d76c 100644 --- a/apex/androidmk.go +++ b/apex/androidmk.go @@ -396,6 +396,10 @@ func (a *apexBundle) androidMkForType() android.AndroidMkData { } a.writeRequiredModules(w, moduleNames) + if a.mergedNotices.Merged.Valid() { + fmt.Fprintln(w, "LOCAL_NOTICE_FILE :=", a.mergedNotices.Merged.Path().String()) + } + fmt.Fprintln(w, "include $(BUILD_PREBUILT)") if apexType == imageApex { |