diff options
author | 2023-08-08 11:26:23 +0000 | |
---|---|---|
committer | 2023-08-08 11:26:23 +0000 | |
commit | 5d52dce822188cb8145b7dfc3036ce20cf443c00 (patch) | |
tree | 822761f1f62029bc3d5d115249076c6b452638f7 | |
parent | 14e0956931b76971ea8d1317730dda261ca0775b (diff) |
Revert^2 "Export NewPrebuiltBuildTool"
Reason for revert: This is safe to land on its own (without topic)
Change-Id: I8649878d042a46582260033a14768391ccc13960
-rw-r--r-- | android/prebuilt_build_tool.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/android/prebuilt_build_tool.go b/android/prebuilt_build_tool.go index e5edf9129..aeae20f48 100644 --- a/android/prebuilt_build_tool.go +++ b/android/prebuilt_build_tool.go @@ -102,6 +102,10 @@ var _ HostToolProvider = &prebuiltBuildTool{} // prebuilt_build_tool is to declare prebuilts to be used during the build, particularly for use // in genrules with the "tools" property. func prebuiltBuildToolFactory() Module { + return NewPrebuiltBuildTool() +} + +func NewPrebuiltBuildTool() Module { module := &prebuiltBuildTool{} module.AddProperties(&module.properties) InitSingleSourcePrebuiltModule(module, &module.properties, "Src") |