1
1
mirror of https://github.com/github/semantic.git synced 2024-11-30 14:47:30 +03:00
semantic/semantic-core/BUILD.bazel
2021-08-19 12:42:44 -04:00

31 lines
600 B
Python

package(default_visibility = ["//visibility:public"])
load(
"@rules_haskell//haskell:defs.bzl",
"haskell_library",
"haskell_test",
)
load(
"@rules_haskell//haskell:cabal.bzl",
"haskell_cabal_binary",
"haskell_cabal_library",
)
load(
"//:build/common.bzl",
"EXECUTABLE_FLAGS",
"GHC_FLAGS",
)
haskell_library(
name = "semantic-core",
srcs = glob(["src/**/*.hs"]),
compiler_flags = GHC_FLAGS,
deps = [
"//:base",
"//:text",
"//semantic-analysis",
"@stackage//:fused-effects",
"@stackage//:hashable",
],
)