mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-26 13:30:30 +00:00
562c4b231d
This is useful in rules_js ecosystem where the working directory is bazel-out/arch/bin so many paths need to be relative to there.
38 lines
1 KiB
Python
38 lines
1 KiB
Python
# Declare the local Bazel workspace.
|
|
# This is *not* included in the published distribution.
|
|
workspace(
|
|
# see https://docs.bazel.build/versions/main/skylark/deploying.html#workspace
|
|
name = "aspect_bazel_lib",
|
|
)
|
|
|
|
load(":internal_deps.bzl", "bazel_lib_internal_deps")
|
|
|
|
# Fetch deps needed only locally for development
|
|
bazel_lib_internal_deps()
|
|
|
|
load("//lib:repositories.bzl", "aspect_bazel_lib_dependencies")
|
|
|
|
aspect_bazel_lib_dependencies()
|
|
|
|
# For running our own unit tests
|
|
load("@bazel_skylib//lib:unittest.bzl", "register_unittest_toolchains")
|
|
|
|
register_unittest_toolchains()
|
|
|
|
# An external repository for test to use
|
|
local_repository(
|
|
name = "external_test_repo",
|
|
path = "./lib/tests/external_test_repo",
|
|
)
|
|
|
|
############################################
|
|
# Gazelle, for generating bzl_library targets
|
|
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
|
|
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies")
|
|
|
|
go_rules_dependencies()
|
|
|
|
go_register_toolchains(version = "1.17.2")
|
|
|
|
gazelle_dependencies()
|