blob: e45045acc4f21da9f234e37bae08ba599c4a560f [file] [log] [blame]
Brian O'Connor4443ffb2016-04-29 15:50:45 -07001def remote_jar (
2 name,
3 out,
4 url,
5 sha1,
6 maven_coords = None,
7 visibility = [ 'PUBLIC' ],
8 ):
9
10 prebuilt_jar(
11 name = name,
12 binary_jar = ':' + out,
13 maven_coords = maven_coords,
14 visibility = visibility,
15 )
16
17 remote_file(
18 name = out,
19 out = out,
20 url = url,
21 sha1 = sha1,
22 visibility = []
23 )