Loading phony/phony.go +8 −2 Original line number Diff line number Diff line Loading @@ -23,10 +23,16 @@ import ( ) func init() { android.RegisterModuleType("phony", PhonyFactory) android.RegisterModuleType("phony_rule", PhonyRuleFactory) registerPhonyModuleTypes(android.InitRegistrationContext) } func registerPhonyModuleTypes(ctx android.RegistrationContext) { ctx.RegisterModuleType("phony", PhonyFactory) ctx.RegisterModuleType("phony_rule", PhonyRuleFactory) } var PrepareForTestWithPhony = android.FixtureRegisterWithContext(registerPhonyModuleTypes) type phony struct { android.ModuleBase requiredModuleNames []string Loading Loading
phony/phony.go +8 −2 Original line number Diff line number Diff line Loading @@ -23,10 +23,16 @@ import ( ) func init() { android.RegisterModuleType("phony", PhonyFactory) android.RegisterModuleType("phony_rule", PhonyRuleFactory) registerPhonyModuleTypes(android.InitRegistrationContext) } func registerPhonyModuleTypes(ctx android.RegistrationContext) { ctx.RegisterModuleType("phony", PhonyFactory) ctx.RegisterModuleType("phony_rule", PhonyRuleFactory) } var PrepareForTestWithPhony = android.FixtureRegisterWithContext(registerPhonyModuleTypes) type phony struct { android.ModuleBase requiredModuleNames []string Loading