diff options
Diffstat (limited to 'rust/binary.go')
-rw-r--r-- | rust/binary.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rust/binary.go b/rust/binary.go index d22041b27..3c7a48274 100644 --- a/rust/binary.go +++ b/rust/binary.go @@ -183,3 +183,8 @@ func (binary *binaryDecorator) staticallyLinked() bool { func (binary *binaryDecorator) testBinary() bool { return false } + +func (binary *binaryDecorator) moduleInfoJSON(ctx ModuleContext, moduleInfoJSON *android.ModuleInfoJSON) { + binary.baseCompiler.moduleInfoJSON(ctx, moduleInfoJSON) + moduleInfoJSON.Class = []string{"EXECUTABLES"} +} |