diff options
author | 2024-03-07 10:53:41 -0800 | |
---|---|---|
committer | 2024-03-07 10:53:41 -0800 | |
commit | 256cfbee24ef32ededa29a62389c27c93146c8f8 (patch) | |
tree | 2816ad82904aa46290d003ed2e246c74992aca82 /cmd/soong_build/queryview.go | |
parent | fb8356c4c006d20259976c98f7b5d11d17bd1d55 (diff) |
Remove starlark_import
This is no longer used since the roboleaf cancellation.
Bug: 315353489
Test: m nothing --no-skip-soong-tests
Change-Id: Ie6ee093c2810498306ea4a2288050eed17a35357
Diffstat (limited to 'cmd/soong_build/queryview.go')
-rw-r--r-- | cmd/soong_build/queryview.go | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/cmd/soong_build/queryview.go b/cmd/soong_build/queryview.go index 5c2316a31..eafd67a2d 100644 --- a/cmd/soong_build/queryview.go +++ b/cmd/soong_build/queryview.go @@ -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 } |