BUILD.bazel 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386
  1. # This file was automatically generated by BuildFileGenerator
  2. # https://github.com/googleapis/rules_gapic/tree/master/bazel
  3. # Most of the manual changes to this file will be overwritten.
  4. # It's **only** allowed to change the following rule attribute values:
  5. # - names of *_gapic_assembly_* rules
  6. # - certain parameters of *_gapic_library rules, including but not limited to:
  7. # * extra_protoc_parameters
  8. # * extra_protoc_file_parameters
  9. # The complete list of preserved parameters can be found in the source code.
  10. # This is an API workspace, having public visibility by default makes perfect sense.
  11. package(default_visibility = ["//visibility:public"])
  12. ##############################################################################
  13. # Common
  14. ##############################################################################
  15. load("@rules_proto//proto:defs.bzl", "proto_library")
  16. load("@com_google_googleapis_imports//:imports.bzl", "proto_library_with_info")
  17. proto_library(
  18. name = "executions_proto",
  19. srcs = [
  20. "executions.proto",
  21. ],
  22. deps = [
  23. "//google/api:annotations_proto",
  24. "//google/api:client_proto",
  25. "//google/api:field_behavior_proto",
  26. "//google/api:resource_proto",
  27. "@com_google_protobuf//:timestamp_proto",
  28. ],
  29. )
  30. proto_library_with_info(
  31. name = "executions_proto_with_info",
  32. deps = [
  33. ":executions_proto",
  34. "//google/cloud:common_resources_proto",
  35. ],
  36. )
  37. ##############################################################################
  38. # Java
  39. ##############################################################################
  40. load(
  41. "@com_google_googleapis_imports//:imports.bzl",
  42. "java_gapic_assembly_gradle_pkg",
  43. "java_gapic_library",
  44. "java_gapic_test",
  45. "java_grpc_library",
  46. "java_proto_library",
  47. )
  48. java_proto_library(
  49. name = "executions_java_proto",
  50. deps = [":executions_proto"],
  51. )
  52. java_grpc_library(
  53. name = "executions_java_grpc",
  54. srcs = [":executions_proto"],
  55. deps = [":executions_java_proto"],
  56. )
  57. java_gapic_library(
  58. name = "executions_java_gapic",
  59. srcs = [":executions_proto_with_info"],
  60. gapic_yaml = "executions_gapic.yaml",
  61. grpc_service_config = "executions_grpc_service_config.json",
  62. rest_numeric_enums = False,
  63. service_yaml = "workflowexecutions_v1.yaml",
  64. test_deps = [
  65. ":executions_java_grpc",
  66. ],
  67. transport = "grpc+rest",
  68. deps = [
  69. ":executions_java_proto",
  70. "//google/api:api_java_proto",
  71. ],
  72. )
  73. java_gapic_test(
  74. name = "executions_java_gapic_test_suite",
  75. test_classes = [
  76. "com.google.cloud.workflows.executions.v1.ExecutionsClientHttpJsonTest",
  77. "com.google.cloud.workflows.executions.v1.ExecutionsClientTest",
  78. ],
  79. runtime_deps = [":executions_java_gapic_test"],
  80. )
  81. # Open Source Packages
  82. java_gapic_assembly_gradle_pkg(
  83. name = "google-cloud-workflows-executions-v1-java",
  84. include_samples = True,
  85. transport = "grpc+rest",
  86. deps = [
  87. ":executions_java_gapic",
  88. ":executions_java_grpc",
  89. ":executions_java_proto",
  90. ":executions_proto",
  91. ],
  92. )
  93. ##############################################################################
  94. # Go
  95. ##############################################################################
  96. load(
  97. "@com_google_googleapis_imports//:imports.bzl",
  98. "go_gapic_assembly_pkg",
  99. "go_gapic_library",
  100. "go_proto_library",
  101. "go_test",
  102. )
  103. go_proto_library(
  104. name = "executions_go_proto",
  105. compilers = ["@io_bazel_rules_go//proto:go_grpc"],
  106. importpath = "google.golang.org/genproto/googleapis/cloud/workflows/executions/v1",
  107. protos = [":executions_proto"],
  108. deps = [
  109. "//google/api:annotations_go_proto",
  110. ],
  111. )
  112. go_gapic_library(
  113. name = "executions_go_gapic",
  114. srcs = [":executions_proto_with_info"],
  115. grpc_service_config = "executions_grpc_service_config.json",
  116. importpath = "cloud.google.com/go/workflows/executions/apiv1;executions",
  117. metadata = True,
  118. rest_numeric_enums = False,
  119. service_yaml = "workflowexecutions_v1.yaml",
  120. transport = "grpc+rest",
  121. deps = [
  122. ":executions_go_proto",
  123. ],
  124. )
  125. go_test(
  126. name = "executions_go_gapic_test",
  127. srcs = [":executions_go_gapic_srcjar_test"],
  128. embed = [":executions_go_gapic"],
  129. importpath = "cloud.google.com/go/workflows/executions/apiv1",
  130. )
  131. # Open Source Packages
  132. go_gapic_assembly_pkg(
  133. name = "gapi-cloud-workflows-executions-v1-go",
  134. deps = [
  135. ":executions_go_gapic",
  136. ":executions_go_gapic_srcjar-metadata.srcjar",
  137. ":executions_go_gapic_srcjar-test.srcjar",
  138. ":executions_go_proto",
  139. ],
  140. )
  141. ##############################################################################
  142. # Python
  143. ##############################################################################
  144. load(
  145. "@com_google_googleapis_imports//:imports.bzl",
  146. "py_gapic_assembly_pkg",
  147. "py_gapic_library",
  148. "py_test",
  149. )
  150. py_gapic_library(
  151. name = "executions_py_gapic",
  152. srcs = [":executions_proto"],
  153. grpc_service_config = "executions_grpc_service_config.json",
  154. rest_numeric_enums = False,
  155. transport = "grpc",
  156. )
  157. py_test(
  158. name = "executions_py_gapic_test",
  159. srcs = [
  160. "executions_py_gapic_pytest.py",
  161. "executions_py_gapic_test.py",
  162. ],
  163. legacy_create_init = False,
  164. deps = [":executions_py_gapic"],
  165. )
  166. # Open Source Packages
  167. py_gapic_assembly_pkg(
  168. name = "workflows-executions-v1-py",
  169. deps = [
  170. ":executions_py_gapic",
  171. ],
  172. )
  173. ##############################################################################
  174. # PHP
  175. ##############################################################################
  176. load(
  177. "@com_google_googleapis_imports//:imports.bzl",
  178. "php_gapic_assembly_pkg",
  179. "php_gapic_library",
  180. "php_grpc_library",
  181. "php_proto_library",
  182. )
  183. php_proto_library(
  184. name = "executions_php_proto",
  185. deps = [":executions_proto"],
  186. )
  187. php_grpc_library(
  188. name = "executions_php_grpc",
  189. srcs = [":executions_proto"],
  190. deps = [":executions_php_proto"],
  191. )
  192. php_gapic_library(
  193. name = "executions_php_gapic",
  194. srcs = [":executions_proto_with_info"],
  195. grpc_service_config = "executions_grpc_service_config.json",
  196. rest_numeric_enums = False,
  197. service_yaml = "workflowexecutions_v1.yaml",
  198. transport = "grpc+rest",
  199. deps = [
  200. ":executions_php_grpc",
  201. ":executions_php_proto",
  202. ],
  203. )
  204. # Open Source Packages
  205. php_gapic_assembly_pkg(
  206. name = "google-cloud-workflows-executions-v1-php",
  207. deps = [
  208. ":executions_php_gapic",
  209. ":executions_php_grpc",
  210. ":executions_php_proto",
  211. ],
  212. )
  213. ##############################################################################
  214. # Node.js
  215. ##############################################################################
  216. load(
  217. "@com_google_googleapis_imports//:imports.bzl",
  218. "nodejs_gapic_assembly_pkg",
  219. "nodejs_gapic_library",
  220. )
  221. nodejs_gapic_library(
  222. name = "executions_nodejs_gapic",
  223. package_name = "@google-cloud/workflow-executions",
  224. src = ":executions_proto_with_info",
  225. extra_protoc_parameters = ["metadata"],
  226. grpc_service_config = "executions_grpc_service_config.json",
  227. package = "google.cloud.workflows.executions.v1",
  228. rest_numeric_enums = False,
  229. service_yaml = "workflowexecutions_v1.yaml",
  230. transport = "grpc+rest",
  231. deps = [],
  232. )
  233. nodejs_gapic_assembly_pkg(
  234. name = "workflows-executions-v1-nodejs",
  235. deps = [
  236. ":executions_nodejs_gapic",
  237. ":executions_proto",
  238. ],
  239. )
  240. ##############################################################################
  241. # Ruby
  242. ##############################################################################
  243. load(
  244. "@com_google_googleapis_imports//:imports.bzl",
  245. "ruby_cloud_gapic_library",
  246. "ruby_gapic_assembly_pkg",
  247. "ruby_grpc_library",
  248. "ruby_proto_library",
  249. )
  250. ruby_proto_library(
  251. name = "executions_ruby_proto",
  252. deps = [":executions_proto"],
  253. )
  254. ruby_grpc_library(
  255. name = "executions_ruby_grpc",
  256. srcs = [":executions_proto"],
  257. deps = [":executions_ruby_proto"],
  258. )
  259. ruby_cloud_gapic_library(
  260. name = "executions_ruby_gapic",
  261. srcs = [":executions_proto_with_info"],
  262. extra_protoc_parameters = [
  263. "ruby-cloud-api-id=workflowexecutions.googleapis.com",
  264. "ruby-cloud-api-shortname=workflowexecutions",
  265. "ruby-cloud-env-prefix=WORKFLOWS",
  266. "ruby-cloud-gem-name=google-cloud-workflows-executions-v1",
  267. "ruby-cloud-product-url=https://cloud.google.com/workflows/",
  268. "ruby-cloud-wrapper-gem-override=google-cloud-workflows",
  269. ],
  270. grpc_service_config = "executions_grpc_service_config.json",
  271. rest_numeric_enums = False,
  272. ruby_cloud_description = "Workflows link series of serverless tasks together in an order you define. Combine the power of Google Cloud's APIs, serverless products like Cloud Functions and Cloud Run, and calls to external APIs to create flexible serverless applications. Workflows requires no infrastructure management and scales seamlessly with demand, including scaling down to zero..",
  273. ruby_cloud_title = "Workflows Executions V1",
  274. deps = [
  275. ":executions_ruby_grpc",
  276. ":executions_ruby_proto",
  277. ],
  278. )
  279. # Open Source Packages
  280. ruby_gapic_assembly_pkg(
  281. name = "google-cloud-workflows-executions-v1-ruby",
  282. deps = [
  283. ":executions_ruby_gapic",
  284. ":executions_ruby_grpc",
  285. ":executions_ruby_proto",
  286. ],
  287. )
  288. ##############################################################################
  289. # C#
  290. ##############################################################################
  291. load(
  292. "@com_google_googleapis_imports//:imports.bzl",
  293. "csharp_gapic_assembly_pkg",
  294. "csharp_gapic_library",
  295. "csharp_grpc_library",
  296. "csharp_proto_library",
  297. )
  298. csharp_proto_library(
  299. name = "executions_csharp_proto",
  300. deps = [":executions_proto"],
  301. )
  302. csharp_grpc_library(
  303. name = "executions_csharp_grpc",
  304. srcs = [":executions_proto"],
  305. deps = [":executions_csharp_proto"],
  306. )
  307. csharp_gapic_library(
  308. name = "executions_csharp_gapic",
  309. srcs = [":executions_proto_with_info"],
  310. common_resources_config = "@gax_dotnet//:Google.Api.Gax/ResourceNames/CommonResourcesConfig.json",
  311. grpc_service_config = "executions_grpc_service_config.json",
  312. rest_numeric_enums = False,
  313. service_yaml = "workflowexecutions_v1.yaml",
  314. deps = [
  315. ":executions_csharp_grpc",
  316. ":executions_csharp_proto",
  317. ],
  318. )
  319. # Open Source Packages
  320. csharp_gapic_assembly_pkg(
  321. name = "google-cloud-workflows-executions-v1-csharp",
  322. deps = [
  323. ":executions_csharp_gapic",
  324. ":executions_csharp_grpc",
  325. ":executions_csharp_proto",
  326. ],
  327. )
  328. ##############################################################################
  329. # C++
  330. ##############################################################################
  331. load(
  332. "@com_google_googleapis_imports//:imports.bzl",
  333. "cc_grpc_library",
  334. "cc_proto_library",
  335. )
  336. cc_proto_library(
  337. name = "executions_cc_proto",
  338. deps = [":executions_proto"],
  339. )
  340. cc_grpc_library(
  341. name = "executions_cc_grpc",
  342. srcs = [":executions_proto"],
  343. grpc_only = True,
  344. deps = [":executions_cc_proto"],
  345. )