-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBUILD.bazel
More file actions
32 lines (28 loc) · 1.03 KB
/
BUILD.bazel
File metadata and controls
32 lines (28 loc) · 1.03 KB
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
"""
This file is mainly used for storing utility tools for the whole project.
"""
load("@hedron_compile_commands//:refresh_compile_commands.bzl", "refresh_compile_commands")
load("@rules_shell//shell:sh_binary.bzl", "sh_binary")
sh_binary(
name = "format",
srcs = ["format.sh"],
)
refresh_compile_commands(
name = "refresh_compile_commands",
exclude_external_sources = True,
# Specify the targets of interest.
# For example, specify a dict of targets and any flags required to build.
targets = {
"//ucx_context:ucx_am_context": "",
"//ucx_context:ucx_am_context_test": "",
"//rpc_core:rpc_dispatcher_test": "--define rpc_enable_natural_call=true",
"//rpc_core:rpc_async_dispatcher_test": "",
"//rpc_core:rpc_causality_test": "",
"//axon:axon_storage_test": "",
"//axon:axon_utils": "",
"//axon:axon_worker": "",
"//axon:axon_worker_test": "",
"//axon:axon_worker_basic_test": "",
"//axon/python:axon_python_runtime": "",
},
)