Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
  2.  
  3. go_library(
  4. name = "go_default_library",
  5. srcs = [
  6. "build_executor.go",
  7. "caching_build_executor.go",
  8. "local_build_executor.go",
  9. "storage_flushing_build_executor.go",
  10. "worker_build_queue.go",
  11. ],
  12. importpath = "github.com/buildbarn/bb-remote-execution/pkg/builder",
  13. visibility = ["//visibility:public"],
  14. deps = [
  15. "//pkg/environment:go_default_library",
  16. "//pkg/proto/runner:go_default_library",
  17. "//pkg/proto/scheduler:go_default_library",
  18. "@com_github_bazelbuild_bazel_buildfarm//src/main/protobuf/build/buildfarm/v1test:go_default_library",
  19. "@com_github_bazelbuild_remote_apis//build/bazel/remote/execution/v2:go_default_library",
  20. "@com_github_bazelbuild_remote_apis//build/bazel/semver:go_default_library",
  21. "@com_github_buildbarn_bb_storage//pkg/ac:go_default_library",
  22. "@com_github_buildbarn_bb_storage//pkg/builder:go_default_library",
  23. "@com_github_buildbarn_bb_storage//pkg/cas:go_default_library",
  24. "@com_github_buildbarn_bb_storage//pkg/filesystem:go_default_library",
  25. "@com_github_buildbarn_bb_storage//pkg/proto/cas:go_default_library",
  26. "@com_github_buildbarn_bb_storage//pkg/util:go_default_library",
  27. "@com_github_golang_protobuf//proto:go_default_library",
  28. "@com_github_golang_protobuf//ptypes:go_default_library_gen",
  29. "@com_github_google_uuid//:go_default_library",
  30. "@com_github_prometheus_client_golang//prometheus:go_default_library",
  31. "@go_googleapis//google/longrunning:longrunning_go_proto",
  32. "@org_golang_google_grpc//codes:go_default_library",
  33. "@org_golang_google_grpc//status:go_default_library",
  34. ],
  35. )
  36.  
  37. go_test(
  38. name = "go_default_test",
  39. srcs = [
  40. "caching_build_executor_test.go",
  41. "local_build_executor_test.go",
  42. ],
  43. embed = [":go_default_library"],
  44. deps = [
  45. "//internal/mock:go_default_library",
  46. "//pkg/proto/runner:go_default_library",
  47. "@com_github_bazelbuild_remote_apis//build/bazel/remote/execution/v2:go_default_library",
  48. "@com_github_buildbarn_bb_storage//pkg/filesystem:go_default_library",
  49. "@com_github_buildbarn_bb_storage//pkg/proto/cas:go_default_library",
  50. "@com_github_buildbarn_bb_storage//pkg/util:go_default_library",
  51. "@com_github_golang_mock//gomock:go_default_library",
  52. "@com_github_stretchr_testify//require:go_default_library",
  53. "@go_googleapis//google/rpc:errdetails_go_proto",
  54. "@org_golang_google_grpc//codes:go_default_library",
  55. "@org_golang_google_grpc//status:go_default_library",
  56. ],
  57. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement