forked from brendanhay/amazonka
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBUILD.bazel
46 lines (45 loc) · 1.37 KB
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
load("@rules_haskell//haskell:defs.bzl", "haskell_library")
# rule generated from test/amazonka-test.cabal by gazelle_cabal
haskell_library(
name = "amazonka-test",
srcs = [
"src/Test/Amazonka/Assert.hs",
"src/Test/Amazonka/Diff.hs",
"src/Test/Amazonka/Fixture.hs",
"src/Test/Amazonka/Orphans.hs",
"src/Test/Amazonka/Prelude.hs",
"src/Test/Amazonka/TH.hs",
],
compiler_flags = [
"-Wall",
"-fwarn-incomplete-uni-patterns",
"-fwarn-incomplete-record-updates",
"-DVERSION_amazonka_test=\"2.0\"",
],
hidden_modules = [],
version = "2.0",
visibility = ["//visibility:public"],
deps = [
"//lib/amazonka-core",
"@stackage//:aeson",
"@stackage//:base",
"@stackage//:bifunctors",
"@stackage//:bytestring",
"@stackage//:case-insensitive",
"@stackage//:conduit",
"@stackage//:conduit-extra",
"@stackage//:groom",
"@stackage//:http-client",
"@stackage//:http-types",
"@stackage//:process",
"@stackage//:resourcet",
"@stackage//:tasty",
"@stackage//:tasty-hunit",
"@stackage//:template-haskell",
"@stackage//:temporary",
"@stackage//:text",
"@stackage//:time",
"@stackage//:unordered-containers",
"@stackage//:yaml",
],
)