BUILD.bazel 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. # Copyright 2022 Google LLC
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # https://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. package(default_visibility = ["//visibility:public"])
  15. ##############################################################################
  16. # Common
  17. ##############################################################################
  18. load("@rules_proto//proto:defs.bzl", "proto_library")
  19. proto_library(
  20. name = "enums_proto",
  21. srcs = glob(["*.proto"]),
  22. deps = [
  23. ],
  24. )
  25. ##############################################################################
  26. # Java
  27. ##############################################################################
  28. load(
  29. "@com_google_googleapis_imports//:imports.bzl",
  30. "java_grpc_library",
  31. "java_proto_library",
  32. )
  33. java_proto_library(
  34. name = "enums_java_proto",
  35. deps = [":enums_proto"],
  36. )
  37. java_grpc_library(
  38. name = "enums_java_grpc",
  39. srcs = [":enums_proto"],
  40. deps = [":enums_java_proto"],
  41. )
  42. ##############################################################################
  43. # Python
  44. ##############################################################################
  45. load(
  46. "@com_google_googleapis_imports//:imports.bzl",
  47. "moved_proto_library",
  48. "py_grpc_library",
  49. "py_proto_library",
  50. )
  51. moved_proto_library(
  52. name = "enums_moved_proto",
  53. srcs = [":enums_proto"],
  54. deps = [
  55. ],
  56. )
  57. py_proto_library(
  58. name = "enums_py_proto",
  59. deps = [":enums_moved_proto"],
  60. )
  61. py_grpc_library(
  62. name = "enums_py_grpc",
  63. srcs = [":enums_moved_proto"],
  64. deps = [":enums_py_proto"],
  65. )
  66. ##############################################################################
  67. # C#
  68. ##############################################################################
  69. load(
  70. "@com_google_googleapis_imports//:imports.bzl",
  71. "csharp_grpc_library",
  72. "csharp_proto_library",
  73. )
  74. csharp_proto_library(
  75. name = "enums_csharp_proto",
  76. deps = [":enums_proto"],
  77. )
  78. csharp_grpc_library(
  79. name = "enums_csharp_grpc",
  80. srcs = [":enums_proto"],
  81. deps = [":enums_csharp_proto"],
  82. )