forked from google/jsinterop-annotations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
28 lines (21 loc) · 938 Bytes
/
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
workspace(name = "com_google_jsinterop_annotations")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Load j2cl repository. We only need to load the workspace in order to
# have access to j2cl_import starlark rule.
http_archive(
name = "com_google_j2cl",
strip_prefix = "j2cl-master",
url = "https://github.com/google/j2cl/archive/master.zip",
)
load("@com_google_j2cl//build_defs:repository.bzl", "load_j2cl_repo_deps")
load_j2cl_repo_deps()
load("@com_google_j2cl//build_defs:rules.bzl", "setup_j2cl_workspace")
setup_j2cl_workspace()
http_archive(
name = "rules_license",
sha256 = "00ccc0df21312c127ac4b12880ab0f9a26c1cff99442dc6c5a331750360de3c3",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_license/releases/download/0.0.3/rules_license-0.0.3.tar.gz",
"https://github.com/bazelbuild/rules_license/releases/download/0.0.3/rules_license-0.0.3.tar.gz",
],
)