Skip to content

Commit

Permalink
fix(bazel): remove more vendored deps
Browse files Browse the repository at this point in the history
  • Loading branch information
symbiont-stevan-andjelkovic committed Jan 21, 2021
1 parent 1ba2932 commit b80b3ba
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion src/cli/cmd/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ go_library(
importpath = "github.com/symbiont-io/detsys-testkit/src/cli/cmd",
visibility = ["//visibility:public"],
deps = [
"@com_github_spf13_cobra//:cobra",
"//src/lib",
"@com_github_spf13_cobra//:cobra",
],
)
6 changes: 3 additions & 3 deletions src/db/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ go_library(
importpath = "github.com/symbiont-io/detsys-testkit/src/db",
visibility = ["//visibility:private"],
deps = [
"//src/db/vendor/github.com/mattn/go-sqlite3",
"//src/db/vendor/github.com/rubenv/sql-migrate",
"//src/db/vendor/github.com/symbiont-io/detsys-testkit/src/lib",
"//src/lib",
"@com_github_mattn_go_sqlite3//:go-sqlite3",
"@com_github_rubenv_sql_migrate//:sql-migrate",
],
)
8 changes: 4 additions & 4 deletions src/debugger/cmd/detsys-debug/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ go_library(
visibility = ["//visibility:private"],
deps = [
"//src/debugger/internal",
"//src/debugger/vendor/github.com/gdamore/tcell/v2:tcell",
"//src/debugger/vendor/github.com/nsf/jsondiff",
"//src/debugger/vendor/github.com/rivo/tview",
"//src/debugger/vendor/github.com/symbiont-io/detsys-testkit/src/lib",
"//src/lib",
"@com_github_gdamore_tcell_v2//:tcell",
"@com_github_nsf_jsondiff//:jsondiff",
"@com_github_rivo_tview//:tview",
],
)
10 changes: 5 additions & 5 deletions src/debugger/internal/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ go_library(
importpath = "github.com/symbiont-io/detsys-testkit/src/debugger/internal",
visibility = ["//src/debugger:__subpackages__"],
deps = [
"//src/debugger/vendor/github.com/evanphx/json-patch",
"//src/debugger/vendor/github.com/mattn/go-sqlite3",
"//src/debugger/vendor/github.com/nsf/jsondiff",
"//src/debugger/vendor/github.com/symbiont-io/detsys-testkit/src/lib",
"//src/lib",
"@com_github_evanphx_json_patch//:json-patch",
"@com_github_mattn_go_sqlite3//:go-sqlite3",
"@com_github_nsf_jsondiff//:jsondiff",
],
)

go_test(
name = "internal_test",
srcs = ["debugger_test.go"],
embed = [":internal"],
deps = ["//src/debugger/vendor/github.com/symbiont-io/detsys-testkit/src/lib"],
deps = ["//src/lib"],
)
6 changes: 3 additions & 3 deletions src/sut/broadcast/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ go_library(
],
importpath = "github.com/symbiont-io/detsys-testkit/src/sut/broadcast",
visibility = ["//visibility:public"],
deps = ["//src/sut/broadcast/vendor/github.com/symbiont-io/detsys-testkit/src/lib"],
deps = ["//src/lib"],
)

go_test(
name = "broadcast_test",
srcs = ["broadcast_test.go"],
embed = [":broadcast"],
deps = [
"//src/sut/broadcast/vendor/github.com/symbiont-io/detsys-testkit/src/executor",
"//src/sut/broadcast/vendor/github.com/symbiont-io/detsys-testkit/src/lib",
"//src/executor",
"//src/lib",
],
)

0 comments on commit b80b3ba

Please sign in to comment.