Skip to content

Commit

Permalink
[gn build] Fix typos in config visibility lists
Browse files Browse the repository at this point in the history
GN https://gn-review.googlesource.com/c/gn/+/12140 identified these
typos. Fix them.

No effective behavior change.
  • Loading branch information
nico committed Sep 13, 2021
1 parent 726b5d3 commit 1a56a29
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion llvm/utils/gn/secondary/clang/lib/Basic/BUILD.gn
Expand Up @@ -3,7 +3,7 @@ import("//llvm/utils/gn/build/write_vcsrevision.gni")
config("write_vcsrevision_config") {
# To pick up the generated inc file.
include_dirs = [ target_gen_dir ]
visibility = [ ":write_vcsrevision" ]
visibility = [ ":write_vcsversion" ]
}

write_vcsrevision("write_vcsversion") {
Expand Down
2 changes: 1 addition & 1 deletion llvm/utils/gn/secondary/lld/Common/BUILD.gn
Expand Up @@ -3,7 +3,7 @@ import("//llvm/utils/gn/build/write_vcsrevision.gni")
config("write_vcsrevision_config") {
# To pick up the generated inc file.
include_dirs = [ target_gen_dir ]
visibility = [ ":write_vcsrevision" ]
visibility = [ ":write_vcsversion" ]
}

write_vcsrevision("write_vcsversion") {
Expand Down
2 changes: 1 addition & 1 deletion llvm/utils/gn/secondary/lldb/source/BUILD.gn
Expand Up @@ -3,7 +3,7 @@ import("//llvm/utils/gn/build/write_vcsrevision.gni")
config("write_vcsrevision_config") {
# To pick up the generated inc file.
include_dirs = [ target_gen_dir ]
visibility = [ ":write_vcsrevision" ]
visibility = [ ":write_vcsversion" ]
}

write_vcsrevision("write_vcsversion") {
Expand Down
2 changes: 1 addition & 1 deletion llvm/utils/gn/secondary/lldb/source/Plugins/BUILD.gn
Expand Up @@ -223,7 +223,7 @@ write_cmake_config("Plugins.def") {
}

config("AllLldbPlugins_config") {
visibility = [ ":AllLldbPlugins" ]
visibility = [ ":LldbAllPlugins" ]

# To pick up Plugins.def.
include_dirs = [ "$root_gen_dir/lldb/source" ]
Expand Down

0 comments on commit 1a56a29

Please sign in to comment.