diff options
author | 2022-10-13 03:35:38 +0000 | |
---|---|---|
committer | 2022-10-13 03:35:38 +0000 | |
commit | f18404f331e5e552d65283e307c865a9a2d44a90 (patch) | |
tree | eb586ba3b68cfe12637cf59be5983c027b9032a5 /python/defaults.go | |
parent | 49a9bfd8fd239c421b45d883801d63d196f5b850 (diff) | |
parent | 7d8f6182f9fb6cab1e292ea767dd2410726ac7dd (diff) |
Merge "Fix some issues in bp2build converter for python_binary_host."
Diffstat (limited to 'python/defaults.go')
-rw-r--r-- | python/defaults.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/defaults.go b/python/defaults.go index c54e7d059..3dc5bc4d2 100644 --- a/python/defaults.go +++ b/python/defaults.go @@ -19,7 +19,7 @@ import ( ) func init() { - android.RegisterModuleType("python_defaults", defaultsFactory) + android.RegisterModuleType("python_defaults", DefaultsFactory) } type Defaults struct { @@ -30,7 +30,7 @@ type Defaults struct { func (d *Defaults) GenerateAndroidBuildActions(ctx android.ModuleContext) { } -func defaultsFactory() android.Module { +func DefaultsFactory() android.Module { module := &Defaults{} module.AddProperties( |