blob: 2ef854450235efff816e6519ea7a8e1d76678bae [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
Nicolas "Pixel" Noble15cd5ce2017-04-18 06:32:11 +020029def grpc_cc_library(name, srcs = [], public_hdrs = [], hdrs = [],
30 external_deps = [], deps = [], standalone = False,
Ian Coolidge6b08cf42017-06-16 12:56:23 -070031 language = "C++", testonly = False, visibility = None,
Adele Zhoue5df91f2017-11-29 14:37:18 -080032 alwayslink = 0):
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020033 copts = []
Craig Tiller674c66c2016-10-20 13:08:52 -070034 if language.upper() == "C":
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020035 copts = ["-std=c99"]
36 native.cc_library(
37 name = name,
38 srcs = srcs,
Adele Zhoue5df91f2017-11-29 14:37:18 -080039 defines = select({"//:grpc_no_ares": ["GRPC_ARES=0"],
40 "//conditions:default": [],}) +
Adele Zhou5b7cdef2017-11-29 16:25:17 -080041 select({"//:remote_execution": ["GRPC_PORT_ISOLATED_RUNTIME=1"],
Adele Zhoue5df91f2017-11-29 14:37:18 -080042 "//conditions:default": [],}),
Nicolas "Pixel" Noblee8dbd8a2016-10-20 18:54:36 +020043 hdrs = hdrs + public_hdrs,
44 deps = deps + ["//external:" + dep for dep in external_deps],
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020045 copts = copts,
Nicolas "Pixel" Noble15cd5ce2017-04-18 06:32:11 +020046 visibility = visibility,
47 testonly = testonly,
Nicolas "Pixel" Noble60ca22f2016-10-20 10:23:53 +020048 linkopts = ["-pthread"],
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020049 includes = [
50 "include"
Ian Coolidge6b08cf42017-06-16 12:56:23 -070051 ],
52 alwayslink = alwayslink,
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020053 )
Nicolas "Pixel" Noble4dc64312016-10-20 23:07:37 +020054
Vijay Pai4fdb08a2017-11-14 16:48:45 -080055def grpc_proto_plugin(name, srcs = [], deps = []):
Nicolas "Pixel" Noble4dc64312016-10-20 23:07:37 +020056 native.cc_binary(
57 name = name,
Vijay Pai4fdb08a2017-11-14 16:48:45 -080058 srcs = srcs,
Nicolas "Pixel" Noble4dc64312016-10-20 23:07:37 +020059 deps = deps,
60 )
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020061
62load("//:bazel/cc_grpc_library.bzl", "cc_grpc_library")
63
Craig Tillera7533712017-05-16 13:09:33 -070064def grpc_proto_library(name, srcs = [], deps = [], well_known_protos = False,
Mahak Mukhi443a75d2017-04-14 15:33:55 -070065 has_services = True, use_external = False, generate_mock = False):
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020066 cc_grpc_library(
67 name = name,
68 srcs = srcs,
69 deps = deps,
Makarand Dharmapurikare3e3b2a2017-03-07 16:12:56 -080070 well_known_protos = well_known_protos,
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020071 proto_only = not has_services,
Makarand Dharmapurikar9098fcc2017-03-02 17:13:10 -080072 use_external = use_external,
Mahak Mukhi443a75d2017-04-14 15:33:55 -070073 generate_mock = generate_mock,
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020074 )
75
Craig Tiller360712f2017-10-18 10:05:21 -070076def grpc_cc_test(name, srcs = [], deps = [], external_deps = [], args = [], data = [], uses_polling = True, language = "C++"):
Craig Tillerf66de6e2017-05-15 08:29:10 -070077 copts = []
78 if language.upper() == "C":
79 copts = ["-std=c99"]
Craig Tiller360712f2017-10-18 10:05:21 -070080 args = {
81 'name': name,
82 'srcs': srcs,
83 'args': args,
84 'data': data,
85 'deps': deps + ["//external:" + dep for dep in external_deps],
86 'copts': copts,
87 'linkopts': ["-pthread"],
88 }
89 if uses_polling:
90 native.cc_binary(testonly=True, **args)
91 for poller in POLLERS:
92 native.sh_test(
93 name = name + '@poller=' + poller,
94 data = [name],
95 srcs = [
96 '//test/core/util:run_with_poller_sh',
97 ],
98 args = [
99 poller,
100 '$(location %s)' % name
101 ],
102 )
103 else:
104 native.cc_test(**args)
Nicolas "Pixel" Noble7c26eed2017-04-13 01:40:54 +0200105
Vijay Pai42807252017-07-28 15:08:24 -0700106def 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 +0200107 copts = []
108 if language.upper() == "C":
109 copts = ["-std=c99"]
Nicolas "Pixel" Noble7c26eed2017-04-13 01:40:54 +0200110 native.cc_binary(
111 name = name,
112 srcs = srcs,
113 args = args,
114 data = data,
Nicolas "Pixel" Noble15cd5ce2017-04-18 06:32:11 +0200115 testonly = testonly,
Nicolas "Pixel" Nobled69f7762017-05-12 17:10:13 +0200116 linkshared = linkshared,
Nicolas "Pixel" Noble7c26eed2017-04-13 01:40:54 +0200117 deps = deps + ["//external:" + dep for dep in external_deps],
Nicolas "Pixel" Noble15cd5ce2017-04-18 06:32:11 +0200118 copts = copts,
Vijay Pai42807252017-07-28 15:08:24 -0700119 linkopts = ["-pthread"] + linkopts,
Nicolas "Pixel" Noble7c26eed2017-04-13 01:40:54 +0200120 )
Nicolas "Pixel" Noble2b0f0012017-04-24 19:59:19 +0200121
122def grpc_generate_one_off_targets():
Nicolas "Pixel" Noble3dedf652017-05-24 02:29:02 +0200123 pass
Nicolas "Pixel" Noble3bd81772017-04-25 22:23:40 +0200124
125def grpc_sh_test(name, srcs, args = [], data = []):
Nicolas "Pixel" Noble3dedf652017-05-24 02:29:02 +0200126 native.sh_test(
127 name = name,
128 srcs = srcs,
129 args = args,
130 data = data)
Nicolas "Pixel" Noble2bc5e3a2017-08-15 22:32:52 +0200131
Alexander Polcyn27bf05d2017-08-07 18:09:11 -0700132def grpc_sh_binary(name, srcs, data = []):
133 native.sh_test(
134 name = name,
135 srcs = srcs,
136 data = data)
137
138def grpc_py_binary(name, srcs, data = [], deps = []):
139 if name == "test_dns_server":
140 # TODO: allow running test_dns_server in oss bazel test suite
141 deps = []
142 native.py_binary(
143 name = name,
144 srcs = srcs,
145 data = data,
146 deps = deps)
147
yang-g109040f2017-08-30 21:33:31 -0700148def grpc_package(name, visibility = "private", features = []):
Nicolas "Pixel" Noble2bc5e3a2017-08-15 22:32:52 +0200149 if visibility == "tests":
150 visibility = ["//test:__subpackages__"]
151 elif visibility == "public":
152 visibility = ["//visibility:public"]
153 elif visibility == "private":
154 visibility = []
155 else:
156 fail("Unknown visibility " + visibility)
157
158 if len(visibility) != 0:
159 native.package(
yang-g109040f2017-08-30 21:33:31 -0700160 default_visibility = visibility,
161 features = features
Nicolas "Pixel" Noble2bc5e3a2017-08-15 22:32:52 +0200162 )