blob: 4226a1424c1b1a7d3f4933af453b151ac99a88c6 [file] [log] [blame]
Damien Martin-Guillerez76547e52016-01-15 14:01:37 +01001def _GetPath(ctx, path):
2 if ctx.label.workspace_root:
3 return ctx.label.workspace_root + '/' + path
4 else:
5 return path
6
Kristina Chodorow4e7ecde2017-01-25 14:10:56 -05007def _IsNewExternal(ctx):
8 # Bazel 0.4.4 and older have genfiles paths that look like:
9 # bazel-out/local-fastbuild/genfiles/external/repo/foo
10 # After the exec root rearrangement, they look like:
11 # ../repo/bazel-out/local-fastbuild/genfiles/foo
12 return ctx.label.workspace_root.startswith("../")
13
Jisi Liu993fb702015-10-19 17:19:49 -070014def _GenDir(ctx):
Kristina Chodorow4e7ecde2017-01-25 14:10:56 -050015 if _IsNewExternal(ctx):
16 # We are using the fact that Bazel 0.4.4+ provides repository-relative paths
17 # for ctx.genfiles_dir.
18 return ctx.genfiles_dir.path + (
19 "/" + ctx.attr.includes[0] if ctx.attr.includes and ctx.attr.includes[0] else "")
20 # This means that we're either in the old version OR the new version in the local repo.
21 # Either way, appending the source path to the genfiles dir works.
22 return ctx.var["GENDIR"] + "/" + _SourceDir(ctx)
23
24def _SourceDir(ctx):
Jisi Liu53a56be2015-10-20 15:18:20 -070025 if not ctx.attr.includes:
Damien Martin-Guillerez76547e52016-01-15 14:01:37 +010026 return ctx.label.workspace_root
Jisi Liu53a56be2015-10-20 15:18:20 -070027 if not ctx.attr.includes[0]:
Damien Martin-Guillerez76547e52016-01-15 14:01:37 +010028 return _GetPath(ctx, ctx.label.package)
Jisi Liu39362b32015-10-14 17:12:11 -070029 if not ctx.label.package:
Damien Martin-Guillerez76547e52016-01-15 14:01:37 +010030 return _GetPath(ctx, ctx.attr.includes[0])
31 return _GetPath(ctx, ctx.label.package + '/' + ctx.attr.includes[0])
Jisi Liu39362b32015-10-14 17:12:11 -070032
Andreas Bergmeierbbeb9832016-08-15 16:57:30 +020033def _CcHdrs(srcs, use_grpc_plugin=False):
34 ret = [s[:-len(".proto")] + ".pb.h" for s in srcs]
Manjunath Kudlurf5c73632016-02-25 08:50:50 -080035 if use_grpc_plugin:
Andreas Bergmeierbbeb9832016-08-15 16:57:30 +020036 ret += [s[:-len(".proto")] + ".grpc.pb.h" for s in srcs]
Manjunath Kudlurf5c73632016-02-25 08:50:50 -080037 return ret
Jisi Liu39362b32015-10-14 17:12:11 -070038
Andreas Bergmeierbbeb9832016-08-15 16:57:30 +020039def _CcSrcs(srcs, use_grpc_plugin=False):
40 ret = [s[:-len(".proto")] + ".pb.cc" for s in srcs]
41 if use_grpc_plugin:
42 ret += [s[:-len(".proto")] + ".grpc.pb.cc" for s in srcs]
43 return ret
44
45def _CcOuts(srcs, use_grpc_plugin=False):
46 return _CcHdrs(srcs, use_grpc_plugin) + _CcSrcs(srcs, use_grpc_plugin)
47
Mateusz Matejczyk294b5752018-03-11 17:48:10 -040048def _PyOuts(srcs, use_grpc_plugin=False):
49 ret = [s[:-len(".proto")] + "_pb2.py" for s in srcs]
50 if use_grpc_plugin:
51 ret += [s[:-len(".proto")] + "_pb2_grpc.py" for s in srcs]
52 return ret
Jisi Liu39362b32015-10-14 17:12:11 -070053
David Z. Chen02cd45c2016-05-20 16:49:04 -070054def _RelativeOutputPath(path, include, dest=""):
Jisi Liu993fb702015-10-19 17:19:49 -070055 if include == None:
56 return path
57
58 if not path.startswith(include):
59 fail("Include path %s isn't part of the path %s." % (include, path))
60
61 if include and include[-1] != '/':
62 include = include + '/'
David Z. Chen02cd45c2016-05-20 16:49:04 -070063 if dest and dest[-1] != '/':
64 dest = dest + '/'
Jisi Liu993fb702015-10-19 17:19:49 -070065
66 path = path[len(include):]
David Z. Chen02cd45c2016-05-20 16:49:04 -070067 return dest + path
Jisi Liu993fb702015-10-19 17:19:49 -070068
Jisi Liu9c7d9c02015-10-15 10:51:32 -070069def _proto_gen_impl(ctx):
70 """General implementation for generating protos"""
Jisi Liu39362b32015-10-14 17:12:11 -070071 srcs = ctx.files.srcs
72 deps = []
73 deps += ctx.files.srcs
Kristina Chodorow4e7ecde2017-01-25 14:10:56 -050074 source_dir = _SourceDir(ctx)
Jisi Liu993fb702015-10-19 17:19:49 -070075 gen_dir = _GenDir(ctx)
Kristina Chodorow4e7ecde2017-01-25 14:10:56 -050076 if source_dir:
77 import_flags = ["-I" + source_dir, "-I" + gen_dir]
Jisi Liu53a56be2015-10-20 15:18:20 -070078 else:
79 import_flags = ["-I."]
80
Jisi Liu39362b32015-10-14 17:12:11 -070081 for dep in ctx.attr.deps:
82 import_flags += dep.proto.import_flags
83 deps += dep.proto.deps
84
85 args = []
86 if ctx.attr.gen_cc:
Kristina Chodorow4e7ecde2017-01-25 14:10:56 -050087 args += ["--cpp_out=" + gen_dir]
Jisi Liu39362b32015-10-14 17:12:11 -070088 if ctx.attr.gen_py:
Kristina Chodorow4e7ecde2017-01-25 14:10:56 -050089 args += ["--python_out=" + gen_dir]
Jisi Liu39362b32015-10-14 17:12:11 -070090
Florian Weikertc2b3e702016-10-12 14:03:07 +020091 inputs = srcs + deps
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +090092 if ctx.executable.plugin:
93 plugin = ctx.executable.plugin
94 lang = ctx.attr.plugin_language
95 if not lang and plugin.basename.startswith('protoc-gen-'):
96 lang = plugin.basename[len('protoc-gen-'):]
97 if not lang:
98 fail("cannot infer the target language of plugin", "plugin_language")
99
Kristina Chodorow4e7ecde2017-01-25 14:10:56 -0500100 outdir = gen_dir
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900101 if ctx.attr.plugin_options:
102 outdir = ",".join(ctx.attr.plugin_options) + ":" + outdir
103 args += ["--plugin=protoc-gen-%s=%s" % (lang, plugin.path)]
104 args += ["--%s_out=%s" % (lang, outdir)]
Florian Weikertc2b3e702016-10-12 14:03:07 +0200105 inputs += [plugin]
Manjunath Kudlurf0966a72016-02-22 14:30:43 -0800106
Jisi Liu39362b32015-10-14 17:12:11 -0700107 if args:
108 ctx.action(
Florian Weikertc2b3e702016-10-12 14:03:07 +0200109 inputs=inputs,
Jisi Liu39362b32015-10-14 17:12:11 -0700110 outputs=ctx.outputs.outs,
Jisi Liu125a91b2015-10-14 17:37:39 -0700111 arguments=args + import_flags + [s.path for s in srcs],
Jisi Liu9c7d9c02015-10-15 10:51:32 -0700112 executable=ctx.executable.protoc,
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900113 mnemonic="ProtoCompile",
Marco A. Harrendorfdd04ffb2017-04-03 17:01:36 +0200114 use_default_shell_env=True,
Jisi Liu39362b32015-10-14 17:12:11 -0700115 )
116
117 return struct(
118 proto=struct(
Jisi Liu125a91b2015-10-14 17:37:39 -0700119 srcs=srcs,
120 import_flags=import_flags,
121 deps=deps,
122 ),
123 )
Jisi Liu39362b32015-10-14 17:12:11 -0700124
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900125proto_gen = rule(
Jisi Liu39362b32015-10-14 17:12:11 -0700126 attrs = {
Jisi Liuee8131a2015-10-14 17:20:05 -0700127 "srcs": attr.label_list(allow_files = True),
128 "deps": attr.label_list(providers = ["proto"]),
Jisi Liu53a56be2015-10-20 15:18:20 -0700129 "includes": attr.string_list(),
Jisi Liuee8131a2015-10-14 17:20:05 -0700130 "protoc": attr.label(
Vladimir Moskvaa86e6d82016-09-09 13:21:35 +0200131 cfg = "host",
Jisi Liuee8131a2015-10-14 17:20:05 -0700132 executable = True,
133 single_file = True,
134 mandatory = True,
135 ),
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900136 "plugin": attr.label(
Vladimir Moskvaa86e6d82016-09-09 13:21:35 +0200137 cfg = "host",
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900138 allow_files = True,
Manjunath Kudlurf0966a72016-02-22 14:30:43 -0800139 executable = True,
Manjunath Kudlurf0966a72016-02-22 14:30:43 -0800140 ),
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900141 "plugin_language": attr.string(),
142 "plugin_options": attr.string_list(),
Jisi Liuee8131a2015-10-14 17:20:05 -0700143 "gen_cc": attr.bool(),
144 "gen_py": attr.bool(),
145 "outs": attr.output_list(),
146 },
147 output_to_genfiles = True,
Jisi Liu9c7d9c02015-10-15 10:51:32 -0700148 implementation = _proto_gen_impl,
Jisi Liu39362b32015-10-14 17:12:11 -0700149)
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900150"""Generates codes from Protocol Buffers definitions.
151
152This rule helps you to implement Skylark macros specific to the target
153language. You should prefer more specific `cc_proto_library `,
154`py_proto_library` and others unless you are adding such wrapper macros.
155
156Args:
157 srcs: Protocol Buffers definition files (.proto) to run the protocol compiler
158 against.
159 deps: a list of dependency labels; must be other proto libraries.
160 includes: a list of include paths to .proto files.
161 protoc: the label of the protocol compiler to generate the sources.
162 plugin: the label of the protocol compiler plugin to be passed to the protocol
163 compiler.
164 plugin_language: the language of the generated sources
165 plugin_options: a list of options to be passed to the plugin
Kristina Chodorow4e7ecde2017-01-25 14:10:56 -0500166 gen_cc: generates C++ sources in addition to the ones from the plugin.
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900167 gen_py: generates Python sources in addition to the ones from the plugin.
168 outs: a list of labels of the expected outputs from the protocol compiler.
169"""
Jisi Liu39362b32015-10-14 17:12:11 -0700170
171def cc_proto_library(
Jisi Liu125a91b2015-10-14 17:37:39 -0700172 name,
173 srcs=[],
Jisi Liu125a91b2015-10-14 17:37:39 -0700174 deps=[],
Jisi Liud8701b52015-10-16 11:44:21 -0700175 cc_libs=[],
Jisi Liu6dac0822015-10-19 14:41:00 -0700176 include=None,
James O'Kane950f5e42018-03-08 22:30:44 -0800177 protoc="@com_google_protobuf//:protoc",
Jisi Liu3101e732015-10-16 12:46:26 -0700178 internal_bootstrap_hack=False,
Manjunath Kudlurf0966a72016-02-22 14:30:43 -0800179 use_grpc_plugin=False,
James O'Kane950f5e42018-03-08 22:30:44 -0800180 default_runtime="@com_google_protobuf//:protobuf",
Jisi Liu125a91b2015-10-14 17:37:39 -0700181 **kargs):
Jisi Liu3101e732015-10-16 12:46:26 -0700182 """Bazel rule to create a C++ protobuf library from proto source files
183
Jisi Liud4bef7d2015-11-02 12:24:32 -0800184 NOTE: the rule is only an internal workaround to generate protos. The
185 interface may change and the rule may be removed when bazel has introduced
186 the native rule.
187
Jisi Liu3101e732015-10-16 12:46:26 -0700188 Args:
189 name: the name of the cc_proto_library.
190 srcs: the .proto files of the cc_proto_library.
191 deps: a list of dependency labels; must be cc_proto_library.
192 cc_libs: a list of other cc_library targets depended by the generated
193 cc_library.
194 include: a string indicating the include path of the .proto files.
195 protoc: the label of the protocol compiler to generate the sources.
196 internal_bootstrap_hack: a flag indicate the cc_proto_library is used only
197 for bootstraping. When it is set to True, no files will be generated.
198 The rule will simply be a provider for .proto files, so that other
199 cc_proto_library can depend on it.
Manjunath Kudlurf0966a72016-02-22 14:30:43 -0800200 use_grpc_plugin: a flag to indicate whether to call the grpc C++ plugin
201 when processing the proto files.
Jisi Liube92ffb2015-10-27 15:11:38 -0700202 default_runtime: the implicitly default runtime which will be depended on by
203 the generated cc_library target.
Jisi Liu3101e732015-10-16 12:46:26 -0700204 **kargs: other keyword arguments that are passed to cc_library.
205
206 """
Jisi Liu39362b32015-10-14 17:12:11 -0700207
Jisi Liu53a56be2015-10-20 15:18:20 -0700208 includes = []
209 if include != None:
210 includes = [include]
211
Jisi Liu39362b32015-10-14 17:12:11 -0700212 if internal_bootstrap_hack:
213 # For pre-checked-in generated files, we add the internal_bootstrap_hack
214 # which will skip the codegen action.
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900215 proto_gen(
Jisi Liu125a91b2015-10-14 17:37:39 -0700216 name=name + "_genproto",
217 srcs=srcs,
Jisi Liud8701b52015-10-16 11:44:21 -0700218 deps=[s + "_genproto" for s in deps],
Jisi Liu53a56be2015-10-20 15:18:20 -0700219 includes=includes,
Jisi Liu125a91b2015-10-14 17:37:39 -0700220 protoc=protoc,
Martin Maly8e0c9a32015-12-04 17:44:58 -0800221 visibility=["//visibility:public"],
Jisi Liu39362b32015-10-14 17:12:11 -0700222 )
223 # An empty cc_library to make rule dependency consistent.
224 native.cc_library(
Jisi Liu125a91b2015-10-14 17:37:39 -0700225 name=name,
Jisi Liud8701b52015-10-16 11:44:21 -0700226 **kargs)
Jisi Liu39362b32015-10-14 17:12:11 -0700227 return
228
Manjunath Kudlurf0966a72016-02-22 14:30:43 -0800229 grpc_cpp_plugin = None
230 if use_grpc_plugin:
231 grpc_cpp_plugin = "//external:grpc_cpp_plugin"
232
Andreas Bergmeierbbeb9832016-08-15 16:57:30 +0200233 gen_srcs = _CcSrcs(srcs, use_grpc_plugin)
234 gen_hdrs = _CcHdrs(srcs, use_grpc_plugin)
235 outs = gen_srcs + gen_hdrs
Manjunath Kudlurf5c73632016-02-25 08:50:50 -0800236
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900237 proto_gen(
Jisi Liu125a91b2015-10-14 17:37:39 -0700238 name=name + "_genproto",
239 srcs=srcs,
Jisi Liud8701b52015-10-16 11:44:21 -0700240 deps=[s + "_genproto" for s in deps],
Jisi Liu53a56be2015-10-20 15:18:20 -0700241 includes=includes,
Jisi Liu125a91b2015-10-14 17:37:39 -0700242 protoc=protoc,
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900243 plugin=grpc_cpp_plugin,
244 plugin_language="grpc",
Jisi Liu125a91b2015-10-14 17:37:39 -0700245 gen_cc=1,
246 outs=outs,
Martin Maly8e0c9a32015-12-04 17:44:58 -0800247 visibility=["//visibility:public"],
Jisi Liu39362b32015-10-14 17:12:11 -0700248 )
249
Jisi Liube92ffb2015-10-27 15:11:38 -0700250 if default_runtime and not default_runtime in cc_libs:
Vladimir Moskva4fc93042017-08-07 13:33:03 +0200251 cc_libs = cc_libs + [default_runtime]
Manjunath Kudlurf5c73632016-02-25 08:50:50 -0800252 if use_grpc_plugin:
Vladimir Moskva4fc93042017-08-07 13:33:03 +0200253 cc_libs = cc_libs + ["//external:grpc_lib"]
Jisi Liu6dac0822015-10-19 14:41:00 -0700254
Jisi Liu39362b32015-10-14 17:12:11 -0700255 native.cc_library(
Jisi Liu125a91b2015-10-14 17:37:39 -0700256 name=name,
Andreas Bergmeierbbeb9832016-08-15 16:57:30 +0200257 srcs=gen_srcs,
258 hdrs=gen_hdrs,
Jisi Liud8701b52015-10-16 11:44:21 -0700259 deps=cc_libs + deps,
Jisi Liu6dac0822015-10-19 14:41:00 -0700260 includes=includes,
Jisi Liud8701b52015-10-16 11:44:21 -0700261 **kargs)
Jisi Liu993fb702015-10-19 17:19:49 -0700262
Steven Parkesea188662016-02-25 07:53:19 -0800263def internal_gen_well_known_protos_java(srcs):
264 """Bazel rule to generate the gen_well_known_protos_java genrule
265
266 Args:
267 srcs: the well known protos
268 """
Ittai Zeidman4fcb36c2018-05-21 23:48:10 +0300269 root = Label("%s//protobuf_java" % (native.repository_name())).workspace_root
270 pkg = native.package_name() + "/" if native.package_name() else ""
Steven Parkesea188662016-02-25 07:53:19 -0800271 if root == "":
cgrushko6fffd4a2017-02-08 12:19:40 -0500272 include = " -I%ssrc " % pkg
Steven Parkesea188662016-02-25 07:53:19 -0800273 else:
cgrushko6fffd4a2017-02-08 12:19:40 -0500274 include = " -I%s/%ssrc " % (root, pkg)
Steven Parkesea188662016-02-25 07:53:19 -0800275 native.genrule(
276 name = "gen_well_known_protos_java",
277 srcs = srcs,
278 outs = [
279 "wellknown.srcjar",
280 ],
281 cmd = "$(location :protoc) --java_out=$(@D)/wellknown.jar" +
282 " %s $(SRCS) " % include +
283 " && mv $(@D)/wellknown.jar $(@D)/wellknown.srcjar",
284 tools = [":protoc"],
285 )
286
David Z. Chen02cd45c2016-05-20 16:49:04 -0700287def internal_copied_filegroup(name, srcs, strip_prefix, dest, **kwargs):
288 """Macro to copy files to a different directory and then create a filegroup.
289
290 This is used by the //:protobuf_python py_proto_library target to work around
291 an issue caused by Python source files that are part of the same Python
292 package being in separate directories.
293
294 Args:
295 srcs: The source files to copy and add to the filegroup.
296 strip_prefix: Path to the root of the files to copy.
297 dest: The directory to copy the source files into.
298 **kwargs: extra arguments that will be passesd to the filegroup.
299 """
300 outs = [_RelativeOutputPath(s, strip_prefix, dest) for s in srcs]
301
302 native.genrule(
303 name = name + "_genrule",
304 srcs = srcs,
305 outs = outs,
306 cmd = " && ".join(
307 ["cp $(location %s) $(location %s)" %
308 (s, _RelativeOutputPath(s, strip_prefix, dest)) for s in srcs]),
309 )
310
311 native.filegroup(
312 name = name,
313 srcs = outs,
314 **kwargs)
315
Jisi Liu993fb702015-10-19 17:19:49 -0700316def py_proto_library(
317 name,
318 srcs=[],
319 deps=[],
320 py_libs=[],
321 py_extra_srcs=[],
322 include=None,
James O'Kane950f5e42018-03-08 22:30:44 -0800323 default_runtime="@com_google_protobuf//:protobuf_python",
324 protoc="@com_google_protobuf//:protoc",
Wiktor Tomczak0fa31b22016-11-22 20:18:46 +0100325 use_grpc_plugin=False,
Jisi Liu993fb702015-10-19 17:19:49 -0700326 **kargs):
Jisi Liu7b948cc2015-10-19 17:56:27 -0700327 """Bazel rule to create a Python protobuf library from proto source files
328
Jisi Liud4bef7d2015-11-02 12:24:32 -0800329 NOTE: the rule is only an internal workaround to generate protos. The
330 interface may change and the rule may be removed when bazel has introduced
331 the native rule.
332
Jisi Liu7b948cc2015-10-19 17:56:27 -0700333 Args:
334 name: the name of the py_proto_library.
335 srcs: the .proto files of the py_proto_library.
336 deps: a list of dependency labels; must be py_proto_library.
337 py_libs: a list of other py_library targets depended by the generated
338 py_library.
339 py_extra_srcs: extra source files that will be added to the output
340 py_library. This attribute is used for internal bootstrapping.
341 include: a string indicating the include path of the .proto files.
Jisi Liube92ffb2015-10-27 15:11:38 -0700342 default_runtime: the implicitly default runtime which will be depended on by
343 the generated py_library target.
Jisi Liu7b948cc2015-10-19 17:56:27 -0700344 protoc: the label of the protocol compiler to generate the sources.
Wiktor Tomczak0fa31b22016-11-22 20:18:46 +0100345 use_grpc_plugin: a flag to indicate whether to call the Python C++ plugin
346 when processing the proto files.
Jisi Liu7b948cc2015-10-19 17:56:27 -0700347 **kargs: other keyword arguments that are passed to cc_library.
348
349 """
Mateusz Matejczyk294b5752018-03-11 17:48:10 -0400350 outs = _PyOuts(srcs, use_grpc_plugin)
Jisi Liu53a56be2015-10-20 15:18:20 -0700351
352 includes = []
353 if include != None:
354 includes = [include]
355
Wiktor Tomczak0fa31b22016-11-22 20:18:46 +0100356 grpc_python_plugin = None
357 if use_grpc_plugin:
358 grpc_python_plugin = "//external:grpc_python_plugin"
359 # Note: Generated grpc code depends on Python grpc module. This dependency
360 # is not explicitly listed in py_libs. Instead, host system is assumed to
361 # have grpc installed.
362
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900363 proto_gen(
Jisi Liu993fb702015-10-19 17:19:49 -0700364 name=name + "_genproto",
365 srcs=srcs,
366 deps=[s + "_genproto" for s in deps],
Jisi Liu53a56be2015-10-20 15:18:20 -0700367 includes=includes,
Jisi Liu993fb702015-10-19 17:19:49 -0700368 protoc=protoc,
369 gen_py=1,
370 outs=outs,
Martin Maly8e0c9a32015-12-04 17:44:58 -0800371 visibility=["//visibility:public"],
Wiktor Tomczak0fa31b22016-11-22 20:18:46 +0100372 plugin=grpc_python_plugin,
373 plugin_language="grpc"
Jisi Liu993fb702015-10-19 17:19:49 -0700374 )
375
Jisi Liube92ffb2015-10-27 15:11:38 -0700376 if default_runtime and not default_runtime in py_libs + deps:
Vladimir Moskva4fc93042017-08-07 13:33:03 +0200377 py_libs = py_libs + [default_runtime]
Jisi Liube92ffb2015-10-27 15:11:38 -0700378
Jisi Liu993fb702015-10-19 17:19:49 -0700379 native.py_library(
380 name=name,
Jisi Liua33fa8e2015-10-20 15:30:44 -0700381 srcs=outs+py_extra_srcs,
382 deps=py_libs+deps,
David Z. Chen985c9682016-02-11 18:11:10 -0800383 imports=includes,
Jisi Liu993fb702015-10-19 17:19:49 -0700384 **kargs)
385
386def internal_protobuf_py_tests(
387 name,
388 modules=[],
389 **kargs):
Jisi Liu7b948cc2015-10-19 17:56:27 -0700390 """Bazel rules to create batch tests for protobuf internal.
391
392 Args:
393 name: the name of the rule.
394 modules: a list of modules for tests. The macro will create a py_test for
395 each of the parameter with the source "google/protobuf/%s.py"
396 kargs: extra parameters that will be passed into the py_test.
397
398 """
Jisi Liu993fb702015-10-19 17:19:49 -0700399 for m in modules:
David Z. Chen985c9682016-02-11 18:11:10 -0800400 s = "python/google/protobuf/internal/%s.py" % m
Jisi Liu993fb702015-10-19 17:19:49 -0700401 native.py_test(
402 name="py_%s" % m,
Jisi Liu7b948cc2015-10-19 17:56:27 -0700403 srcs=[s],
404 main=s,
Jisi Liu993fb702015-10-19 17:19:49 -0700405 **kargs)
Fahrzin Hemmati35119e32017-11-28 14:24:53 -0800406
407
408def check_protobuf_required_bazel_version():
409 """For WORKSPACE files, to check the installed version of bazel.
410
411 This ensures bazel supports our approach to proto_library() depending on a
412 copied filegroup. (Fixed in bazel 0.5.4)
413 """
414 expected = apple_common.dotted_version("0.5.4")
415 current = apple_common.dotted_version(native.bazel_version)
416 if current.compare_to(expected) < 0:
417 fail("Bazel must be newer than 0.5.4")