Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
4050b78
move codegen binary to the common build system
Mar 21, 2022
b9431e0
Update on "move codegen binary to the common build system"
Mar 21, 2022
a74595b
Update on "move codegen binary to the common build system"
Mar 21, 2022
70f15ab
Update on "move codegen binary to the common build system"
Mar 21, 2022
2192af5
Update on "move codegen binary to the common build system"
Mar 22, 2022
a5a1795
Update on "move codegen binary to the common build system"
Mar 22, 2022
0ebedc6
Update on "move codegen binary to the common build system"
Mar 22, 2022
5100ad7
Update on "move codegen binary to the common build system"
Mar 22, 2022
28cf7fd
Update on "move codegen binary to the common build system"
Mar 24, 2022
39c219e
Update on "move codegen binary to the common build system"
Mar 24, 2022
c2f7fb6
Update on "move codegen binary to the common build system"
Mar 24, 2022
f44cc60
Update on "move codegen binary to the common build system"
Mar 24, 2022
6ceaf83
Update on "move codegen binary to the common build system"
Mar 24, 2022
a7b722b
Update on "move codegen binary to the common build system"
Mar 24, 2022
7b66b31
Update on "move codegen binary to the common build system"
Mar 24, 2022
b83d86e
Update on "move codegen binary to the common build system"
Mar 24, 2022
59d1a0b
Update on "move codegen binary to the common build system"
Mar 25, 2022
27c195b
Update on "move codegen binary to the common build system"
Mar 25, 2022
818ee7e
Update on "move codegen binary to the common build system"
Mar 25, 2022
ab06f2d
Update on "move codegen binary to the common build system"
Mar 25, 2022
ff69397
Update on "move codegen binary to the common build system"
Mar 25, 2022
2f90933
Update on "move codegen binary to the common build system"
Mar 25, 2022
c8f765e
Update on "move codegen binary to the common build system"
Mar 25, 2022
adb9808
Update on "move codegen binary to the common build system"
Mar 25, 2022
e0687ad
Update on "move codegen binary to the common build system"
Mar 28, 2022
04dd351
Update on "move codegen binary to the common build system"
Mar 28, 2022
ac3108d
Update on "move codegen binary to the common build system"
Mar 28, 2022
910490a
Update on "move codegen binary to the common build system"
Mar 28, 2022
3433f1f
Update on "move codegen binary to the common build system"
Mar 28, 2022
cefa187
Update on "move codegen binary to the common build system"
Mar 29, 2022
78030ed
Update on "move codegen binary to the common build system"
Mar 30, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tools/bazel.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ rules = struct(
filegroup = native.filegroup,
glob = native.glob,
if_cuda = if_cuda,
py_binary = native.py_binary,
py_library = _py_library,
requirement = _requirement,
requires_cuda_enabled = requires_cuda_enabled,
Expand Down
6 changes: 6 additions & 0 deletions tools/codegen/build.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ def define_targets(rules):
],
visibility = ["//visibility:public"],
)

rules.py_binary(
name = "gen",
srcs = [":codegen"],
visibility = ["//visibility:public"],
)