-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Gazelle updates to BUILD files, concat_files
- Loading branch information
1 parent
fdf975d
commit 6527a61
Showing
11 changed files
with
147 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,63 @@ | ||
load("@rules_go//go:def.bzl", "go_binary", "go_test") | ||
load("@gazelle//:def.bzl", "gazelle") | ||
load("@rules_go//go:def.bzl", "go_binary", "go_library") | ||
load("//build_deps:install.bzl", "local_install") | ||
|
||
gazelle(name = "gazelle") | ||
|
||
local_install( | ||
name = "install", | ||
srcs = [ | ||
":grep_sdf", | ||
":parallel_process_file", | ||
":no_spaces_in_file_name", | ||
":parallel_process_file", | ||
":regression_to_classification", | ||
":rxn_reverse", | ||
":rxnsmiles2smi", | ||
], | ||
) | ||
|
||
# gazelle:prefix xgboost | ||
|
||
go_binary( | ||
name = "parallel_process_file", | ||
srcs = [ | ||
"parallel_process_file.go", | ||
], | ||
srcs = ["parallel_process_file.go"], | ||
) | ||
|
||
go_binary( | ||
name = "no_spaces_in_file_name", | ||
srcs = [ | ||
"no_spaces_in_file_name.go", | ||
], | ||
srcs = ["no_spaces_in_file_name.go"], | ||
) | ||
|
||
go_binary( | ||
name = "regression_to_classification", | ||
srcs = [ | ||
"regression_to_classification.go", | ||
], | ||
srcs = ["regression_to_classification.go"], | ||
) | ||
|
||
go_binary( | ||
name = "rxn_reverse", | ||
srcs = [ | ||
"rxn_reverse.go", | ||
], | ||
srcs = ["rxn_reverse.go"], | ||
) | ||
|
||
go_binary( | ||
name = "rxnsmiles2smi", | ||
srcs = [ | ||
"rxnsmiles2smi.go", | ||
], | ||
srcs = ["rxnsmiles2smi.go"], | ||
) | ||
|
||
go_binary( | ||
name = "grep_sdf", | ||
srcs = [ | ||
"grep_sdf.go", | ||
], | ||
srcs = ["grep_sdf.go"], | ||
) | ||
|
||
# Could never get this to work. | ||
# Problem came down to trying to make the import | ||
# google.golang.org/protobuf/proto | ||
# avaialble, and I was never able to figure that out. | ||
|
||
# go_binary( | ||
# name = "xgbd_evaluate", | ||
# srcs = ["xgbd_evaluate.go"], | ||
# deps = [ | ||
# "//xgboost:xgboost_model_go_proto", | ||
# we need something here for the missing dependency. | ||
# ], | ||
# ) |
Oops, something went wrong.