diff options
| author | 2021-02-09 00:38:03 +0000 | |
|---|---|---|
| committer | 2021-02-09 00:38:03 +0000 | |
| commit | ff8f1ce7d735b3ba6fd57d3847a31bd27fff6c08 (patch) | |
| tree | b74a4e1252c3f245b07e6e7810d663d8e486eb7f | |
| parent | ed7bfd9726e79f58e3ac2e02ceb3af0ca3c24895 (diff) | |
| parent | 1c2317315c7a4232a79cefa507b7d1a638b74d1c (diff) | |
Merge "bp2build: make generated BUILD files publicly visible."
| -rw-r--r-- | bp2build/conversion.go | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bp2build/conversion.go b/bp2build/conversion.go index 62cd8d4b6..4a4b3f8b9 100644 --- a/bp2build/conversion.go +++ b/bp2build/conversion.go @@ -50,7 +50,12 @@ func createBuildFiles(buildToTargets map[string]BazelTargets, mode CodegenMode) sort.Slice(targets, func(i, j int) bool { return targets[i].name < targets[j].name }) content := soongModuleLoad if mode == Bp2Build { - content = targets.LoadStatements() + content = `# This file was automatically generated by bp2build for the Bazel migration project. +# Feel free to edit or test it, but do *not* check it into your version control system.` + content += "\n\n" + content += "package(default_visibility = [\"//visibility:public\"])" + content += "\n\n" + content += targets.LoadStatements() } if content != "" { // If there are load statements, add a couple of newlines. |