-
Notifications
You must be signed in to change notification settings - Fork 8
/
WORKSPACE
44 lines (27 loc) · 968 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 2019. All Rights Reserved.
# Author: [email protected] (Fangjun Kuang)
workspace(name = "cnn")
load("//cnn:workspace.bzl", "cnn_repositories")
cnn_repositories()
load(
"@bazel_federation//:repositories.bzl",
"rules_cc",
"rules_java",
"rules_python",
)
#==================== rules_cc ====================
rules_cc()
load("@bazel_federation//setup:rules_cc.bzl", "rules_cc_setup")
rules_cc_setup()
#==================== rules_java ====================
rules_java()
load("@bazel_federation//setup:rules_java.bzl", "rules_java_setup")
rules_java_setup()
#==================== rules_python ====================
rules_python()
load("@bazel_federation//setup:rules_python.bzl", "rules_python_setup")
rules_python_setup()
#==================== rules_proto ====================
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
rules_proto_dependencies()
rules_proto_toolchains()