blob: 609093fce4fa5a1749ea9cda55116648fc0c2577 [file] [log] [blame]
David Chen7019ff92015-12-04 13:25:38 +00001load("/tools/build_defs/d/d", "d_repositories")
2load("/tools/build_defs/dotnet/csharp", "csharp_repositories")
3load("/tools/build_defs/jsonnet/jsonnet", "jsonnet_repositories")
4load("/tools/build_defs/sass/sass", "sass_repositories")
5load("/tools/build_rules/go/def", "go_repositories")
David Chen07b0ba62015-12-02 15:16:09 +00006load("/tools/build_rules/rust/rust", "rust_repositories")
David Chen31143242015-07-27 08:40:47 +00007
David Chen7019ff92015-12-04 13:25:38 +00008csharp_repositories()
9d_repositories()
10go_repositories()
11jsonnet_repositories()
David Chen07b0ba62015-12-02 15:16:09 +000012rust_repositories()
David Chen7019ff92015-12-04 13:25:38 +000013sass_repositories()
Lukacs Berki678ba232015-09-03 13:28:55 +000014
Damien Martin-Guillerez0c1a8cf2016-02-05 18:37:12 +000015# Bind to dummy targets if no android SDK/NDK is present.
16bind(
17 name = "android_sdk_for_testing",
18 actual = "//:dummy",
19)
20
21bind(
22 name = "android_ndk_for_testing",
23 actual = "//:dummy",
24)
25
Steven Deec74d3e42016-02-02 16:32:23 +000026# In order to run the Android integration tests, run
27# scripts/workspace_user.sh and uncomment the next two lines.
28# load("/WORKSPACE.user", "android_repositories")
29# android_repositories()
oscar0a2fa032015-12-08 20:45:08 +000030
31# only used for the scala rule
32new_http_archive(
33 name = "scala",
34 strip_prefix = "scala-2.11.7",
35 sha256 = "ffe4196f13ee98a66cf54baffb0940d29432b2bd820bd0781a8316eec22926d0",
36 url = "http://downloads.typesafe.com/scala/2.11.7/scala-2.11.7.tgz",
37 build_file = "tools/build_defs/scala/scala.BUILD",
38)
Dino Wernliaaff8552016-02-01 15:37:48 +000039
40# only used for the scala test rule
41http_file(
42 name = "scalatest",
43 url = "https://oss.sonatype.org/content/groups/public/org/scalatest/scalatest_2.11/2.2.6/scalatest_2.11-2.2.6.jar",
44 sha256 = "f198967436a5e7a69cfd182902adcfbcb9f2e41b349e1a5c8881a2407f615962",
45)
46