forked from google/elemental2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
40 lines (27 loc) · 1.04 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
workspace(name = "com_google_elemental2")
new_local_repository(
name = "com_google_closure_compiler",
path = "../../closure-compiler/",
build_file = "//build_defs/internal_do_not_use:jscomp.BUILD",
)
local_repository(
name = "com_google_jsinterop_generator",
path = "../../jacline-jsinterop-generator/jsinterop-generator/",
)
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Load J2CL separately
_J2CL_VERSION = "master"
http_archive(
name = "com_google_j2cl",
strip_prefix = "j2cl-%s" % _J2CL_VERSION,
url = "https://github.com/google/j2cl/archive/%s.zip" % _J2CL_VERSION,
)
load("@com_google_j2cl//build_defs:repository.bzl", "load_j2cl_repo_deps")
load_j2cl_repo_deps()
load("@com_google_j2cl//build_defs:workspace.bzl", "setup_j2cl_workspace")
setup_j2cl_workspace()
# Load other dependencies
load("//build_defs:repository.bzl", "load_elemental2_repo_deps")
load_elemental2_repo_deps()
load("//build_defs:workspace.bzl", "setup_elemental2_workspace")
setup_elemental2_workspace()