Skip to content

Commit

Permalink
Add missing bzl_library deps
Browse files Browse the repository at this point in the history
  • Loading branch information
fmeum committed Jun 6, 2022
1 parent e5c1e91 commit 6364ad6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
1 change: 1 addition & 0 deletions go/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ bzl_library(
visibility = ["//visibility:public"],
deps = [
"//extras:embed_data",
"//extras:gomock",
"//go/private:context",
"//go/private:go_toolchain",
"//go/private:providers",
Expand Down
17 changes: 15 additions & 2 deletions go/private/actions/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ bzl_library(
name = "asm",
srcs = ["asm.bzl"],
visibility = ["//go:__subpackages__"],
deps = ["//go/private:mode"],
deps = [
"//go/private:mode",
"//go/private/actions:deprecation",
],
)

bzl_library(
Expand All @@ -47,7 +50,10 @@ bzl_library(
name = "compile",
srcs = ["compile.bzl"],
visibility = ["//go:__subpackages__"],
deps = ["//go/private:mode"],
deps = [
"//go/private:mode",
"//go/private/actions:deprecation",
],
)

bzl_library(
Expand All @@ -60,6 +66,12 @@ bzl_library(
],
)

bzl_library(
name = "deprecation",
srcs = ["deprecation.bzl"],
visibility = ["//go:__subpackages__"],
)

bzl_library(
name = "link",
srcs = ["link.bzl"],
Expand All @@ -76,6 +88,7 @@ bzl_library(
name = "pack",
srcs = ["pack.bzl"],
visibility = ["//go:__subpackages__"],
deps = ["//go/private/actions:deprecation"],
)

bzl_library(
Expand Down

0 comments on commit 6364ad6

Please sign in to comment.