forked from bazelbuild/bazel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
54 lines (48 loc) · 1.71 KB
/
WORKSPACE
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
47
48
49
50
51
52
53
54
load("/tools/build_defs/d/d", "d_repositories")
load("/tools/build_defs/dotnet/csharp", "csharp_repositories")
load("/tools/build_defs/jsonnet/jsonnet", "jsonnet_repositories")
load("/tools/build_defs/sass/sass", "sass_repositories")
load("/tools/build_rules/go/def", "go_repositories")
load("/tools/build_rules/rust/rust", "rust_repositories")
csharp_repositories()
d_repositories()
go_repositories()
jsonnet_repositories()
rust_repositories()
sass_repositories()
# In order to run the Android integration tests, uncomment these rules, point
# them to the Android NDK and the SDK, and point the bind rules under them
# to @repository//:files .
# android_sdk_repository(
# name = "androidsdk",
# path = "/path/to/sdk",
# # Available versions are under /path/to/sdk/build-tools/.
# build_tools_version = "21.1.1",
# # Available versions are under /path/to/sdk/platforms/.
# api_level = 19,
# )
# android_ndk_repository(
# name = "androidndk",
# path = "/path/to/ndk",
# api_level = 19, # Set this to the SDK's api_level.
# )
bind(
name = "android_sdk_for_testing",
# Uncomment and delete the //:dummy line to run integration tests.
# actual = "@androidsdk//:files",
actual = "//:dummy",
)
bind(
name = "android_ndk_for_testing",
# Uncomment and delete the //:dummy line to run integration tests.
# actual = "@androidndk//:files",
actual = "//:dummy",
)
# only used for the scala rule
new_http_archive(
name = "scala",
strip_prefix = "scala-2.11.7",
sha256 = "ffe4196f13ee98a66cf54baffb0940d29432b2bd820bd0781a8316eec22926d0",
url = "http://downloads.typesafe.com/scala/2.11.7/scala-2.11.7.tgz",
build_file = "tools/build_defs/scala/scala.BUILD",
)