blob: d146ca9c2ca84f52d14458d484d383ba32abbad7 [file] [log] [blame]
Jan Tattermusch4d5c3102017-06-07 10:23:56 +02001# Copyright 2016 gRPC authors.
Craig Tiller423ecff2016-10-20 09:45:09 -07002#
Jan Tattermusch4d5c3102017-06-07 10:23:56 +02003# 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
Craig Tiller423ecff2016-10-20 09:45:09 -07006#
Jan Tattermusch4d5c3102017-06-07 10:23:56 +02007# http://www.apache.org/licenses/LICENSE-2.0
Craig Tiller423ecff2016-10-20 09:45:09 -07008#
Jan Tattermusch4d5c3102017-06-07 10:23:56 +02009# 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.
Craig Tiller423ecff2016-10-20 09:45:09 -070014
Nicolas "Pixel" Noblee8dbd8a2016-10-20 18:54:36 +020015#
16# This is for the gRPC build system. This isn't intended to be used outsite of
17# the BUILD file for gRPC. It contains the mapping for the template system we
18# use to generate other platform's build system files.
19#
Craig Tillerf66de6e2017-05-15 08:29:10 -070020# Please consider that there should be a high bar for additions and changes to
21# this file.
22# Each rule listed must be re-written for Google's internal build system, and
23# each change must be ported from one to the other.
24#
Nicolas "Pixel" Noblee8dbd8a2016-10-20 18:54:36 +020025
Craig Tiller360712f2017-10-18 10:05:21 -070026# The set of pollers to test against if a test exercises polling
27POLLERS = ['epollex', 'epollsig', 'epoll1', 'poll', 'poll-cv']
28
Alexander Polcyn54a70402017-11-29 17:06:16 -080029def _get_external_deps(external_deps):
30 ret = []
31 for dep in external_deps:
32 if dep == "nanopb":
33 ret.append("//third_party/nanopb")
34 else:
35 ret.append("//external:" + dep)
36 return ret
37
38def _maybe_update_cc_library_hdrs(hdrs):
39 ret = []
40 hdrs_to_update = {
41 "third_party/objective_c/Cronet/bidirectional_stream_c.h": "//third_party:objective_c/Cronet/bidirectional_stream_c.h",
42 }
43 for h in hdrs:
44 if h in hdrs_to_update.keys():
45 ret.append(hdrs_to_update[h])
46 else:
47 ret.append(h)
48 return ret
49
Nicolas "Pixel" Noble15cd5ce2017-04-18 06:32:11 +020050def grpc_cc_library(name, srcs = [], public_hdrs = [], hdrs = [],
51 external_deps = [], deps = [], standalone = False,
Ian Coolidge6b08cf42017-06-16 12:56:23 -070052 language = "C++", testonly = False, visibility = None,
Adele Zhoue5df91f2017-11-29 14:37:18 -080053 alwayslink = 0):
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020054 copts = []
Craig Tiller674c66c2016-10-20 13:08:52 -070055 if language.upper() == "C":
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020056 copts = ["-std=c99"]
57 native.cc_library(
58 name = name,
59 srcs = srcs,
Adele Zhoue5df91f2017-11-29 14:37:18 -080060 defines = select({"//:grpc_no_ares": ["GRPC_ARES=0"],
61 "//conditions:default": [],}) +
Adele Zhou5b7cdef2017-11-29 16:25:17 -080062 select({"//:remote_execution": ["GRPC_PORT_ISOLATED_RUNTIME=1"],
Adele Zhoue5df91f2017-11-29 14:37:18 -080063 "//conditions:default": [],}),
Alexander Polcyn54a70402017-11-29 17:06:16 -080064 hdrs = _maybe_update_cc_library_hdrs(hdrs + public_hdrs),
65 deps = deps + _get_external_deps(external_deps),
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020066 copts = copts,
Nicolas "Pixel" Noble15cd5ce2017-04-18 06:32:11 +020067 visibility = visibility,
68 testonly = testonly,
Nicolas "Pixel" Noble60ca22f2016-10-20 10:23:53 +020069 linkopts = ["-pthread"],
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020070 includes = [
71 "include"
Ian Coolidge6b08cf42017-06-16 12:56:23 -070072 ],
73 alwayslink = alwayslink,
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020074 )
Nicolas "Pixel" Noble4dc64312016-10-20 23:07:37 +020075
Vijay Pai4fdb08a2017-11-14 16:48:45 -080076def grpc_proto_plugin(name, srcs = [], deps = []):
Nicolas "Pixel" Noble4dc64312016-10-20 23:07:37 +020077 native.cc_binary(
78 name = name,
Vijay Pai4fdb08a2017-11-14 16:48:45 -080079 srcs = srcs,
Nicolas "Pixel" Noble4dc64312016-10-20 23:07:37 +020080 deps = deps,
81 )
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020082
83load("//:bazel/cc_grpc_library.bzl", "cc_grpc_library")
84
Craig Tillera7533712017-05-16 13:09:33 -070085def grpc_proto_library(name, srcs = [], deps = [], well_known_protos = False,
Mahak Mukhi443a75d2017-04-14 15:33:55 -070086 has_services = True, use_external = False, generate_mock = False):
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020087 cc_grpc_library(
88 name = name,
89 srcs = srcs,
90 deps = deps,
Makarand Dharmapurikare3e3b2a2017-03-07 16:12:56 -080091 well_known_protos = well_known_protos,
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020092 proto_only = not has_services,
Makarand Dharmapurikar9098fcc2017-03-02 17:13:10 -080093 use_external = use_external,
Mahak Mukhi443a75d2017-04-14 15:33:55 -070094 generate_mock = generate_mock,
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020095 )
96
Craig Tiller360712f2017-10-18 10:05:21 -070097def grpc_cc_test(name, srcs = [], deps = [], external_deps = [], args = [], data = [], uses_polling = True, language = "C++"):
Craig Tillerf66de6e2017-05-15 08:29:10 -070098 copts = []
99 if language.upper() == "C":
100 copts = ["-std=c99"]
Craig Tiller360712f2017-10-18 10:05:21 -0700101 args = {
102 'name': name,
103 'srcs': srcs,
104 'args': args,
105 'data': data,
Alexander Polcyn54a70402017-11-29 17:06:16 -0800106 'deps': deps + _get_external_deps(external_deps),
Craig Tiller360712f2017-10-18 10:05:21 -0700107 'copts': copts,
108 'linkopts': ["-pthread"],
109 }
110 if uses_polling:
Craig Tillere55fb8a2017-12-07 11:40:18 -0800111 native.cc_test(testonly=True, tags=['manual'], **args)
Craig Tiller360712f2017-10-18 10:05:21 -0700112 for poller in POLLERS:
113 native.sh_test(
114 name = name + '@poller=' + poller,
115 data = [name],
116 srcs = [
117 '//test/core/util:run_with_poller_sh',
118 ],
119 args = [
120 poller,
121 '$(location %s)' % name
Alexander Polcynb94346f2017-12-11 16:03:40 -0800122 ] + args['args'],
Craig Tiller360712f2017-10-18 10:05:21 -0700123 )
124 else:
125 native.cc_test(**args)
Nicolas "Pixel" Noble7c26eed2017-04-13 01:40:54 +0200126
Vijay Pai42807252017-07-28 15:08:24 -0700127def grpc_cc_binary(name, srcs = [], deps = [], external_deps = [], args = [], data = [], language = "C++", testonly = False, linkshared = False, linkopts = []):
Nicolas "Pixel" Noble15cd5ce2017-04-18 06:32:11 +0200128 copts = []
129 if language.upper() == "C":
130 copts = ["-std=c99"]
Nicolas "Pixel" Noble7c26eed2017-04-13 01:40:54 +0200131 native.cc_binary(
132 name = name,
133 srcs = srcs,
134 args = args,
135 data = data,
Nicolas "Pixel" Noble15cd5ce2017-04-18 06:32:11 +0200136 testonly = testonly,
Nicolas "Pixel" Nobled69f7762017-05-12 17:10:13 +0200137 linkshared = linkshared,
Alexander Polcyn54a70402017-11-29 17:06:16 -0800138 deps = deps + _get_external_deps(external_deps),
Nicolas "Pixel" Noble15cd5ce2017-04-18 06:32:11 +0200139 copts = copts,
Vijay Pai42807252017-07-28 15:08:24 -0700140 linkopts = ["-pthread"] + linkopts,
Nicolas "Pixel" Noble7c26eed2017-04-13 01:40:54 +0200141 )
Nicolas "Pixel" Noble2b0f0012017-04-24 19:59:19 +0200142
143def grpc_generate_one_off_targets():
Nicolas "Pixel" Noble3dedf652017-05-24 02:29:02 +0200144 pass
Nicolas "Pixel" Noble3bd81772017-04-25 22:23:40 +0200145
146def grpc_sh_test(name, srcs, args = [], data = []):
Nicolas "Pixel" Noble3dedf652017-05-24 02:29:02 +0200147 native.sh_test(
148 name = name,
149 srcs = srcs,
150 args = args,
151 data = data)
Nicolas "Pixel" Noble2bc5e3a2017-08-15 22:32:52 +0200152
Alexander Polcyn27bf05d2017-08-07 18:09:11 -0700153def grpc_sh_binary(name, srcs, data = []):
154 native.sh_test(
155 name = name,
156 srcs = srcs,
157 data = data)
158
159def grpc_py_binary(name, srcs, data = [], deps = []):
160 if name == "test_dns_server":
161 # TODO: allow running test_dns_server in oss bazel test suite
162 deps = []
163 native.py_binary(
164 name = name,
165 srcs = srcs,
166 data = data,
167 deps = deps)
168
yang-g109040f2017-08-30 21:33:31 -0700169def grpc_package(name, visibility = "private", features = []):
Nicolas "Pixel" Noble2bc5e3a2017-08-15 22:32:52 +0200170 if visibility == "tests":
171 visibility = ["//test:__subpackages__"]
172 elif visibility == "public":
173 visibility = ["//visibility:public"]
174 elif visibility == "private":
175 visibility = []
176 else:
177 fail("Unknown visibility " + visibility)
178
179 if len(visibility) != 0:
180 native.package(
yang-g109040f2017-08-30 21:33:31 -0700181 default_visibility = visibility,
182 features = features
Nicolas "Pixel" Noble2bc5e3a2017-08-15 22:32:52 +0200183 )