Merge "Add info to json module graph about CreateModule" am: 54c00c6618
Original change: https://android-review.googlesource.com/c/platform/build/blueprint/+/2085745 Change-Id: I3d72faa70682212c5f76cff0f513c208698bd130 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
fcfc7e2f1a
1 changed files with 5 additions and 0 deletions
|
@ -2255,6 +2255,7 @@ type JsonModule struct {
|
|||
Deps []jsonDep
|
||||
Type string
|
||||
Blueprint string
|
||||
CreatedBy *string
|
||||
Module map[string]interface{}
|
||||
}
|
||||
|
||||
|
@ -2292,6 +2293,10 @@ func jsonModuleFromModuleInfo(m *moduleInfo) *JsonModule {
|
|||
Blueprint: m.relBlueprintsFile,
|
||||
Module: make(map[string]interface{}),
|
||||
}
|
||||
if m.createdBy != nil {
|
||||
n := m.createdBy.Name()
|
||||
result.CreatedBy = &n
|
||||
}
|
||||
if j, ok := m.logicModule.(JSONDataSupplier); ok {
|
||||
j.AddJSONData(&result.Module)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue