-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWORKSPACE
66 lines (54 loc) · 1.5 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
55
56
57
58
59
60
61
62
63
64
65
66
new_git_repository(
name = "dawgdic",
build_file = "BUILD.dawgdic",
commit = "16ac537ba9883ff01b63b6d1fdc3072150c68fee",
remote = "https://github.com/stil/dawgdic",
)
git_repository(
name = "gflags_git",
commit = "cce68f0c9c5d054017425e6e6fd54f696d36e8ee",
remote = "https://github.com/gflags/gflags.git",
)
bind(
name = "gflags",
actual = "@gflags_git//:gflags",
)
new_http_archive(
name = "libpng_http",
build_file = "BUILD.libpng",
sha256 = "e30bf36cd5882e017c23a5c6a79a9aa1a744dd5841bb45ff7035ec6e3b3096b8",
strip_prefix = "libpng-1.6.29",
url = "http://download.sourceforge.net/libpng/libpng-1.6.29.tar.gz",
)
bind(
name = "libpng",
actual = "@libpng_http//:libpng",
)
new_git_repository(
name = "opencv",
build_file = "BUILD.opencv",
remote = "https://github.com/opencv/opencv",
tag = "3.1.0",
)
git_repository(
name = "org_pubref_rules_protobuf",
commit = "404977c0290704aacca00fac8ca0ecaeda09a7cf",
remote = "https://github.com/pubref/rules_protobuf",
)
load("@org_pubref_rules_protobuf//cpp:rules.bzl", "cpp_proto_repositories")
load("@org_pubref_rules_protobuf//java:rules.bzl", "java_proto_repositories")
cpp_proto_repositories()
java_proto_repositories()
android_sdk_repository(
name = "androidsdk",
api_level = 26,
build_tools_version = "25.0.3",
)
android_ndk_repository(
name = "androidndk",
api_level = 25,
)
maven_jar(
name = "jsr250",
artifact = "javax.annotation:jsr250-api:1.0",
)