blob: d61eced2d962e880ff832bbc9298ed445786c3bb [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"],
Vijay Pai9809ce32017-12-19 09:09:52 -080063 "//conditions:default": [],} +
64 select({"//:grpc_allow_exceptions": ["GRPC_ALLOW_EXCEPTIONS=1"],
65 "//:grpc_disallow_exceptions":
66 ["GRPC_ALLOW_EXCEPTIONS=0"],
Adele Zhoue5df91f2017-11-29 14:37:18 -080067 "//conditions:default": [],}),
Alexander Polcyn54a70402017-11-29 17:06:16 -080068 hdrs = _maybe_update_cc_library_hdrs(hdrs + public_hdrs),
69 deps = deps + _get_external_deps(external_deps),
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020070 copts = copts,
Nicolas "Pixel" Noble15cd5ce2017-04-18 06:32:11 +020071 visibility = visibility,
72 testonly = testonly,
Nicolas "Pixel" Noble60ca22f2016-10-20 10:23:53 +020073 linkopts = ["-pthread"],
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020074 includes = [
75 "include"
Ian Coolidge6b08cf42017-06-16 12:56:23 -070076 ],
77 alwayslink = alwayslink,
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020078 )
Nicolas "Pixel" Noble4dc64312016-10-20 23:07:37 +020079
Vijay Pai4fdb08a2017-11-14 16:48:45 -080080def grpc_proto_plugin(name, srcs = [], deps = []):
Nicolas "Pixel" Noble4dc64312016-10-20 23:07:37 +020081 native.cc_binary(
82 name = name,
Vijay Pai4fdb08a2017-11-14 16:48:45 -080083 srcs = srcs,
Nicolas "Pixel" Noble4dc64312016-10-20 23:07:37 +020084 deps = deps,
85 )
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020086
87load("//:bazel/cc_grpc_library.bzl", "cc_grpc_library")
88
Craig Tillera7533712017-05-16 13:09:33 -070089def grpc_proto_library(name, srcs = [], deps = [], well_known_protos = False,
Mahak Mukhi443a75d2017-04-14 15:33:55 -070090 has_services = True, use_external = False, generate_mock = False):
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020091 cc_grpc_library(
92 name = name,
93 srcs = srcs,
94 deps = deps,
Makarand Dharmapurikare3e3b2a2017-03-07 16:12:56 -080095 well_known_protos = well_known_protos,
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020096 proto_only = not has_services,
Makarand Dharmapurikar9098fcc2017-03-02 17:13:10 -080097 use_external = use_external,
Mahak Mukhi443a75d2017-04-14 15:33:55 -070098 generate_mock = generate_mock,
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020099 )
100
Craig Tiller360712f2017-10-18 10:05:21 -0700101def grpc_cc_test(name, srcs = [], deps = [], external_deps = [], args = [], data = [], uses_polling = True, language = "C++"):
Craig Tillerf66de6e2017-05-15 08:29:10 -0700102 copts = []
103 if language.upper() == "C":
104 copts = ["-std=c99"]
Craig Tiller360712f2017-10-18 10:05:21 -0700105 args = {
106 'name': name,
107 'srcs': srcs,
108 'args': args,
109 'data': data,
Alexander Polcyn54a70402017-11-29 17:06:16 -0800110 'deps': deps + _get_external_deps(external_deps),
Craig Tiller360712f2017-10-18 10:05:21 -0700111 'copts': copts,
112 'linkopts': ["-pthread"],
113 }
114 if uses_polling:
Craig Tillere55fb8a2017-12-07 11:40:18 -0800115 native.cc_test(testonly=True, tags=['manual'], **args)
Craig Tiller360712f2017-10-18 10:05:21 -0700116 for poller in POLLERS:
117 native.sh_test(
118 name = name + '@poller=' + poller,
119 data = [name],
120 srcs = [
121 '//test/core/util:run_with_poller_sh',
122 ],
123 args = [
124 poller,
125 '$(location %s)' % name
Alexander Polcynb94346f2017-12-11 16:03:40 -0800126 ] + args['args'],
Craig Tiller360712f2017-10-18 10:05:21 -0700127 )
128 else:
129 native.cc_test(**args)
Nicolas "Pixel" Noble7c26eed2017-04-13 01:40:54 +0200130
Vijay Pai42807252017-07-28 15:08:24 -0700131def 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 +0200132 copts = []
133 if language.upper() == "C":
134 copts = ["-std=c99"]
Nicolas "Pixel" Noble7c26eed2017-04-13 01:40:54 +0200135 native.cc_binary(
136 name = name,
137 srcs = srcs,
138 args = args,
139 data = data,
Nicolas "Pixel" Noble15cd5ce2017-04-18 06:32:11 +0200140 testonly = testonly,
Nicolas "Pixel" Nobled69f7762017-05-12 17:10:13 +0200141 linkshared = linkshared,
Alexander Polcyn54a70402017-11-29 17:06:16 -0800142 deps = deps + _get_external_deps(external_deps),
Nicolas "Pixel" Noble15cd5ce2017-04-18 06:32:11 +0200143 copts = copts,
Vijay Pai42807252017-07-28 15:08:24 -0700144 linkopts = ["-pthread"] + linkopts,
Nicolas "Pixel" Noble7c26eed2017-04-13 01:40:54 +0200145 )
Nicolas "Pixel" Noble2b0f0012017-04-24 19:59:19 +0200146
147def grpc_generate_one_off_targets():
Nicolas "Pixel" Noble3dedf652017-05-24 02:29:02 +0200148 pass
Nicolas "Pixel" Noble3bd81772017-04-25 22:23:40 +0200149
150def grpc_sh_test(name, srcs, args = [], data = []):
Nicolas "Pixel" Noble3dedf652017-05-24 02:29:02 +0200151 native.sh_test(
152 name = name,
153 srcs = srcs,
154 args = args,
155 data = data)
Nicolas "Pixel" Noble2bc5e3a2017-08-15 22:32:52 +0200156
Alexander Polcyn27bf05d2017-08-07 18:09:11 -0700157def grpc_sh_binary(name, srcs, data = []):
158 native.sh_test(
159 name = name,
160 srcs = srcs,
161 data = data)
162
163def grpc_py_binary(name, srcs, data = [], deps = []):
164 if name == "test_dns_server":
165 # TODO: allow running test_dns_server in oss bazel test suite
166 deps = []
167 native.py_binary(
168 name = name,
169 srcs = srcs,
170 data = data,
171 deps = deps)
172
yang-g109040f2017-08-30 21:33:31 -0700173def grpc_package(name, visibility = "private", features = []):
Nicolas "Pixel" Noble2bc5e3a2017-08-15 22:32:52 +0200174 if visibility == "tests":
175 visibility = ["//test:__subpackages__"]
176 elif visibility == "public":
177 visibility = ["//visibility:public"]
178 elif visibility == "private":
179 visibility = []
180 else:
181 fail("Unknown visibility " + visibility)
182
183 if len(visibility) != 0:
184 native.package(
yang-g109040f2017-08-30 21:33:31 -0700185 default_visibility = visibility,
186 features = features
Nicolas "Pixel" Noble2bc5e3a2017-08-15 22:32:52 +0200187 )