diff options
Diffstat (limited to 'cc/binary.go')
-rw-r--r-- | cc/binary.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cc/binary.go b/cc/binary.go index 61541ad3b..7aa8e20cc 100644 --- a/cc/binary.go +++ b/cc/binary.go @@ -541,6 +541,11 @@ func (binary *binaryDecorator) overriddenModules() []string { return binary.Properties.Overrides } +func (binary *binaryDecorator) moduleInfoJSON(ctx ModuleContext, moduleInfoJSON *android.ModuleInfoJSON) { + moduleInfoJSON.Class = []string{"EXECUTABLES"} + binary.baseLinker.moduleInfoJSON(ctx, moduleInfoJSON) +} + var _ overridable = (*binaryDecorator)(nil) func init() { |