Skip to content

Commit

Permalink
chore: Add more descriptive/precise tags to bazel build rules.
Browse files Browse the repository at this point in the history
  • Loading branch information
iphydf committed Jan 20, 2025
1 parent 79e47a8 commit e6357d7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
7 changes: 5 additions & 2 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ project(license = "gpl3-https")
# outs = ["src/FFI/%s.hs" % "/".join([mod.capitalize() for mod in src[:-2].split("/")])],
# cmd = "$(location //hs-apigen/tools:apigen) -hs $< > $@",
# tools = ["//hs-apigen/tools:apigen"],
# tags = ["no-cross"],
# tags = ["no-cross", "haskell"],
# ) for src in [
# "tox/tox.h",
# ]]
Expand All @@ -24,7 +24,10 @@ haskell_library(
#":api_tox_tox",
],
src_strip_prefix = "src",
tags = ["no-cross"],
tags = [
"haskell",
"no-cross",
],
version = "0.2.19",
visibility = ["//visibility:public"],
deps = [
Expand Down
5 changes: 4 additions & 1 deletion tools/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ load("@rules_haskell//haskell:defs.bzl", "haskell_binary")
haskell_binary(
name = "groupbot",
srcs = ["groupbot.hs"],
tags = ["no-cross"],
tags = [
"haskell",
"no-cross",
],
visibility = ["//tools/haskell:__pkg__"],
deps = [
"//hs-toxcore-c",
Expand Down

0 comments on commit e6357d7

Please sign in to comment.