Remove starlark_import

This is no longer used since the roboleaf cancellation.

Bug: 315353489
Test: m nothing --no-skip-soong-tests
Change-Id: Ie6ee093c2810498306ea4a2288050eed17a35357
This commit is contained in:
Cole Faust
2024-03-07 10:53:41 -08:00
parent fb8356c4c0
commit 256cfbee24
9 changed files with 0 additions and 948 deletions

View File

@@ -22,7 +22,6 @@ import (
"android/soong/android"
"android/soong/bp2build"
"android/soong/starlark_import"
)
// A helper function to generate a Read-only Bazel workspace in outDir
@@ -47,14 +46,6 @@ func createBazelWorkspace(ctx *bp2build.CodegenContext, outDir string, generateF
}
}
// Add starlark deps here, so that they apply to both queryview and apibp2build which
// both run this function.
starlarkDeps, err2 := starlark_import.GetNinjaDeps()
if err2 != nil {
return err2
}
ctx.AddNinjaFileDeps(starlarkDeps...)
return nil
}