blob: f9d107a03ce519ca5b0ac944a4fb80d03dca9543 [file] [log] [blame]
Kristina Chodorowc9f87562015-07-07 15:44:07 +00001# For src/tools/dash support.
2
3new_http_archive(
4 name = "appengine-java",
5 url = "http://central.maven.org/maven2/com/google/appengine/appengine-java-sdk/1.9.23/appengine-java-sdk-1.9.23.zip",
6 sha256 = "05e667036e9ef4f999b829fc08f8e5395b33a5a3c30afa9919213088db2b2e89",
7 build_file = "tools/build_rules/appengine/appengine.BUILD",
8)
9
10bind(
11 name = "appengine/java/sdk",
12 actual = "@appengine-java//:sdk",
13)
14
15bind(
16 name = "appengine/java/api",
17 actual = "@appengine-java//:api",
18)
19
20bind(
21 name = "appengine/java/jars",
22 actual = "@appengine-java//:jars",
23)
24
25maven_jar(
26 name = "javax-servlet-api",
27 artifact = "javax.servlet:servlet-api:2.5",
28)
29
30maven_jar(
31 name = "commons-lang",
32 artifact = "commons-lang:commons-lang:2.6",
33)
34
35bind(
36 name = "javax/servlet/api",
37 actual = "//tools/build_rules/appengine:javax.servlet.api",
38)
Kristina Chodorowca693f52015-07-16 14:16:18 +000039
40maven_jar(
41 name = "easymock",
42 artifact = "org.easymock:easymock:3.1",
43)
David Chen31143242015-07-27 08:40:47 +000044
45new_http_archive(
46 name = "rust-linux-x86_64",
David Chen4eb82ec12015-09-24 09:24:24 +000047 url = "https://static.rust-lang.org/dist/rust-1.3.0-x86_64-unknown-linux-gnu.tar.gz",
48 sha256 = "fa755b6331ff7554e6e8545ee20af7897b0adc65f471dd24ae8a467a944755b4",
49 build_file = "tools/build_rules/rust/rust.BUILD",
David Chenab141f82015-10-05 12:21:32 +000050 strip_prefix = "rust-1.3.0-x86_64-unknown-linux-gnu",
David Chen31143242015-07-27 08:40:47 +000051)
52
53new_http_archive(
54 name = "rust-darwin-x86_64",
David Chen4eb82ec12015-09-24 09:24:24 +000055 url = "https://static.rust-lang.org/dist/rust-1.3.0-x86_64-apple-darwin.tar.gz",
56 sha256 = "bfeac876e22cc5fe63a250644ce1a6f3892c13a5461131a881419bd06fcb2011",
57 build_file = "tools/build_rules/rust/rust.BUILD",
David Chenab141f82015-10-05 12:21:32 +000058 strip_prefix = "rust-1.3.0-x86_64-apple-darwin",
David Chen31143242015-07-27 08:40:47 +000059)
Lukacs Berki678ba232015-09-03 13:28:55 +000060
61# In order to run the Android integration tests, uncomment these rules, point
62# them to the Android NDK and the SDK, and point the bind rules under them
Lukacs Berki4e21d902015-09-07 09:59:50 +000063# to @repository//:files .
64# android_sdk_repository(
65# name = "androidsdk",
66# path = "/path/to/sdk",
67# build_tools_version = "21.1.1",
68# api_level = 19,
Lukacs Berki678ba232015-09-03 13:28:55 +000069# )
Lukacs Berki4e21d902015-09-07 09:59:50 +000070
71# android_ndk_repository(
72# name = "androidndk",
73# path = "/path/to/ndk",
74# api_level = 19,
Lukacs Berki678ba232015-09-03 13:28:55 +000075# )
76
77bind(
78 name = "android_sdk_for_testing",
79 actual = "//:dummy",
80)
81
82bind(
83 name = "android_ndk_for_testing",
84 actual = "//:dummy",
85)
David Chen87419782015-09-07 21:49:56 +000086
87new_http_archive(
88 name = "dmd-linux-x86_64",
89 url = "http://downloads.dlang.org/releases/2.x/2.067.1/dmd.2.067.1.linux.zip",
90 sha256 = "a5014886773853b4a42df19ee9591774cf281d33fbc511b265df30ba832926cd",
91 build_file = "tools/build_defs/d/dmd.BUILD",
92)
93
94new_http_archive(
95 name = "dmd-darwin-x86_64",
96 url = "http://downloads.dlang.org/releases/2.x/2.067.1/dmd.2.067.1.osx.zip",
97 sha256 = "aa76bb83c38b3f7495516eb08977fc9700c664d7a945ba3ac3c0004a6a8509f2",
98 build_file = "tools/build_defs/d/dmd.BUILD",
99)
David Chen361d2e22015-09-12 01:32:26 +0000100
101new_git_repository(
102 name = "jsonnet",
103 remote = "https://github.com/google/jsonnet.git",
104 tag = "v0.8.0",
105 build_file = "tools/build_defs/jsonnet/jsonnet.BUILD",
106)
Derek Perez98235e32015-09-23 13:30:40 +0000107
108new_http_archive(
109 name = "libsass",
110 url = "https://github.com/sass/libsass/archive/3.3.0-beta1.tar.gz",
111 sha256 = "6a4da39cc0b585f7a6ee660dc522916f0f417c890c3c0ac7ebbf6a85a16d220f",
112 build_file = "tools/build_defs/sass/libsass.BUILD",
113)
114
115new_http_archive(
116 name = "sassc",
117 url = "https://github.com/sass/sassc/archive/3.3.0-beta1.tar.gz",
118 sha256 = "87494218eea2441a7a24b40f227330877dbba75c5fa9014ac6188711baed53f6",
119 build_file = "tools/build_defs/sass/sassc.BUILD",
120)