blob: a9afbf46e412965be8cdd0266e11d1ab9fe95bbd [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001# GRPC global makefile
2# This currently builds C and C++ code.
3
4
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005# General settings.
6# You may want to change these depending on your system.
7
8prefix ?= /usr/local
9
10PROTOC = protoc
11CC = gcc
12CXX = g++
13LD = gcc
14LDXX = g++
15AR = ar
16STRIP = strip --strip-unneeded
17INSTALL = install -D
18RM = rm -f
19
nnoble72309c62014-12-12 11:42:26 -080020HOST_CC = $(CC)
21HOST_CXX = $(CXX)
22HOST_LD = $(LD)
23HOST_LDXX = $(LDXX)
24
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080025ifeq ($(DEBUG),)
26CPPFLAGS += -O2
27DEFINES += NDEBUG
ctiller09cb6d52014-12-19 17:38:22 -080028TGTDIR = opt
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080029else
30CPPFLAGS += -O0
31DEFINES += _DEBUG DEBUG
ctiller09cb6d52014-12-19 17:38:22 -080032TGTDIR = dbg
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080033endif
34
35CFLAGS += -std=c89 -pedantic
36CXXFLAGS += -std=c++11
37CPPFLAGS += -g -fPIC -Wall -Werror -Wno-long-long
38LDFLAGS += -g -pthread -fPIC
39
40INCLUDES = . include gens
41LIBS = rt m z event event_pthreads pthread
42LIBSXX = protobuf
nnoblec78b3402014-12-11 16:06:57 -080043LIBS_PROTOC = protoc protobuf
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080044
45ifneq ($(wildcard /usr/src/gtest/src/gtest-all.cc),)
46GTEST_LIB = /usr/src/gtest/src/gtest-all.cc -I/usr/src/gtest
47else
48GTEST_LIB = -lgtest
49endif
chenwa8fd44a2014-12-10 15:13:55 -080050GTEST_LIB += -lgflags
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080051ifeq ($(V),1)
52E = @:
53Q =
54else
55E = @echo
56Q = @
57endif
58
59VERSION = 0.8.0.0
60
61CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
62CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
63
64LDFLAGS += $(ARCH_FLAGS)
65LDLIBS += $(addprefix -l, $(LIBS))
66LDLIBSXX += $(addprefix -l, $(LIBSXX))
nnoble72309c62014-12-12 11:42:26 -080067HOST_LDLIBS_PROTOC += $(addprefix -l, $(LIBS_PROTOC))
68
69HOST_CPPFLAGS = $(CPPFLAGS)
70HOST_CFLAGS = $(CFLAGS)
71HOST_CXXFLAGS = $(CXXFLAGS)
72HOST_LDFLAGS = $(LDFLAGS)
73HOST_LDLIBS = $(LDLIBS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080074
nnoble69ac39f2014-12-12 15:43:38 -080075
76# These are automatically computed variables.
77# There shouldn't be any need to change anything from now on.
78
79HOST_SYSTEM = $(shell uname | cut -f 1 -d_)
80ifeq ($(SYSTEM),)
81SYSTEM = $(HOST_SYSTEM)
82endif
83
nnoble5b7f32a2014-12-22 08:12:44 -080084ifeq ($(SYSTEM),MINGW32)
85SHARED_EXT = dll
86endif
87ifeq ($(SYSTEM),Darwin)
88SHARED_EXT = dylib
89endif
90ifeq ($(SHARED_EXT),)
91SHARED_EXT = so.$(VERSION)
92endif
93
nnoble69ac39f2014-12-12 15:43:38 -080094ifeq ($(wildcard .git),)
95IS_GIT_FOLDER = false
96else
97IS_GIT_FOLDER = true
98endif
99
100EVENT2_CHECK_CMD = $(CC) $(CFLAGS) $(CPPFLAGS) -o /dev/null test/build/event2.c -levent $(LDFLAGS)
nnoble7e012cf2014-12-22 17:53:44 -0800101OPENSSL_ALPN_CHECK_CMD = $(CC) $(CFLAGS) $(CPPFLAGS) -o /dev/null test/build/openssl-alpn.c -lssl -lcrypto -ldl $(LDFLAGS)
102ZLIB_CHECK_CMD = $(CC) $(CFLAGS) $(CPPFLAGS) -o /dev/null test/build/zlib.c -lz $(LDFLAGS)
nnoble69ac39f2014-12-12 15:43:38 -0800103
nnoble60825402014-12-15 14:43:51 -0800104HAS_SYSTEM_EVENT2 = $(shell $(EVENT2_CHECK_CMD) 2> /dev/null && echo true || echo false)
105HAS_SYSTEM_OPENSSL_ALPN = $(shell $(OPENSSL_ALPN_CHECK_CMD) 2> /dev/null && echo true || echo false)
106HAS_SYSTEM_ZLIB = $(shell $(ZLIB_CHECK_CMD) 2> /dev/null && echo true || echo false)
nnoble69ac39f2014-12-12 15:43:38 -0800107
108ifeq ($(wildcard third_party/libevent/include/event2/event.h),)
109HAS_EMBEDDED_EVENT2 = false
110else
111HAS_EMBEDDED_EVENT2 = true
112endif
113
114ifeq ($(wildcard third_party/openssl/ssl/ssl.h),)
115HAS_EMBEDDED_OPENSSL_ALPN = false
116else
117HAS_EMBEDDED_OPENSSL_ALPN = true
118endif
119
120ifeq ($(wildcard third_party/zlib/zlib.h),)
121HAS_EMBEDDED_ZLIB = false
122else
123HAS_EMBEDDED_ZLIB = true
124endif
125
126ifneq ($(SYSTEM),MINGW32)
127ifeq ($(HAS_SYSTEM_EVENT2),false)
128DEP_MISSING += libevent
129endif
130endif
131
132ifeq ($(HAS_SYSTEM_ZLIB),false)
133ifeq ($(HAS_EMBEDDED_ZLIB),true)
134ZLIB_DEP = third_party/zlib/libz.a
135CPPFLAGS += -Ithird_party/zlib
136LDFLAGS += -Lthird_party/zlib
137else
138DEP_MISSING += zlib
139endif
140endif
141
142ifeq ($(HAS_SYSTEM_OPENSSL_ALPN),false)
143ifeq ($(HAS_EMBEDDED_OPENSSL_ALPN),true)
144OPENSSL_DEP = third_party/openssl/libssl.a
nnoble20e2e3f2014-12-16 15:37:57 -0800145OPENSSL_MERGE_LIBS += third_party/openssl/libssl.a third_party/openssl/libcrypto.a
nnoble69ac39f2014-12-12 15:43:38 -0800146CPPFLAGS += -Ithird_party/openssl/include
147LDFLAGS += -Lthird_party/openssl
nnoble5b7f32a2014-12-22 08:12:44 -0800148LIBS_SECURE = dl
nnoble69ac39f2014-12-12 15:43:38 -0800149else
150NO_SECURE = true
151endif
nnoble5b7f32a2014-12-22 08:12:44 -0800152else
153LIBS_SECURE = ssl crypto dl
nnoble69ac39f2014-12-12 15:43:38 -0800154endif
155
nnoble5b7f32a2014-12-22 08:12:44 -0800156LDLIBS_SECURE += $(addprefix -l, $(LIBS_SECURE))
157
nnoble69ac39f2014-12-12 15:43:38 -0800158ifneq ($(DEP_MISSING),)
159NO_DEPS = true
160endif
161
162ifneq ($(MAKECMDGOALS),clean)
163NO_DEPS = true
164endif
165
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800166.SECONDARY = %.pb.h %.pb.cc
167
nnoble69ac39f2014-12-12 15:43:38 -0800168ifeq ($(DEP_MISSING),)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800169all: static shared
nnoble69ac39f2014-12-12 15:43:38 -0800170dep_error:
171 @echo "You shouldn't see this message - all of your dependencies are correct."
172else
173all: dep_error git_update stop
174
175dep_error:
176 @echo
177 @echo "DEPENDENCY ERROR"
178 @echo
179 @echo "You are missing system dependencies that are essential to build grpc,"
180 @echo "and the third_party directory doesn't have them:"
181 @echo
182 @echo " $(DEP_MISSING)"
183 @echo
184 @echo "Installing the development packages for your system will solve"
185 @echo "this issue. Please consult INSTALL to get more information."
186 @echo
187 @echo "If you need information about why these tests failed, run:"
188 @echo
189 @echo " make run_dep_checks"
190 @echo
191endif
192
193git_update:
194ifeq ($(IS_GIT_FOLDER),true)
195 @echo "Additionally, since you are in a git clone, you can download the"
196 @echo "missing dependencies in third_party by running the following command:"
197 @echo
ctiller64f29102014-12-15 10:40:59 -0800198 @echo " git submodule update --init"
nnoble69ac39f2014-12-12 15:43:38 -0800199 @echo
200endif
201
202openssl_dep_error: openssl_dep_message git_update stop
203
204openssl_dep_message:
205 @echo
206 @echo "DEPENDENCY ERROR"
207 @echo
208 @echo "The target you are trying to run requires OpenSSL with ALPN support."
209 @echo "Your system doesn't have it, and neither does the third_party directory."
210 @echo
211 @echo "Please consult INSTALL to get more information."
212 @echo
213 @echo "If you need information about why these tests failed, run:"
214 @echo
215 @echo " make run_dep_checks"
216 @echo
217
218stop:
219 @false
220
ctiller09cb6d52014-12-19 17:38:22 -0800221gen_hpack_tables: bins/$(TGTDIR)/gen_hpack_tables
222cpp_plugin: bins/$(TGTDIR)/cpp_plugin
223ruby_plugin: bins/$(TGTDIR)/ruby_plugin
224grpc_byte_buffer_reader_test: bins/$(TGTDIR)/grpc_byte_buffer_reader_test
225gpr_cancellable_test: bins/$(TGTDIR)/gpr_cancellable_test
226gpr_log_test: bins/$(TGTDIR)/gpr_log_test
227gpr_useful_test: bins/$(TGTDIR)/gpr_useful_test
228gpr_cmdline_test: bins/$(TGTDIR)/gpr_cmdline_test
229gpr_histogram_test: bins/$(TGTDIR)/gpr_histogram_test
230gpr_host_port_test: bins/$(TGTDIR)/gpr_host_port_test
231gpr_slice_buffer_test: bins/$(TGTDIR)/gpr_slice_buffer_test
232gpr_slice_test: bins/$(TGTDIR)/gpr_slice_test
233gpr_string_test: bins/$(TGTDIR)/gpr_string_test
234gpr_sync_test: bins/$(TGTDIR)/gpr_sync_test
235gpr_thd_test: bins/$(TGTDIR)/gpr_thd_test
236gpr_time_test: bins/$(TGTDIR)/gpr_time_test
237murmur_hash_test: bins/$(TGTDIR)/murmur_hash_test
238grpc_stream_op_test: bins/$(TGTDIR)/grpc_stream_op_test
239alpn_test: bins/$(TGTDIR)/alpn_test
240time_averaged_stats_test: bins/$(TGTDIR)/time_averaged_stats_test
241chttp2_stream_encoder_test: bins/$(TGTDIR)/chttp2_stream_encoder_test
242hpack_table_test: bins/$(TGTDIR)/hpack_table_test
243chttp2_stream_map_test: bins/$(TGTDIR)/chttp2_stream_map_test
244hpack_parser_test: bins/$(TGTDIR)/hpack_parser_test
245transport_metadata_test: bins/$(TGTDIR)/transport_metadata_test
246chttp2_status_conversion_test: bins/$(TGTDIR)/chttp2_status_conversion_test
247chttp2_transport_end2end_test: bins/$(TGTDIR)/chttp2_transport_end2end_test
248tcp_posix_test: bins/$(TGTDIR)/tcp_posix_test
249dualstack_socket_test: bins/$(TGTDIR)/dualstack_socket_test
250no_server_test: bins/$(TGTDIR)/no_server_test
251resolve_address_test: bins/$(TGTDIR)/resolve_address_test
252sockaddr_utils_test: bins/$(TGTDIR)/sockaddr_utils_test
253tcp_server_posix_test: bins/$(TGTDIR)/tcp_server_posix_test
254tcp_client_posix_test: bins/$(TGTDIR)/tcp_client_posix_test
255grpc_channel_stack_test: bins/$(TGTDIR)/grpc_channel_stack_test
256metadata_buffer_test: bins/$(TGTDIR)/metadata_buffer_test
257grpc_completion_queue_test: bins/$(TGTDIR)/grpc_completion_queue_test
258grpc_completion_queue_benchmark: bins/$(TGTDIR)/grpc_completion_queue_benchmark
259census_window_stats_test: bins/$(TGTDIR)/census_window_stats_test
260census_statistics_quick_test: bins/$(TGTDIR)/census_statistics_quick_test
261census_statistics_small_log_test: bins/$(TGTDIR)/census_statistics_small_log_test
262census_statistics_performance_test: bins/$(TGTDIR)/census_statistics_performance_test
263census_statistics_multiple_writers_test: bins/$(TGTDIR)/census_statistics_multiple_writers_test
264census_statistics_multiple_writers_circular_buffer_test: bins/$(TGTDIR)/census_statistics_multiple_writers_circular_buffer_test
265census_stub_test: bins/$(TGTDIR)/census_stub_test
266census_hash_table_test: bins/$(TGTDIR)/census_hash_table_test
267fling_server: bins/$(TGTDIR)/fling_server
268fling_client: bins/$(TGTDIR)/fling_client
269fling_test: bins/$(TGTDIR)/fling_test
270echo_server: bins/$(TGTDIR)/echo_server
271echo_client: bins/$(TGTDIR)/echo_client
272echo_test: bins/$(TGTDIR)/echo_test
273low_level_ping_pong_benchmark: bins/$(TGTDIR)/low_level_ping_pong_benchmark
274message_compress_test: bins/$(TGTDIR)/message_compress_test
275bin_encoder_test: bins/$(TGTDIR)/bin_encoder_test
276secure_endpoint_test: bins/$(TGTDIR)/secure_endpoint_test
277httpcli_format_request_test: bins/$(TGTDIR)/httpcli_format_request_test
278httpcli_parser_test: bins/$(TGTDIR)/httpcli_parser_test
279httpcli_test: bins/$(TGTDIR)/httpcli_test
280grpc_credentials_test: bins/$(TGTDIR)/grpc_credentials_test
281grpc_fetch_oauth2: bins/$(TGTDIR)/grpc_fetch_oauth2
282grpc_base64_test: bins/$(TGTDIR)/grpc_base64_test
283grpc_json_token_test: bins/$(TGTDIR)/grpc_json_token_test
284timeout_encoding_test: bins/$(TGTDIR)/timeout_encoding_test
285fd_posix_test: bins/$(TGTDIR)/fd_posix_test
286fling_stream_test: bins/$(TGTDIR)/fling_stream_test
287lame_client_test: bins/$(TGTDIR)/lame_client_test
288thread_pool_test: bins/$(TGTDIR)/thread_pool_test
289status_test: bins/$(TGTDIR)/status_test
290sync_client_async_server_test: bins/$(TGTDIR)/sync_client_async_server_test
291qps_client: bins/$(TGTDIR)/qps_client
292qps_server: bins/$(TGTDIR)/qps_server
293interop_server: bins/$(TGTDIR)/interop_server
294interop_client: bins/$(TGTDIR)/interop_client
295end2end_test: bins/$(TGTDIR)/end2end_test
296channel_arguments_test: bins/$(TGTDIR)/channel_arguments_test
297alarm_test: bins/$(TGTDIR)/alarm_test
298alarm_list_test: bins/$(TGTDIR)/alarm_list_test
299alarm_heap_test: bins/$(TGTDIR)/alarm_heap_test
300time_test: bins/$(TGTDIR)/time_test
301chttp2_fake_security_cancel_after_accept_test: bins/$(TGTDIR)/chttp2_fake_security_cancel_after_accept_test
302chttp2_fake_security_cancel_after_accept_and_writes_closed_test: bins/$(TGTDIR)/chttp2_fake_security_cancel_after_accept_and_writes_closed_test
303chttp2_fake_security_cancel_after_invoke_test: bins/$(TGTDIR)/chttp2_fake_security_cancel_after_invoke_test
304chttp2_fake_security_cancel_before_invoke_test: bins/$(TGTDIR)/chttp2_fake_security_cancel_before_invoke_test
305chttp2_fake_security_cancel_in_a_vacuum_test: bins/$(TGTDIR)/chttp2_fake_security_cancel_in_a_vacuum_test
306chttp2_fake_security_disappearing_server_test: bins/$(TGTDIR)/chttp2_fake_security_disappearing_server_test
307chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test: bins/$(TGTDIR)/chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test
308chttp2_fake_security_early_server_shutdown_finishes_tags_test: bins/$(TGTDIR)/chttp2_fake_security_early_server_shutdown_finishes_tags_test
309chttp2_fake_security_invoke_large_request_test: bins/$(TGTDIR)/chttp2_fake_security_invoke_large_request_test
310chttp2_fake_security_max_concurrent_streams_test: bins/$(TGTDIR)/chttp2_fake_security_max_concurrent_streams_test
311chttp2_fake_security_no_op_test: bins/$(TGTDIR)/chttp2_fake_security_no_op_test
312chttp2_fake_security_ping_pong_streaming_test: bins/$(TGTDIR)/chttp2_fake_security_ping_pong_streaming_test
313chttp2_fake_security_request_response_with_binary_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_fake_security_request_response_with_binary_metadata_and_payload_test
314chttp2_fake_security_request_response_with_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_fake_security_request_response_with_metadata_and_payload_test
315chttp2_fake_security_request_response_with_payload_test: bins/$(TGTDIR)/chttp2_fake_security_request_response_with_payload_test
316chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test
317chttp2_fake_security_simple_delayed_request_test: bins/$(TGTDIR)/chttp2_fake_security_simple_delayed_request_test
318chttp2_fake_security_simple_request_test: bins/$(TGTDIR)/chttp2_fake_security_simple_request_test
319chttp2_fake_security_thread_stress_test: bins/$(TGTDIR)/chttp2_fake_security_thread_stress_test
320chttp2_fake_security_writes_done_hangs_with_pending_read_test: bins/$(TGTDIR)/chttp2_fake_security_writes_done_hangs_with_pending_read_test
321chttp2_fullstack_cancel_after_accept_test: bins/$(TGTDIR)/chttp2_fullstack_cancel_after_accept_test
322chttp2_fullstack_cancel_after_accept_and_writes_closed_test: bins/$(TGTDIR)/chttp2_fullstack_cancel_after_accept_and_writes_closed_test
323chttp2_fullstack_cancel_after_invoke_test: bins/$(TGTDIR)/chttp2_fullstack_cancel_after_invoke_test
324chttp2_fullstack_cancel_before_invoke_test: bins/$(TGTDIR)/chttp2_fullstack_cancel_before_invoke_test
325chttp2_fullstack_cancel_in_a_vacuum_test: bins/$(TGTDIR)/chttp2_fullstack_cancel_in_a_vacuum_test
326chttp2_fullstack_disappearing_server_test: bins/$(TGTDIR)/chttp2_fullstack_disappearing_server_test
327chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test: bins/$(TGTDIR)/chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test
328chttp2_fullstack_early_server_shutdown_finishes_tags_test: bins/$(TGTDIR)/chttp2_fullstack_early_server_shutdown_finishes_tags_test
329chttp2_fullstack_invoke_large_request_test: bins/$(TGTDIR)/chttp2_fullstack_invoke_large_request_test
330chttp2_fullstack_max_concurrent_streams_test: bins/$(TGTDIR)/chttp2_fullstack_max_concurrent_streams_test
331chttp2_fullstack_no_op_test: bins/$(TGTDIR)/chttp2_fullstack_no_op_test
332chttp2_fullstack_ping_pong_streaming_test: bins/$(TGTDIR)/chttp2_fullstack_ping_pong_streaming_test
333chttp2_fullstack_request_response_with_binary_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_fullstack_request_response_with_binary_metadata_and_payload_test
334chttp2_fullstack_request_response_with_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_fullstack_request_response_with_metadata_and_payload_test
335chttp2_fullstack_request_response_with_payload_test: bins/$(TGTDIR)/chttp2_fullstack_request_response_with_payload_test
336chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test
337chttp2_fullstack_simple_delayed_request_test: bins/$(TGTDIR)/chttp2_fullstack_simple_delayed_request_test
338chttp2_fullstack_simple_request_test: bins/$(TGTDIR)/chttp2_fullstack_simple_request_test
339chttp2_fullstack_thread_stress_test: bins/$(TGTDIR)/chttp2_fullstack_thread_stress_test
340chttp2_fullstack_writes_done_hangs_with_pending_read_test: bins/$(TGTDIR)/chttp2_fullstack_writes_done_hangs_with_pending_read_test
341chttp2_simple_ssl_fullstack_cancel_after_accept_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_accept_test
342chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test
343chttp2_simple_ssl_fullstack_cancel_after_invoke_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_invoke_test
344chttp2_simple_ssl_fullstack_cancel_before_invoke_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_before_invoke_test
345chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test
346chttp2_simple_ssl_fullstack_disappearing_server_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_disappearing_server_test
347chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test
348chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test
349chttp2_simple_ssl_fullstack_invoke_large_request_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_invoke_large_request_test
350chttp2_simple_ssl_fullstack_max_concurrent_streams_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_max_concurrent_streams_test
351chttp2_simple_ssl_fullstack_no_op_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_no_op_test
352chttp2_simple_ssl_fullstack_ping_pong_streaming_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_ping_pong_streaming_test
353chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test
354chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test
355chttp2_simple_ssl_fullstack_request_response_with_payload_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_payload_test
356chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test
357chttp2_simple_ssl_fullstack_simple_delayed_request_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_simple_delayed_request_test
358chttp2_simple_ssl_fullstack_simple_request_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_simple_request_test
359chttp2_simple_ssl_fullstack_thread_stress_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_thread_stress_test
360chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test: bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test
361chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test
362chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test
363chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test
364chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test
365chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test
366chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test
367chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test
368chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test
369chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test
370chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test
371chttp2_simple_ssl_with_oauth2_fullstack_no_op_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_no_op_test
372chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test
373chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test
374chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test
375chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test
376chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test
377chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test
378chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test
379chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test
380chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test: bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test
381chttp2_socket_pair_cancel_after_accept_test: bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_accept_test
382chttp2_socket_pair_cancel_after_accept_and_writes_closed_test: bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_accept_and_writes_closed_test
383chttp2_socket_pair_cancel_after_invoke_test: bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_invoke_test
384chttp2_socket_pair_cancel_before_invoke_test: bins/$(TGTDIR)/chttp2_socket_pair_cancel_before_invoke_test
385chttp2_socket_pair_cancel_in_a_vacuum_test: bins/$(TGTDIR)/chttp2_socket_pair_cancel_in_a_vacuum_test
386chttp2_socket_pair_disappearing_server_test: bins/$(TGTDIR)/chttp2_socket_pair_disappearing_server_test
387chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test: bins/$(TGTDIR)/chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test
388chttp2_socket_pair_early_server_shutdown_finishes_tags_test: bins/$(TGTDIR)/chttp2_socket_pair_early_server_shutdown_finishes_tags_test
389chttp2_socket_pair_invoke_large_request_test: bins/$(TGTDIR)/chttp2_socket_pair_invoke_large_request_test
390chttp2_socket_pair_max_concurrent_streams_test: bins/$(TGTDIR)/chttp2_socket_pair_max_concurrent_streams_test
391chttp2_socket_pair_no_op_test: bins/$(TGTDIR)/chttp2_socket_pair_no_op_test
392chttp2_socket_pair_ping_pong_streaming_test: bins/$(TGTDIR)/chttp2_socket_pair_ping_pong_streaming_test
393chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test
394chttp2_socket_pair_request_response_with_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_metadata_and_payload_test
395chttp2_socket_pair_request_response_with_payload_test: bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_payload_test
396chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test
397chttp2_socket_pair_simple_delayed_request_test: bins/$(TGTDIR)/chttp2_socket_pair_simple_delayed_request_test
398chttp2_socket_pair_simple_request_test: bins/$(TGTDIR)/chttp2_socket_pair_simple_request_test
399chttp2_socket_pair_thread_stress_test: bins/$(TGTDIR)/chttp2_socket_pair_thread_stress_test
400chttp2_socket_pair_writes_done_hangs_with_pending_read_test: bins/$(TGTDIR)/chttp2_socket_pair_writes_done_hangs_with_pending_read_test
401chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test
402chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test
403chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test
404chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test
405chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test
406chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test
407chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test
408chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test
409chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test
410chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test
411chttp2_socket_pair_one_byte_at_a_time_no_op_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_no_op_test
412chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test
413chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test
414chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test
415chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test
416chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test
417chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test
418chttp2_socket_pair_one_byte_at_a_time_simple_request_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_simple_request_test
419chttp2_socket_pair_one_byte_at_a_time_thread_stress_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_thread_stress_test
420chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test: bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test
421
nnoble69ac39f2014-12-12 15:43:38 -0800422run_dep_checks:
423 $(EVENT2_CHECK_CMD) || true
424 $(OPENSSL_ALPN_CHECK_CMD) || true
425 $(ZLIB_CHECK_CMD) || true
426
427third_party/zlib/libz.a:
428 (cd third_party/zlib ; CFLAGS="-fPIC -fvisibility=hidden" ./configure --static)
429 $(MAKE) -C third_party/zlib
430
431third_party/openssl/libssl.a:
432 (cd third_party/openssl ; CC="$(CC) -fPIC -fvisibility=hidden" ./config)
433 $(MAKE) -C third_party/openssl build_crypto build_ssl
434
nnoble29e1d292014-12-01 10:27:40 -0800435static: static_c static_cxx
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800436
ctiller09cb6d52014-12-19 17:38:22 -0800437static_c: dep_c libs/$(TGTDIR)/libgpr.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgrpc_unsecure.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800438
ctiller09cb6d52014-12-19 17:38:22 -0800439static_cxx: dep_cxx libs/$(TGTDIR)/libgrpc++.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800440
nnoble29e1d292014-12-01 10:27:40 -0800441shared: shared_c shared_cxx
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800442
nnoble5b7f32a2014-12-22 08:12:44 -0800443shared_c: dep_c libs/$(TGTDIR)/libgpr.$(SHARED_EXT) libs/$(TGTDIR)/libgrpc.$(SHARED_EXT) libs/$(TGTDIR)/libgrpc_unsecure.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800444
nnoble5b7f32a2014-12-22 08:12:44 -0800445shared_cxx: dep_cxx libs/$(TGTDIR)/libgrpc++.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800446
nnoble29e1d292014-12-01 10:27:40 -0800447privatelibs: privatelibs_c privatelibs_cxx
448
ctiller09cb6d52014-12-19 17:38:22 -0800449privatelibs_c: dep_c libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a libs/$(TGTDIR)/libend2end_test_disappearing_server.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(TGTDIR)/libend2end_test_invoke_large_request.a libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a libs/$(TGTDIR)/libend2end_test_no_op.a libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a libs/$(TGTDIR)/libend2end_test_simple_request.a libs/$(TGTDIR)/libend2end_test_thread_stress.a libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(TGTDIR)/libend2end_certs.a
nnoble29e1d292014-12-01 10:27:40 -0800450
ctiller09cb6d52014-12-19 17:38:22 -0800451privatelibs_cxx: dep_cxx libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a libs/$(TGTDIR)/libend2end_test_disappearing_server.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(TGTDIR)/libend2end_test_invoke_large_request.a libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a libs/$(TGTDIR)/libend2end_test_no_op.a libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a libs/$(TGTDIR)/libend2end_test_simple_request.a libs/$(TGTDIR)/libend2end_test_thread_stress.a libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(TGTDIR)/libend2end_certs.a
nnoble29e1d292014-12-01 10:27:40 -0800452
453buildtests: buildtests_c buildtests_cxx
454
ctiller09cb6d52014-12-19 17:38:22 -0800455buildtests_c: bins_dep_c privatelibs_c bins/$(TGTDIR)/grpc_byte_buffer_reader_test bins/$(TGTDIR)/gpr_cancellable_test bins/$(TGTDIR)/gpr_log_test bins/$(TGTDIR)/gpr_useful_test bins/$(TGTDIR)/gpr_cmdline_test bins/$(TGTDIR)/gpr_histogram_test bins/$(TGTDIR)/gpr_host_port_test bins/$(TGTDIR)/gpr_slice_buffer_test bins/$(TGTDIR)/gpr_slice_test bins/$(TGTDIR)/gpr_string_test bins/$(TGTDIR)/gpr_sync_test bins/$(TGTDIR)/gpr_thd_test bins/$(TGTDIR)/gpr_time_test bins/$(TGTDIR)/murmur_hash_test bins/$(TGTDIR)/grpc_stream_op_test bins/$(TGTDIR)/alpn_test bins/$(TGTDIR)/time_averaged_stats_test bins/$(TGTDIR)/chttp2_stream_encoder_test bins/$(TGTDIR)/hpack_table_test bins/$(TGTDIR)/chttp2_stream_map_test bins/$(TGTDIR)/hpack_parser_test bins/$(TGTDIR)/transport_metadata_test bins/$(TGTDIR)/chttp2_status_conversion_test bins/$(TGTDIR)/chttp2_transport_end2end_test bins/$(TGTDIR)/tcp_posix_test bins/$(TGTDIR)/dualstack_socket_test bins/$(TGTDIR)/no_server_test bins/$(TGTDIR)/resolve_address_test bins/$(TGTDIR)/sockaddr_utils_test bins/$(TGTDIR)/tcp_server_posix_test bins/$(TGTDIR)/tcp_client_posix_test bins/$(TGTDIR)/grpc_channel_stack_test bins/$(TGTDIR)/metadata_buffer_test bins/$(TGTDIR)/grpc_completion_queue_test bins/$(TGTDIR)/census_window_stats_test bins/$(TGTDIR)/census_statistics_quick_test bins/$(TGTDIR)/census_statistics_small_log_test bins/$(TGTDIR)/census_statistics_performance_test bins/$(TGTDIR)/census_statistics_multiple_writers_test bins/$(TGTDIR)/census_statistics_multiple_writers_circular_buffer_test bins/$(TGTDIR)/census_stub_test bins/$(TGTDIR)/census_hash_table_test bins/$(TGTDIR)/fling_server bins/$(TGTDIR)/fling_client bins/$(TGTDIR)/fling_test bins/$(TGTDIR)/echo_server bins/$(TGTDIR)/echo_client bins/$(TGTDIR)/echo_test bins/$(TGTDIR)/message_compress_test bins/$(TGTDIR)/bin_encoder_test bins/$(TGTDIR)/secure_endpoint_test bins/$(TGTDIR)/httpcli_format_request_test bins/$(TGTDIR)/httpcli_parser_test bins/$(TGTDIR)/httpcli_test bins/$(TGTDIR)/grpc_credentials_test bins/$(TGTDIR)/grpc_base64_test bins/$(TGTDIR)/grpc_json_token_test bins/$(TGTDIR)/timeout_encoding_test bins/$(TGTDIR)/fd_posix_test bins/$(TGTDIR)/fling_stream_test bins/$(TGTDIR)/lame_client_test bins/$(TGTDIR)/alarm_test bins/$(TGTDIR)/alarm_list_test bins/$(TGTDIR)/alarm_heap_test bins/$(TGTDIR)/time_test bins/$(TGTDIR)/chttp2_fake_security_cancel_after_accept_test bins/$(TGTDIR)/chttp2_fake_security_cancel_after_accept_and_writes_closed_test bins/$(TGTDIR)/chttp2_fake_security_cancel_after_invoke_test bins/$(TGTDIR)/chttp2_fake_security_cancel_before_invoke_test bins/$(TGTDIR)/chttp2_fake_security_cancel_in_a_vacuum_test bins/$(TGTDIR)/chttp2_fake_security_disappearing_server_test bins/$(TGTDIR)/chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test bins/$(TGTDIR)/chttp2_fake_security_early_server_shutdown_finishes_tags_test bins/$(TGTDIR)/chttp2_fake_security_invoke_large_request_test bins/$(TGTDIR)/chttp2_fake_security_max_concurrent_streams_test bins/$(TGTDIR)/chttp2_fake_security_no_op_test bins/$(TGTDIR)/chttp2_fake_security_ping_pong_streaming_test bins/$(TGTDIR)/chttp2_fake_security_request_response_with_binary_metadata_and_payload_test bins/$(TGTDIR)/chttp2_fake_security_request_response_with_metadata_and_payload_test bins/$(TGTDIR)/chttp2_fake_security_request_response_with_payload_test bins/$(TGTDIR)/chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test bins/$(TGTDIR)/chttp2_fake_security_simple_delayed_request_test bins/$(TGTDIR)/chttp2_fake_security_simple_request_test bins/$(TGTDIR)/chttp2_fake_security_thread_stress_test bins/$(TGTDIR)/chttp2_fake_security_writes_done_hangs_with_pending_read_test bins/$(TGTDIR)/chttp2_fullstack_cancel_after_accept_test bins/$(TGTDIR)/chttp2_fullstack_cancel_after_accept_and_writes_closed_test bins/$(TGTDIR)/chttp2_fullstack_cancel_after_invoke_test bins/$(TGTDIR)/chttp2_fullstack_cancel_before_invoke_test bins/$(TGTDIR)/chttp2_fullstack_cancel_in_a_vacuum_test bins/$(TGTDIR)/chttp2_fullstack_disappearing_server_test bins/$(TGTDIR)/chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test bins/$(TGTDIR)/chttp2_fullstack_early_server_shutdown_finishes_tags_test bins/$(TGTDIR)/chttp2_fullstack_invoke_large_request_test bins/$(TGTDIR)/chttp2_fullstack_max_concurrent_streams_test bins/$(TGTDIR)/chttp2_fullstack_no_op_test bins/$(TGTDIR)/chttp2_fullstack_ping_pong_streaming_test bins/$(TGTDIR)/chttp2_fullstack_request_response_with_binary_metadata_and_payload_test bins/$(TGTDIR)/chttp2_fullstack_request_response_with_metadata_and_payload_test bins/$(TGTDIR)/chttp2_fullstack_request_response_with_payload_test bins/$(TGTDIR)/chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test bins/$(TGTDIR)/chttp2_fullstack_simple_delayed_request_test bins/$(TGTDIR)/chttp2_fullstack_simple_request_test bins/$(TGTDIR)/chttp2_fullstack_thread_stress_test bins/$(TGTDIR)/chttp2_fullstack_writes_done_hangs_with_pending_read_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_accept_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_invoke_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_before_invoke_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_disappearing_server_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_invoke_large_request_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_max_concurrent_streams_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_no_op_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_ping_pong_streaming_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_payload_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_simple_delayed_request_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_simple_request_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_thread_stress_test bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_no_op_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_accept_test bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_accept_and_writes_closed_test bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_invoke_test bins/$(TGTDIR)/chttp2_socket_pair_cancel_before_invoke_test bins/$(TGTDIR)/chttp2_socket_pair_cancel_in_a_vacuum_test bins/$(TGTDIR)/chttp2_socket_pair_disappearing_server_test bins/$(TGTDIR)/chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test bins/$(TGTDIR)/chttp2_socket_pair_early_server_shutdown_finishes_tags_test bins/$(TGTDIR)/chttp2_socket_pair_invoke_large_request_test bins/$(TGTDIR)/chttp2_socket_pair_max_concurrent_streams_test bins/$(TGTDIR)/chttp2_socket_pair_no_op_test bins/$(TGTDIR)/chttp2_socket_pair_ping_pong_streaming_test bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_metadata_and_payload_test bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_payload_test bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test bins/$(TGTDIR)/chttp2_socket_pair_simple_delayed_request_test bins/$(TGTDIR)/chttp2_socket_pair_simple_request_test bins/$(TGTDIR)/chttp2_socket_pair_thread_stress_test bins/$(TGTDIR)/chttp2_socket_pair_writes_done_hangs_with_pending_read_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_no_op_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_simple_request_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_thread_stress_test bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test
nnoble29e1d292014-12-01 10:27:40 -0800456
yangg59dfc902014-12-19 14:00:14 -0800457buildtests_cxx: bins_dep_cxx privatelibs_cxx bins/thread_pool_test bins/status_test bins/sync_client_async_server_test bins/qps_client bins/qps_server bins/interop_server bins/interop_client bins/end2end_test bins/channel_arguments_test
nnoble29e1d292014-12-01 10:27:40 -0800458
nnoble85a49262014-12-08 18:14:03 -0800459test: test_c test_cxx
nnoble29e1d292014-12-01 10:27:40 -0800460
nnoble85a49262014-12-08 18:14:03 -0800461test_c: buildtests_c
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800462 $(E) "[RUN] Testing grpc_byte_buffer_reader_test"
ctiller09cb6d52014-12-19 17:38:22 -0800463 $(Q) ./bins/$(TGTDIR)/grpc_byte_buffer_reader_test || ( echo test grpc_byte_buffer_reader_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800464 $(E) "[RUN] Testing gpr_cancellable_test"
ctiller09cb6d52014-12-19 17:38:22 -0800465 $(Q) ./bins/$(TGTDIR)/gpr_cancellable_test || ( echo test gpr_cancellable_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800466 $(E) "[RUN] Testing gpr_log_test"
ctiller09cb6d52014-12-19 17:38:22 -0800467 $(Q) ./bins/$(TGTDIR)/gpr_log_test || ( echo test gpr_log_test failed ; exit 1 )
ctiller5e04b132014-12-15 09:24:43 -0800468 $(E) "[RUN] Testing gpr_useful_test"
ctiller09cb6d52014-12-19 17:38:22 -0800469 $(Q) ./bins/$(TGTDIR)/gpr_useful_test || ( echo test gpr_useful_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800470 $(E) "[RUN] Testing gpr_cmdline_test"
ctiller09cb6d52014-12-19 17:38:22 -0800471 $(Q) ./bins/$(TGTDIR)/gpr_cmdline_test || ( echo test gpr_cmdline_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800472 $(E) "[RUN] Testing gpr_histogram_test"
ctiller09cb6d52014-12-19 17:38:22 -0800473 $(Q) ./bins/$(TGTDIR)/gpr_histogram_test || ( echo test gpr_histogram_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800474 $(E) "[RUN] Testing gpr_host_port_test"
ctiller09cb6d52014-12-19 17:38:22 -0800475 $(Q) ./bins/$(TGTDIR)/gpr_host_port_test || ( echo test gpr_host_port_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800476 $(E) "[RUN] Testing gpr_slice_buffer_test"
ctiller09cb6d52014-12-19 17:38:22 -0800477 $(Q) ./bins/$(TGTDIR)/gpr_slice_buffer_test || ( echo test gpr_slice_buffer_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800478 $(E) "[RUN] Testing gpr_slice_test"
ctiller09cb6d52014-12-19 17:38:22 -0800479 $(Q) ./bins/$(TGTDIR)/gpr_slice_test || ( echo test gpr_slice_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800480 $(E) "[RUN] Testing gpr_string_test"
ctiller09cb6d52014-12-19 17:38:22 -0800481 $(Q) ./bins/$(TGTDIR)/gpr_string_test || ( echo test gpr_string_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800482 $(E) "[RUN] Testing gpr_sync_test"
ctiller09cb6d52014-12-19 17:38:22 -0800483 $(Q) ./bins/$(TGTDIR)/gpr_sync_test || ( echo test gpr_sync_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800484 $(E) "[RUN] Testing gpr_thd_test"
ctiller09cb6d52014-12-19 17:38:22 -0800485 $(Q) ./bins/$(TGTDIR)/gpr_thd_test || ( echo test gpr_thd_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800486 $(E) "[RUN] Testing gpr_time_test"
ctiller09cb6d52014-12-19 17:38:22 -0800487 $(Q) ./bins/$(TGTDIR)/gpr_time_test || ( echo test gpr_time_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800488 $(E) "[RUN] Testing murmur_hash_test"
ctiller09cb6d52014-12-19 17:38:22 -0800489 $(Q) ./bins/$(TGTDIR)/murmur_hash_test || ( echo test murmur_hash_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800490 $(E) "[RUN] Testing grpc_stream_op_test"
ctiller09cb6d52014-12-19 17:38:22 -0800491 $(Q) ./bins/$(TGTDIR)/grpc_stream_op_test || ( echo test grpc_stream_op_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800492 $(E) "[RUN] Testing alpn_test"
ctiller09cb6d52014-12-19 17:38:22 -0800493 $(Q) ./bins/$(TGTDIR)/alpn_test || ( echo test alpn_test failed ; exit 1 )
ctillerc1ddffb2014-12-15 13:08:18 -0800494 $(E) "[RUN] Testing time_averaged_stats_test"
ctiller09cb6d52014-12-19 17:38:22 -0800495 $(Q) ./bins/$(TGTDIR)/time_averaged_stats_test || ( echo test time_averaged_stats_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800496 $(E) "[RUN] Testing chttp2_stream_encoder_test"
ctiller09cb6d52014-12-19 17:38:22 -0800497 $(Q) ./bins/$(TGTDIR)/chttp2_stream_encoder_test || ( echo test chttp2_stream_encoder_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800498 $(E) "[RUN] Testing hpack_table_test"
ctiller09cb6d52014-12-19 17:38:22 -0800499 $(Q) ./bins/$(TGTDIR)/hpack_table_test || ( echo test hpack_table_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800500 $(E) "[RUN] Testing chttp2_stream_map_test"
ctiller09cb6d52014-12-19 17:38:22 -0800501 $(Q) ./bins/$(TGTDIR)/chttp2_stream_map_test || ( echo test chttp2_stream_map_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800502 $(E) "[RUN] Testing hpack_parser_test"
ctiller09cb6d52014-12-19 17:38:22 -0800503 $(Q) ./bins/$(TGTDIR)/hpack_parser_test || ( echo test hpack_parser_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800504 $(E) "[RUN] Testing transport_metadata_test"
ctiller09cb6d52014-12-19 17:38:22 -0800505 $(Q) ./bins/$(TGTDIR)/transport_metadata_test || ( echo test transport_metadata_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800506 $(E) "[RUN] Testing chttp2_status_conversion_test"
ctiller09cb6d52014-12-19 17:38:22 -0800507 $(Q) ./bins/$(TGTDIR)/chttp2_status_conversion_test || ( echo test chttp2_status_conversion_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800508 $(E) "[RUN] Testing chttp2_transport_end2end_test"
ctiller09cb6d52014-12-19 17:38:22 -0800509 $(Q) ./bins/$(TGTDIR)/chttp2_transport_end2end_test || ( echo test chttp2_transport_end2end_test failed ; exit 1 )
ctiller18b49ab2014-12-09 14:39:16 -0800510 $(E) "[RUN] Testing tcp_posix_test"
ctiller09cb6d52014-12-19 17:38:22 -0800511 $(Q) ./bins/$(TGTDIR)/tcp_posix_test || ( echo test tcp_posix_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800512 $(E) "[RUN] Testing dualstack_socket_test"
ctiller09cb6d52014-12-19 17:38:22 -0800513 $(Q) ./bins/$(TGTDIR)/dualstack_socket_test || ( echo test dualstack_socket_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800514 $(E) "[RUN] Testing no_server_test"
ctiller09cb6d52014-12-19 17:38:22 -0800515 $(Q) ./bins/$(TGTDIR)/no_server_test || ( echo test no_server_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800516 $(E) "[RUN] Testing resolve_address_test"
ctiller09cb6d52014-12-19 17:38:22 -0800517 $(Q) ./bins/$(TGTDIR)/resolve_address_test || ( echo test resolve_address_test failed ; exit 1 )
ctiller18b49ab2014-12-09 14:39:16 -0800518 $(E) "[RUN] Testing sockaddr_utils_test"
ctiller09cb6d52014-12-19 17:38:22 -0800519 $(Q) ./bins/$(TGTDIR)/sockaddr_utils_test || ( echo test sockaddr_utils_test failed ; exit 1 )
ctiller18b49ab2014-12-09 14:39:16 -0800520 $(E) "[RUN] Testing tcp_server_posix_test"
ctiller09cb6d52014-12-19 17:38:22 -0800521 $(Q) ./bins/$(TGTDIR)/tcp_server_posix_test || ( echo test tcp_server_posix_test failed ; exit 1 )
ctiller18b49ab2014-12-09 14:39:16 -0800522 $(E) "[RUN] Testing tcp_client_posix_test"
ctiller09cb6d52014-12-19 17:38:22 -0800523 $(Q) ./bins/$(TGTDIR)/tcp_client_posix_test || ( echo test tcp_client_posix_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800524 $(E) "[RUN] Testing grpc_channel_stack_test"
ctiller09cb6d52014-12-19 17:38:22 -0800525 $(Q) ./bins/$(TGTDIR)/grpc_channel_stack_test || ( echo test grpc_channel_stack_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800526 $(E) "[RUN] Testing metadata_buffer_test"
ctiller09cb6d52014-12-19 17:38:22 -0800527 $(Q) ./bins/$(TGTDIR)/metadata_buffer_test || ( echo test metadata_buffer_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800528 $(E) "[RUN] Testing grpc_completion_queue_test"
ctiller09cb6d52014-12-19 17:38:22 -0800529 $(Q) ./bins/$(TGTDIR)/grpc_completion_queue_test || ( echo test grpc_completion_queue_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800530 $(E) "[RUN] Testing census_window_stats_test"
ctiller09cb6d52014-12-19 17:38:22 -0800531 $(Q) ./bins/$(TGTDIR)/census_window_stats_test || ( echo test census_window_stats_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800532 $(E) "[RUN] Testing census_statistics_quick_test"
ctiller09cb6d52014-12-19 17:38:22 -0800533 $(Q) ./bins/$(TGTDIR)/census_statistics_quick_test || ( echo test census_statistics_quick_test failed ; exit 1 )
aveitch482a5be2014-12-15 10:25:12 -0800534 $(E) "[RUN] Testing census_statistics_small_log_test"
ctiller09cb6d52014-12-19 17:38:22 -0800535 $(Q) ./bins/$(TGTDIR)/census_statistics_small_log_test || ( echo test census_statistics_small_log_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800536 $(E) "[RUN] Testing census_statistics_performance_test"
ctiller09cb6d52014-12-19 17:38:22 -0800537 $(Q) ./bins/$(TGTDIR)/census_statistics_performance_test || ( echo test census_statistics_performance_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800538 $(E) "[RUN] Testing census_statistics_multiple_writers_test"
ctiller09cb6d52014-12-19 17:38:22 -0800539 $(Q) ./bins/$(TGTDIR)/census_statistics_multiple_writers_test || ( echo test census_statistics_multiple_writers_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800540 $(E) "[RUN] Testing census_statistics_multiple_writers_circular_buffer_test"
ctiller09cb6d52014-12-19 17:38:22 -0800541 $(Q) ./bins/$(TGTDIR)/census_statistics_multiple_writers_circular_buffer_test || ( echo test census_statistics_multiple_writers_circular_buffer_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800542 $(E) "[RUN] Testing census_stub_test"
ctiller09cb6d52014-12-19 17:38:22 -0800543 $(Q) ./bins/$(TGTDIR)/census_stub_test || ( echo test census_stub_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800544 $(E) "[RUN] Testing census_hash_table_test"
ctiller09cb6d52014-12-19 17:38:22 -0800545 $(Q) ./bins/$(TGTDIR)/census_hash_table_test || ( echo test census_hash_table_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800546 $(E) "[RUN] Testing fling_test"
ctiller09cb6d52014-12-19 17:38:22 -0800547 $(Q) ./bins/$(TGTDIR)/fling_test || ( echo test fling_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800548 $(E) "[RUN] Testing echo_test"
ctiller09cb6d52014-12-19 17:38:22 -0800549 $(Q) ./bins/$(TGTDIR)/echo_test || ( echo test echo_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800550 $(E) "[RUN] Testing message_compress_test"
ctiller09cb6d52014-12-19 17:38:22 -0800551 $(Q) ./bins/$(TGTDIR)/message_compress_test || ( echo test message_compress_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800552 $(E) "[RUN] Testing bin_encoder_test"
ctiller09cb6d52014-12-19 17:38:22 -0800553 $(Q) ./bins/$(TGTDIR)/bin_encoder_test || ( echo test bin_encoder_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800554 $(E) "[RUN] Testing secure_endpoint_test"
ctiller09cb6d52014-12-19 17:38:22 -0800555 $(Q) ./bins/$(TGTDIR)/secure_endpoint_test || ( echo test secure_endpoint_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800556 $(E) "[RUN] Testing httpcli_format_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800557 $(Q) ./bins/$(TGTDIR)/httpcli_format_request_test || ( echo test httpcli_format_request_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800558 $(E) "[RUN] Testing httpcli_parser_test"
ctiller09cb6d52014-12-19 17:38:22 -0800559 $(Q) ./bins/$(TGTDIR)/httpcli_parser_test || ( echo test httpcli_parser_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800560 $(E) "[RUN] Testing httpcli_test"
ctiller09cb6d52014-12-19 17:38:22 -0800561 $(Q) ./bins/$(TGTDIR)/httpcli_test || ( echo test httpcli_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800562 $(E) "[RUN] Testing grpc_credentials_test"
ctiller09cb6d52014-12-19 17:38:22 -0800563 $(Q) ./bins/$(TGTDIR)/grpc_credentials_test || ( echo test grpc_credentials_test failed ; exit 1 )
jboeufbefd2652014-12-12 15:39:47 -0800564 $(E) "[RUN] Testing grpc_base64_test"
ctiller09cb6d52014-12-19 17:38:22 -0800565 $(Q) ./bins/$(TGTDIR)/grpc_base64_test || ( echo test grpc_base64_test failed ; exit 1 )
jboeufbefd2652014-12-12 15:39:47 -0800566 $(E) "[RUN] Testing grpc_json_token_test"
ctiller09cb6d52014-12-19 17:38:22 -0800567 $(Q) ./bins/$(TGTDIR)/grpc_json_token_test || ( echo test grpc_json_token_test failed ; exit 1 )
ctiller8919f602014-12-10 10:19:42 -0800568 $(E) "[RUN] Testing timeout_encoding_test"
ctiller09cb6d52014-12-19 17:38:22 -0800569 $(Q) ./bins/$(TGTDIR)/timeout_encoding_test || ( echo test timeout_encoding_test failed ; exit 1 )
ctiller8919f602014-12-10 10:19:42 -0800570 $(E) "[RUN] Testing fd_posix_test"
ctiller09cb6d52014-12-19 17:38:22 -0800571 $(Q) ./bins/$(TGTDIR)/fd_posix_test || ( echo test fd_posix_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800572 $(E) "[RUN] Testing fling_stream_test"
ctiller09cb6d52014-12-19 17:38:22 -0800573 $(Q) ./bins/$(TGTDIR)/fling_stream_test || ( echo test fling_stream_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800574 $(E) "[RUN] Testing lame_client_test"
ctiller09cb6d52014-12-19 17:38:22 -0800575 $(Q) ./bins/$(TGTDIR)/lame_client_test || ( echo test lame_client_test failed ; exit 1 )
ctiller8919f602014-12-10 10:19:42 -0800576 $(E) "[RUN] Testing alarm_test"
ctiller09cb6d52014-12-19 17:38:22 -0800577 $(Q) ./bins/$(TGTDIR)/alarm_test || ( echo test alarm_test failed ; exit 1 )
ctiller3bf466f2014-12-19 16:21:57 -0800578 $(E) "[RUN] Testing alarm_list_test"
ctiller09cb6d52014-12-19 17:38:22 -0800579 $(Q) ./bins/$(TGTDIR)/alarm_list_test || ( echo test alarm_list_test failed ; exit 1 )
ctiller3bf466f2014-12-19 16:21:57 -0800580 $(E) "[RUN] Testing alarm_heap_test"
ctiller09cb6d52014-12-19 17:38:22 -0800581 $(Q) ./bins/$(TGTDIR)/alarm_heap_test || ( echo test alarm_heap_test failed ; exit 1 )
ctiller8919f602014-12-10 10:19:42 -0800582 $(E) "[RUN] Testing time_test"
ctiller09cb6d52014-12-19 17:38:22 -0800583 $(Q) ./bins/$(TGTDIR)/time_test || ( echo test time_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800584 $(E) "[RUN] Testing chttp2_fake_security_cancel_after_accept_test"
ctiller09cb6d52014-12-19 17:38:22 -0800585 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_cancel_after_accept_test || ( echo test chttp2_fake_security_cancel_after_accept_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800586 $(E) "[RUN] Testing chttp2_fake_security_cancel_after_accept_and_writes_closed_test"
ctiller09cb6d52014-12-19 17:38:22 -0800587 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_cancel_after_accept_and_writes_closed_test || ( echo test chttp2_fake_security_cancel_after_accept_and_writes_closed_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800588 $(E) "[RUN] Testing chttp2_fake_security_cancel_after_invoke_test"
ctiller09cb6d52014-12-19 17:38:22 -0800589 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_cancel_after_invoke_test || ( echo test chttp2_fake_security_cancel_after_invoke_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800590 $(E) "[RUN] Testing chttp2_fake_security_cancel_before_invoke_test"
ctiller09cb6d52014-12-19 17:38:22 -0800591 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_cancel_before_invoke_test || ( echo test chttp2_fake_security_cancel_before_invoke_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800592 $(E) "[RUN] Testing chttp2_fake_security_cancel_in_a_vacuum_test"
ctiller09cb6d52014-12-19 17:38:22 -0800593 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_cancel_in_a_vacuum_test || ( echo test chttp2_fake_security_cancel_in_a_vacuum_test failed ; exit 1 )
ctillerc6d61c42014-12-15 14:52:08 -0800594 $(E) "[RUN] Testing chttp2_fake_security_disappearing_server_test"
ctiller09cb6d52014-12-19 17:38:22 -0800595 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_disappearing_server_test || ( echo test chttp2_fake_security_disappearing_server_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800596 $(E) "[RUN] Testing chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test"
ctiller09cb6d52014-12-19 17:38:22 -0800597 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test || ( echo test chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800598 $(E) "[RUN] Testing chttp2_fake_security_early_server_shutdown_finishes_tags_test"
ctiller09cb6d52014-12-19 17:38:22 -0800599 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_early_server_shutdown_finishes_tags_test || ( echo test chttp2_fake_security_early_server_shutdown_finishes_tags_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800600 $(E) "[RUN] Testing chttp2_fake_security_invoke_large_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800601 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_invoke_large_request_test || ( echo test chttp2_fake_security_invoke_large_request_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800602 $(E) "[RUN] Testing chttp2_fake_security_max_concurrent_streams_test"
ctiller09cb6d52014-12-19 17:38:22 -0800603 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_max_concurrent_streams_test || ( echo test chttp2_fake_security_max_concurrent_streams_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800604 $(E) "[RUN] Testing chttp2_fake_security_no_op_test"
ctiller09cb6d52014-12-19 17:38:22 -0800605 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_no_op_test || ( echo test chttp2_fake_security_no_op_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800606 $(E) "[RUN] Testing chttp2_fake_security_ping_pong_streaming_test"
ctiller09cb6d52014-12-19 17:38:22 -0800607 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_ping_pong_streaming_test || ( echo test chttp2_fake_security_ping_pong_streaming_test failed ; exit 1 )
ctiller33023c42014-12-12 16:28:33 -0800608 $(E) "[RUN] Testing chttp2_fake_security_request_response_with_binary_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800609 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_request_response_with_binary_metadata_and_payload_test || ( echo test chttp2_fake_security_request_response_with_binary_metadata_and_payload_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800610 $(E) "[RUN] Testing chttp2_fake_security_request_response_with_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800611 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_request_response_with_metadata_and_payload_test || ( echo test chttp2_fake_security_request_response_with_metadata_and_payload_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800612 $(E) "[RUN] Testing chttp2_fake_security_request_response_with_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800613 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_request_response_with_payload_test || ( echo test chttp2_fake_security_request_response_with_payload_test failed ; exit 1 )
ctiller2845cad2014-12-15 15:14:12 -0800614 $(E) "[RUN] Testing chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800615 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test || ( echo test chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800616 $(E) "[RUN] Testing chttp2_fake_security_simple_delayed_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800617 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_simple_delayed_request_test || ( echo test chttp2_fake_security_simple_delayed_request_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800618 $(E) "[RUN] Testing chttp2_fake_security_simple_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800619 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_simple_request_test || ( echo test chttp2_fake_security_simple_request_test failed ; exit 1 )
nathaniel52878172014-12-09 10:17:19 -0800620 $(E) "[RUN] Testing chttp2_fake_security_thread_stress_test"
ctiller09cb6d52014-12-19 17:38:22 -0800621 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_thread_stress_test || ( echo test chttp2_fake_security_thread_stress_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800622 $(E) "[RUN] Testing chttp2_fake_security_writes_done_hangs_with_pending_read_test"
ctiller09cb6d52014-12-19 17:38:22 -0800623 $(Q) ./bins/$(TGTDIR)/chttp2_fake_security_writes_done_hangs_with_pending_read_test || ( echo test chttp2_fake_security_writes_done_hangs_with_pending_read_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800624 $(E) "[RUN] Testing chttp2_fullstack_cancel_after_accept_test"
ctiller09cb6d52014-12-19 17:38:22 -0800625 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_cancel_after_accept_test || ( echo test chttp2_fullstack_cancel_after_accept_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800626 $(E) "[RUN] Testing chttp2_fullstack_cancel_after_accept_and_writes_closed_test"
ctiller09cb6d52014-12-19 17:38:22 -0800627 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_cancel_after_accept_and_writes_closed_test || ( echo test chttp2_fullstack_cancel_after_accept_and_writes_closed_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800628 $(E) "[RUN] Testing chttp2_fullstack_cancel_after_invoke_test"
ctiller09cb6d52014-12-19 17:38:22 -0800629 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_cancel_after_invoke_test || ( echo test chttp2_fullstack_cancel_after_invoke_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800630 $(E) "[RUN] Testing chttp2_fullstack_cancel_before_invoke_test"
ctiller09cb6d52014-12-19 17:38:22 -0800631 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_cancel_before_invoke_test || ( echo test chttp2_fullstack_cancel_before_invoke_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800632 $(E) "[RUN] Testing chttp2_fullstack_cancel_in_a_vacuum_test"
ctiller09cb6d52014-12-19 17:38:22 -0800633 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_cancel_in_a_vacuum_test || ( echo test chttp2_fullstack_cancel_in_a_vacuum_test failed ; exit 1 )
ctillerc6d61c42014-12-15 14:52:08 -0800634 $(E) "[RUN] Testing chttp2_fullstack_disappearing_server_test"
ctiller09cb6d52014-12-19 17:38:22 -0800635 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_disappearing_server_test || ( echo test chttp2_fullstack_disappearing_server_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800636 $(E) "[RUN] Testing chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test"
ctiller09cb6d52014-12-19 17:38:22 -0800637 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test || ( echo test chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800638 $(E) "[RUN] Testing chttp2_fullstack_early_server_shutdown_finishes_tags_test"
ctiller09cb6d52014-12-19 17:38:22 -0800639 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_early_server_shutdown_finishes_tags_test || ( echo test chttp2_fullstack_early_server_shutdown_finishes_tags_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800640 $(E) "[RUN] Testing chttp2_fullstack_invoke_large_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800641 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_invoke_large_request_test || ( echo test chttp2_fullstack_invoke_large_request_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800642 $(E) "[RUN] Testing chttp2_fullstack_max_concurrent_streams_test"
ctiller09cb6d52014-12-19 17:38:22 -0800643 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_max_concurrent_streams_test || ( echo test chttp2_fullstack_max_concurrent_streams_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800644 $(E) "[RUN] Testing chttp2_fullstack_no_op_test"
ctiller09cb6d52014-12-19 17:38:22 -0800645 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_no_op_test || ( echo test chttp2_fullstack_no_op_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800646 $(E) "[RUN] Testing chttp2_fullstack_ping_pong_streaming_test"
ctiller09cb6d52014-12-19 17:38:22 -0800647 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_ping_pong_streaming_test || ( echo test chttp2_fullstack_ping_pong_streaming_test failed ; exit 1 )
ctiller33023c42014-12-12 16:28:33 -0800648 $(E) "[RUN] Testing chttp2_fullstack_request_response_with_binary_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800649 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_request_response_with_binary_metadata_and_payload_test || ( echo test chttp2_fullstack_request_response_with_binary_metadata_and_payload_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800650 $(E) "[RUN] Testing chttp2_fullstack_request_response_with_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800651 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_request_response_with_metadata_and_payload_test || ( echo test chttp2_fullstack_request_response_with_metadata_and_payload_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800652 $(E) "[RUN] Testing chttp2_fullstack_request_response_with_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800653 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_request_response_with_payload_test || ( echo test chttp2_fullstack_request_response_with_payload_test failed ; exit 1 )
ctiller2845cad2014-12-15 15:14:12 -0800654 $(E) "[RUN] Testing chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800655 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test || ( echo test chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800656 $(E) "[RUN] Testing chttp2_fullstack_simple_delayed_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800657 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_simple_delayed_request_test || ( echo test chttp2_fullstack_simple_delayed_request_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800658 $(E) "[RUN] Testing chttp2_fullstack_simple_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800659 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_simple_request_test || ( echo test chttp2_fullstack_simple_request_test failed ; exit 1 )
nathaniel52878172014-12-09 10:17:19 -0800660 $(E) "[RUN] Testing chttp2_fullstack_thread_stress_test"
ctiller09cb6d52014-12-19 17:38:22 -0800661 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_thread_stress_test || ( echo test chttp2_fullstack_thread_stress_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800662 $(E) "[RUN] Testing chttp2_fullstack_writes_done_hangs_with_pending_read_test"
ctiller09cb6d52014-12-19 17:38:22 -0800663 $(Q) ./bins/$(TGTDIR)/chttp2_fullstack_writes_done_hangs_with_pending_read_test || ( echo test chttp2_fullstack_writes_done_hangs_with_pending_read_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800664 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_cancel_after_accept_test"
ctiller09cb6d52014-12-19 17:38:22 -0800665 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_accept_test || ( echo test chttp2_simple_ssl_fullstack_cancel_after_accept_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800666 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test"
ctiller09cb6d52014-12-19 17:38:22 -0800667 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test || ( echo test chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800668 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_cancel_after_invoke_test"
ctiller09cb6d52014-12-19 17:38:22 -0800669 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_invoke_test || ( echo test chttp2_simple_ssl_fullstack_cancel_after_invoke_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800670 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_cancel_before_invoke_test"
ctiller09cb6d52014-12-19 17:38:22 -0800671 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_before_invoke_test || ( echo test chttp2_simple_ssl_fullstack_cancel_before_invoke_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800672 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test"
ctiller09cb6d52014-12-19 17:38:22 -0800673 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test || ( echo test chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test failed ; exit 1 )
ctillerc6d61c42014-12-15 14:52:08 -0800674 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_disappearing_server_test"
ctiller09cb6d52014-12-19 17:38:22 -0800675 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_disappearing_server_test || ( echo test chttp2_simple_ssl_fullstack_disappearing_server_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800676 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test"
ctiller09cb6d52014-12-19 17:38:22 -0800677 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test || ( echo test chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800678 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test"
ctiller09cb6d52014-12-19 17:38:22 -0800679 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test || ( echo test chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800680 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_invoke_large_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800681 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_invoke_large_request_test || ( echo test chttp2_simple_ssl_fullstack_invoke_large_request_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800682 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_max_concurrent_streams_test"
ctiller09cb6d52014-12-19 17:38:22 -0800683 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_max_concurrent_streams_test || ( echo test chttp2_simple_ssl_fullstack_max_concurrent_streams_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800684 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_no_op_test"
ctiller09cb6d52014-12-19 17:38:22 -0800685 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_no_op_test || ( echo test chttp2_simple_ssl_fullstack_no_op_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800686 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_ping_pong_streaming_test"
ctiller09cb6d52014-12-19 17:38:22 -0800687 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_ping_pong_streaming_test || ( echo test chttp2_simple_ssl_fullstack_ping_pong_streaming_test failed ; exit 1 )
ctiller33023c42014-12-12 16:28:33 -0800688 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800689 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test || ( echo test chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800690 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800691 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test || ( echo test chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800692 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_request_response_with_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800693 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_payload_test || ( echo test chttp2_simple_ssl_fullstack_request_response_with_payload_test failed ; exit 1 )
ctiller2845cad2014-12-15 15:14:12 -0800694 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800695 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test || ( echo test chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800696 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_simple_delayed_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800697 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_simple_delayed_request_test || ( echo test chttp2_simple_ssl_fullstack_simple_delayed_request_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800698 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_simple_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800699 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_simple_request_test || ( echo test chttp2_simple_ssl_fullstack_simple_request_test failed ; exit 1 )
nathaniel52878172014-12-09 10:17:19 -0800700 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_thread_stress_test"
ctiller09cb6d52014-12-19 17:38:22 -0800701 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_thread_stress_test || ( echo test chttp2_simple_ssl_fullstack_thread_stress_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800702 $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test"
ctiller09cb6d52014-12-19 17:38:22 -0800703 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test || ( echo test chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800704 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test"
ctiller09cb6d52014-12-19 17:38:22 -0800705 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800706 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test"
ctiller09cb6d52014-12-19 17:38:22 -0800707 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800708 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test"
ctiller09cb6d52014-12-19 17:38:22 -0800709 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800710 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test"
ctiller09cb6d52014-12-19 17:38:22 -0800711 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800712 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test"
ctiller09cb6d52014-12-19 17:38:22 -0800713 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test failed ; exit 1 )
ctillerc6d61c42014-12-15 14:52:08 -0800714 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test"
ctiller09cb6d52014-12-19 17:38:22 -0800715 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800716 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test"
ctiller09cb6d52014-12-19 17:38:22 -0800717 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800718 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test"
ctiller09cb6d52014-12-19 17:38:22 -0800719 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800720 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800721 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800722 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test"
ctiller09cb6d52014-12-19 17:38:22 -0800723 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800724 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_no_op_test"
ctiller09cb6d52014-12-19 17:38:22 -0800725 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_no_op_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_no_op_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800726 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test"
ctiller09cb6d52014-12-19 17:38:22 -0800727 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test failed ; exit 1 )
ctiller33023c42014-12-12 16:28:33 -0800728 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800729 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800730 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800731 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800732 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800733 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test failed ; exit 1 )
ctiller2845cad2014-12-15 15:14:12 -0800734 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800735 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800736 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800737 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800738 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800739 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test failed ; exit 1 )
nathaniel52878172014-12-09 10:17:19 -0800740 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test"
ctiller09cb6d52014-12-19 17:38:22 -0800741 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800742 $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test"
ctiller09cb6d52014-12-19 17:38:22 -0800743 $(Q) ./bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800744 $(E) "[RUN] Testing chttp2_socket_pair_cancel_after_accept_test"
ctiller09cb6d52014-12-19 17:38:22 -0800745 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_accept_test || ( echo test chttp2_socket_pair_cancel_after_accept_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800746 $(E) "[RUN] Testing chttp2_socket_pair_cancel_after_accept_and_writes_closed_test"
ctiller09cb6d52014-12-19 17:38:22 -0800747 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_accept_and_writes_closed_test || ( echo test chttp2_socket_pair_cancel_after_accept_and_writes_closed_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800748 $(E) "[RUN] Testing chttp2_socket_pair_cancel_after_invoke_test"
ctiller09cb6d52014-12-19 17:38:22 -0800749 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_invoke_test || ( echo test chttp2_socket_pair_cancel_after_invoke_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800750 $(E) "[RUN] Testing chttp2_socket_pair_cancel_before_invoke_test"
ctiller09cb6d52014-12-19 17:38:22 -0800751 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_cancel_before_invoke_test || ( echo test chttp2_socket_pair_cancel_before_invoke_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800752 $(E) "[RUN] Testing chttp2_socket_pair_cancel_in_a_vacuum_test"
ctiller09cb6d52014-12-19 17:38:22 -0800753 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_cancel_in_a_vacuum_test || ( echo test chttp2_socket_pair_cancel_in_a_vacuum_test failed ; exit 1 )
ctillerc6d61c42014-12-15 14:52:08 -0800754 $(E) "[RUN] Testing chttp2_socket_pair_disappearing_server_test"
ctiller09cb6d52014-12-19 17:38:22 -0800755 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_disappearing_server_test || ( echo test chttp2_socket_pair_disappearing_server_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800756 $(E) "[RUN] Testing chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test"
ctiller09cb6d52014-12-19 17:38:22 -0800757 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test || ( echo test chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800758 $(E) "[RUN] Testing chttp2_socket_pair_early_server_shutdown_finishes_tags_test"
ctiller09cb6d52014-12-19 17:38:22 -0800759 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_early_server_shutdown_finishes_tags_test || ( echo test chttp2_socket_pair_early_server_shutdown_finishes_tags_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800760 $(E) "[RUN] Testing chttp2_socket_pair_invoke_large_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800761 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_invoke_large_request_test || ( echo test chttp2_socket_pair_invoke_large_request_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800762 $(E) "[RUN] Testing chttp2_socket_pair_max_concurrent_streams_test"
ctiller09cb6d52014-12-19 17:38:22 -0800763 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_max_concurrent_streams_test || ( echo test chttp2_socket_pair_max_concurrent_streams_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800764 $(E) "[RUN] Testing chttp2_socket_pair_no_op_test"
ctiller09cb6d52014-12-19 17:38:22 -0800765 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_no_op_test || ( echo test chttp2_socket_pair_no_op_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800766 $(E) "[RUN] Testing chttp2_socket_pair_ping_pong_streaming_test"
ctiller09cb6d52014-12-19 17:38:22 -0800767 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_ping_pong_streaming_test || ( echo test chttp2_socket_pair_ping_pong_streaming_test failed ; exit 1 )
ctiller33023c42014-12-12 16:28:33 -0800768 $(E) "[RUN] Testing chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800769 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test || ( echo test chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800770 $(E) "[RUN] Testing chttp2_socket_pair_request_response_with_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800771 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_metadata_and_payload_test || ( echo test chttp2_socket_pair_request_response_with_metadata_and_payload_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800772 $(E) "[RUN] Testing chttp2_socket_pair_request_response_with_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800773 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_payload_test || ( echo test chttp2_socket_pair_request_response_with_payload_test failed ; exit 1 )
ctiller2845cad2014-12-15 15:14:12 -0800774 $(E) "[RUN] Testing chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800775 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test || ( echo test chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800776 $(E) "[RUN] Testing chttp2_socket_pair_simple_delayed_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800777 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_simple_delayed_request_test || ( echo test chttp2_socket_pair_simple_delayed_request_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800778 $(E) "[RUN] Testing chttp2_socket_pair_simple_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800779 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_simple_request_test || ( echo test chttp2_socket_pair_simple_request_test failed ; exit 1 )
nathaniel52878172014-12-09 10:17:19 -0800780 $(E) "[RUN] Testing chttp2_socket_pair_thread_stress_test"
ctiller09cb6d52014-12-19 17:38:22 -0800781 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_thread_stress_test || ( echo test chttp2_socket_pair_thread_stress_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800782 $(E) "[RUN] Testing chttp2_socket_pair_writes_done_hangs_with_pending_read_test"
ctiller09cb6d52014-12-19 17:38:22 -0800783 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_writes_done_hangs_with_pending_read_test || ( echo test chttp2_socket_pair_writes_done_hangs_with_pending_read_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800784 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test"
ctiller09cb6d52014-12-19 17:38:22 -0800785 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800786 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test"
ctiller09cb6d52014-12-19 17:38:22 -0800787 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800788 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test"
ctiller09cb6d52014-12-19 17:38:22 -0800789 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800790 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test"
ctiller09cb6d52014-12-19 17:38:22 -0800791 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800792 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test"
ctiller09cb6d52014-12-19 17:38:22 -0800793 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test failed ; exit 1 )
ctillerc6d61c42014-12-15 14:52:08 -0800794 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test"
ctiller09cb6d52014-12-19 17:38:22 -0800795 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800796 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test"
ctiller09cb6d52014-12-19 17:38:22 -0800797 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800798 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test"
ctiller09cb6d52014-12-19 17:38:22 -0800799 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800800 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800801 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800802 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test"
ctiller09cb6d52014-12-19 17:38:22 -0800803 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800804 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_no_op_test"
ctiller09cb6d52014-12-19 17:38:22 -0800805 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_no_op_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_no_op_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800806 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test"
ctiller09cb6d52014-12-19 17:38:22 -0800807 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test failed ; exit 1 )
ctiller33023c42014-12-12 16:28:33 -0800808 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800809 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800810 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800811 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800812 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800813 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test failed ; exit 1 )
ctiller2845cad2014-12-15 15:14:12 -0800814 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test"
ctiller09cb6d52014-12-19 17:38:22 -0800815 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800816 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800817 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800818 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_simple_request_test"
ctiller09cb6d52014-12-19 17:38:22 -0800819 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_simple_request_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_simple_request_test failed ; exit 1 )
nathaniel52878172014-12-09 10:17:19 -0800820 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_thread_stress_test"
ctiller09cb6d52014-12-19 17:38:22 -0800821 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_thread_stress_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_thread_stress_test failed ; exit 1 )
nnoble0c475f02014-12-05 15:37:39 -0800822 $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test"
ctiller09cb6d52014-12-19 17:38:22 -0800823 $(Q) ./bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test failed ; exit 1 )
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800824
825
nnoble85a49262014-12-08 18:14:03 -0800826test_cxx: buildtests_cxx
nnoble29e1d292014-12-01 10:27:40 -0800827 $(E) "[RUN] Testing thread_pool_test"
ctiller09cb6d52014-12-19 17:38:22 -0800828 $(Q) ./bins/$(TGTDIR)/thread_pool_test || ( echo test thread_pool_test failed ; exit 1 )
nnoble29e1d292014-12-01 10:27:40 -0800829 $(E) "[RUN] Testing status_test"
ctiller09cb6d52014-12-19 17:38:22 -0800830 $(Q) ./bins/$(TGTDIR)/status_test || ( echo test status_test failed ; exit 1 )
ctiller8919f602014-12-10 10:19:42 -0800831 $(E) "[RUN] Testing sync_client_async_server_test"
ctiller09cb6d52014-12-19 17:38:22 -0800832 $(Q) ./bins/$(TGTDIR)/sync_client_async_server_test || ( echo test sync_client_async_server_test failed ; exit 1 )
ctiller8919f602014-12-10 10:19:42 -0800833 $(E) "[RUN] Testing qps_client"
ctiller09cb6d52014-12-19 17:38:22 -0800834 $(Q) ./bins/$(TGTDIR)/qps_client || ( echo test qps_client failed ; exit 1 )
ctiller8919f602014-12-10 10:19:42 -0800835 $(E) "[RUN] Testing qps_server"
ctiller09cb6d52014-12-19 17:38:22 -0800836 $(Q) ./bins/$(TGTDIR)/qps_server || ( echo test qps_server failed ; exit 1 )
ctiller8919f602014-12-10 10:19:42 -0800837 $(E) "[RUN] Testing end2end_test"
ctiller09cb6d52014-12-19 17:38:22 -0800838 $(Q) ./bins/$(TGTDIR)/end2end_test || ( echo test end2end_test failed ; exit 1 )
yangg59dfc902014-12-19 14:00:14 -0800839 $(E) "[RUN] Testing channel_arguments_test"
ctiller09cb6d52014-12-19 17:38:22 -0800840 $(Q) ./bins/$(TGTDIR)/channel_arguments_test || ( echo test channel_arguments_test failed ; exit 1 )
nnoble29e1d292014-12-01 10:27:40 -0800841
842
ctiller09cb6d52014-12-19 17:38:22 -0800843tools: privatelibs bins/$(TGTDIR)/gen_hpack_tables bins/$(TGTDIR)/grpc_fetch_oauth2
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800844
ctiller09cb6d52014-12-19 17:38:22 -0800845protoc_plugins: bins/$(TGTDIR)/cpp_plugin bins/$(TGTDIR)/ruby_plugin
nnobleebebb7e2014-12-10 16:31:01 -0800846
ctiller09cb6d52014-12-19 17:38:22 -0800847buildbenchmarks: privatelibs bins/$(TGTDIR)/grpc_completion_queue_benchmark bins/$(TGTDIR)/low_level_ping_pong_benchmark
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800848
849benchmarks: buildbenchmarks
850
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800851strip: strip-static strip-shared
852
nnoble20e2e3f2014-12-16 15:37:57 -0800853strip-static: strip-static_c strip-static_cxx
854
855strip-shared: strip-shared_c strip-shared_cxx
856
nnoble85a49262014-12-08 18:14:03 -0800857strip-static_c: static_c
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800858 $(E) "[STRIP] Stripping libgpr.a"
ctiller09cb6d52014-12-19 17:38:22 -0800859 $(Q) $(STRIP) libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800860 $(E) "[STRIP] Stripping libgrpc.a"
ctiller09cb6d52014-12-19 17:38:22 -0800861 $(Q) $(STRIP) libs/$(TGTDIR)/libgrpc.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800862 $(E) "[STRIP] Stripping libgrpc_unsecure.a"
ctiller09cb6d52014-12-19 17:38:22 -0800863 $(Q) $(STRIP) libs/$(TGTDIR)/libgrpc_unsecure.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800864
nnoble85a49262014-12-08 18:14:03 -0800865strip-static_cxx: static_cxx
866 $(E) "[STRIP] Stripping libgrpc++.a"
ctiller09cb6d52014-12-19 17:38:22 -0800867 $(Q) $(STRIP) libs/$(TGTDIR)/libgrpc++.a
nnoble85a49262014-12-08 18:14:03 -0800868
869strip-shared_c: shared_c
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800870 $(E) "[STRIP] Stripping libgpr.so"
nnoble5b7f32a2014-12-22 08:12:44 -0800871 $(Q) $(STRIP) libs/$(TGTDIR)/libgpr.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800872 $(E) "[STRIP] Stripping libgrpc.so"
nnoble5b7f32a2014-12-22 08:12:44 -0800873 $(Q) $(STRIP) libs/$(TGTDIR)/libgrpc.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800874 $(E) "[STRIP] Stripping libgrpc_unsecure.so"
nnoble5b7f32a2014-12-22 08:12:44 -0800875 $(Q) $(STRIP) libs/$(TGTDIR)/libgrpc_unsecure.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800876
nnoble85a49262014-12-08 18:14:03 -0800877strip-shared_cxx: shared_cxx
878 $(E) "[STRIP] Stripping libgrpc++.so"
nnoble5b7f32a2014-12-22 08:12:44 -0800879 $(Q) $(STRIP) libs/$(TGTDIR)/libgrpc++.$(SHARED_EXT)
nnoble85a49262014-12-08 18:14:03 -0800880
ctiller09cb6d52014-12-19 17:38:22 -0800881deps/$(TGTDIR)/gens/test/cpp/interop/empty.pb.dep:
nnoble72309c62014-12-12 11:42:26 -0800882 $(Q) mkdir -p `dirname $@`
883 $(Q) touch $@
884
885gens/test/cpp/interop/empty.pb.cc: test/cpp/interop/empty.proto protoc_plugins
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800886 $(E) "[PROTOC] Generating protobuf CC file from $<"
887 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -0800888 $(Q) $(PROTOC) --cpp_out=gens --grpc_out=gens --plugin=protoc-gen-grpc=bins/$(TGTDIR)/cpp_plugin $<
nnoble72309c62014-12-12 11:42:26 -0800889
ctiller09cb6d52014-12-19 17:38:22 -0800890deps/$(TGTDIR)/gens/test/cpp/interop/messages.pb.dep:
nnoble72309c62014-12-12 11:42:26 -0800891 $(Q) mkdir -p `dirname $@`
892 $(Q) touch $@
893
894gens/test/cpp/interop/messages.pb.cc: test/cpp/interop/messages.proto protoc_plugins
895 $(E) "[PROTOC] Generating protobuf CC file from $<"
896 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -0800897 $(Q) $(PROTOC) --cpp_out=gens --grpc_out=gens --plugin=protoc-gen-grpc=bins/$(TGTDIR)/cpp_plugin $<
nnoble72309c62014-12-12 11:42:26 -0800898
ctiller09cb6d52014-12-19 17:38:22 -0800899deps/$(TGTDIR)/gens/test/cpp/interop/test.pb.dep:
nnoble72309c62014-12-12 11:42:26 -0800900 $(Q) mkdir -p `dirname $@`
901 $(Q) touch $@
902
903gens/test/cpp/interop/test.pb.cc: test/cpp/interop/test.proto protoc_plugins
904 $(E) "[PROTOC] Generating protobuf CC file from $<"
905 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -0800906 $(Q) $(PROTOC) --cpp_out=gens --grpc_out=gens --plugin=protoc-gen-grpc=bins/$(TGTDIR)/cpp_plugin $<
nnoble72309c62014-12-12 11:42:26 -0800907
ctiller09cb6d52014-12-19 17:38:22 -0800908deps/$(TGTDIR)/gens/test/cpp/util/echo.pb.dep:
nnoble72309c62014-12-12 11:42:26 -0800909 $(Q) mkdir -p `dirname $@`
910 $(Q) touch $@
911
912gens/test/cpp/util/echo.pb.cc: test/cpp/util/echo.proto protoc_plugins
913 $(E) "[PROTOC] Generating protobuf CC file from $<"
914 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -0800915 $(Q) $(PROTOC) --cpp_out=gens --grpc_out=gens --plugin=protoc-gen-grpc=bins/$(TGTDIR)/cpp_plugin $<
nnoble72309c62014-12-12 11:42:26 -0800916
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800917
ctiller09cb6d52014-12-19 17:38:22 -0800918deps/$(TGTDIR)/%.dep : %.c
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800919 $(E) "[DEP] Generating dependencies for $<"
920 $(Q) mkdir -p `dirname $@`
921 $(Q) $(CC) $(CFLAGS) $(CPPFLAGS_NO_ARCH) -MG -M $< > $@
922
ctiller09cb6d52014-12-19 17:38:22 -0800923deps/$(TGTDIR)/%.dep : %.cc
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800924 $(E) "[DEP] Generating dependencies for $<"
925 $(Q) mkdir -p `dirname $@`
926 $(Q) $(CXX) $(CXXFLAGS) $(CPPFLAGS_NO_ARCH) -MG -M $< > $@
927
ctiller09cb6d52014-12-19 17:38:22 -0800928objs/$(TGTDIR)/%.o : %.c
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800929 $(E) "[C] Compiling $<"
930 $(Q) mkdir -p `dirname $@`
931 $(Q) $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
932
ctiller09cb6d52014-12-19 17:38:22 -0800933objs/$(TGTDIR)/%.o : gens/%.pb.cc
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800934 $(E) "[CXX] Compiling $<"
935 $(Q) mkdir -p `dirname $@`
936 $(Q) $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -o $@ $<
937
ctiller09cb6d52014-12-19 17:38:22 -0800938objs/$(TGTDIR)/src/compiler/%.o : src/compiler/%.cc
nnoble72309c62014-12-12 11:42:26 -0800939 $(E) "[HOSTCXX] Compiling $<"
940 $(Q) mkdir -p `dirname $@`
941 $(Q) $(HOST_CXX) $(HOST_CXXFLAGS) $(HOST_CPPFLAGS) -c -o $@ $<
942
ctiller09cb6d52014-12-19 17:38:22 -0800943objs/$(TGTDIR)/%.o : %.cc
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800944 $(E) "[CXX] Compiling $<"
945 $(Q) mkdir -p `dirname $@`
946 $(Q) $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -o $@ $<
947
nnoble0c475f02014-12-05 15:37:39 -0800948dep: dep_c dep_cxx
949
nnoblec87b1c52015-01-05 17:15:18 -0800950dep_c: deps_libgpr deps_libgrpc deps_libgrpc_unsecure deps_libgrpc_test_util deps_libend2end_fixture_chttp2_fake_security deps_libend2end_fixture_chttp2_fullstack deps_libend2end_fixture_chttp2_simple_ssl_fullstack deps_libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack deps_libend2end_fixture_chttp2_socket_pair deps_libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time deps_libend2end_test_cancel_after_accept deps_libend2end_test_cancel_after_accept_and_writes_closed deps_libend2end_test_cancel_after_invoke deps_libend2end_test_cancel_before_invoke deps_libend2end_test_cancel_in_a_vacuum deps_libend2end_test_disappearing_server deps_libend2end_test_early_server_shutdown_finishes_inflight_calls deps_libend2end_test_early_server_shutdown_finishes_tags deps_libend2end_test_invoke_large_request deps_libend2end_test_max_concurrent_streams deps_libend2end_test_no_op deps_libend2end_test_ping_pong_streaming deps_libend2end_test_request_response_with_binary_metadata_and_payload deps_libend2end_test_request_response_with_metadata_and_payload deps_libend2end_test_request_response_with_payload deps_libend2end_test_request_response_with_trailing_metadata_and_payload deps_libend2end_test_simple_delayed_request deps_libend2end_test_simple_request deps_libend2end_test_thread_stress deps_libend2end_test_writes_done_hangs_with_pending_read deps_libend2end_certs
nnoble0c475f02014-12-05 15:37:39 -0800951
ctiller3bf466f2014-12-19 16:21:57 -0800952bins_dep_c: deps_gen_hpack_tables deps_grpc_byte_buffer_reader_test deps_gpr_cancellable_test deps_gpr_log_test deps_gpr_useful_test deps_gpr_cmdline_test deps_gpr_histogram_test deps_gpr_host_port_test deps_gpr_slice_buffer_test deps_gpr_slice_test deps_gpr_string_test deps_gpr_sync_test deps_gpr_thd_test deps_gpr_time_test deps_murmur_hash_test deps_grpc_stream_op_test deps_alpn_test deps_time_averaged_stats_test deps_chttp2_stream_encoder_test deps_hpack_table_test deps_chttp2_stream_map_test deps_hpack_parser_test deps_transport_metadata_test deps_chttp2_status_conversion_test deps_chttp2_transport_end2end_test deps_tcp_posix_test deps_dualstack_socket_test deps_no_server_test deps_resolve_address_test deps_sockaddr_utils_test deps_tcp_server_posix_test deps_tcp_client_posix_test deps_grpc_channel_stack_test deps_metadata_buffer_test deps_grpc_completion_queue_test deps_grpc_completion_queue_benchmark deps_census_window_stats_test deps_census_statistics_quick_test deps_census_statistics_small_log_test deps_census_statistics_performance_test deps_census_statistics_multiple_writers_test deps_census_statistics_multiple_writers_circular_buffer_test deps_census_stub_test deps_census_hash_table_test deps_fling_server deps_fling_client deps_fling_test deps_echo_server deps_echo_client deps_echo_test deps_low_level_ping_pong_benchmark deps_message_compress_test deps_bin_encoder_test deps_secure_endpoint_test deps_httpcli_format_request_test deps_httpcli_parser_test deps_httpcli_test deps_grpc_credentials_test deps_grpc_fetch_oauth2 deps_grpc_base64_test deps_grpc_json_token_test deps_timeout_encoding_test deps_fd_posix_test deps_fling_stream_test deps_lame_client_test deps_alarm_test deps_alarm_list_test deps_alarm_heap_test deps_time_test deps_chttp2_fake_security_cancel_after_accept_test deps_chttp2_fake_security_cancel_after_accept_and_writes_closed_test deps_chttp2_fake_security_cancel_after_invoke_test deps_chttp2_fake_security_cancel_before_invoke_test deps_chttp2_fake_security_cancel_in_a_vacuum_test deps_chttp2_fake_security_disappearing_server_test deps_chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test deps_chttp2_fake_security_early_server_shutdown_finishes_tags_test deps_chttp2_fake_security_invoke_large_request_test deps_chttp2_fake_security_max_concurrent_streams_test deps_chttp2_fake_security_no_op_test deps_chttp2_fake_security_ping_pong_streaming_test deps_chttp2_fake_security_request_response_with_binary_metadata_and_payload_test deps_chttp2_fake_security_request_response_with_metadata_and_payload_test deps_chttp2_fake_security_request_response_with_payload_test deps_chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test deps_chttp2_fake_security_simple_delayed_request_test deps_chttp2_fake_security_simple_request_test deps_chttp2_fake_security_thread_stress_test deps_chttp2_fake_security_writes_done_hangs_with_pending_read_test deps_chttp2_fullstack_cancel_after_accept_test deps_chttp2_fullstack_cancel_after_accept_and_writes_closed_test deps_chttp2_fullstack_cancel_after_invoke_test deps_chttp2_fullstack_cancel_before_invoke_test deps_chttp2_fullstack_cancel_in_a_vacuum_test deps_chttp2_fullstack_disappearing_server_test deps_chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test deps_chttp2_fullstack_early_server_shutdown_finishes_tags_test deps_chttp2_fullstack_invoke_large_request_test deps_chttp2_fullstack_max_concurrent_streams_test deps_chttp2_fullstack_no_op_test deps_chttp2_fullstack_ping_pong_streaming_test deps_chttp2_fullstack_request_response_with_binary_metadata_and_payload_test deps_chttp2_fullstack_request_response_with_metadata_and_payload_test deps_chttp2_fullstack_request_response_with_payload_test deps_chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test deps_chttp2_fullstack_simple_delayed_request_test deps_chttp2_fullstack_simple_request_test deps_chttp2_fullstack_thread_stress_test deps_chttp2_fullstack_writes_done_hangs_with_pending_read_test deps_chttp2_simple_ssl_fullstack_cancel_after_accept_test deps_chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test deps_chttp2_simple_ssl_fullstack_cancel_after_invoke_test deps_chttp2_simple_ssl_fullstack_cancel_before_invoke_test deps_chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test deps_chttp2_simple_ssl_fullstack_disappearing_server_test deps_chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test deps_chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test deps_chttp2_simple_ssl_fullstack_invoke_large_request_test deps_chttp2_simple_ssl_fullstack_max_concurrent_streams_test deps_chttp2_simple_ssl_fullstack_no_op_test deps_chttp2_simple_ssl_fullstack_ping_pong_streaming_test deps_chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test deps_chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test deps_chttp2_simple_ssl_fullstack_request_response_with_payload_test deps_chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test deps_chttp2_simple_ssl_fullstack_simple_delayed_request_test deps_chttp2_simple_ssl_fullstack_simple_request_test deps_chttp2_simple_ssl_fullstack_thread_stress_test deps_chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test deps_chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test deps_chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test deps_chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test deps_chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test deps_chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test deps_chttp2_simple_ssl_with_oauth2_fullstack_no_op_test deps_chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test deps_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test deps_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test deps_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test deps_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test deps_chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test deps_chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test deps_chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test deps_chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test deps_chttp2_socket_pair_cancel_after_accept_test deps_chttp2_socket_pair_cancel_after_accept_and_writes_closed_test deps_chttp2_socket_pair_cancel_after_invoke_test deps_chttp2_socket_pair_cancel_before_invoke_test deps_chttp2_socket_pair_cancel_in_a_vacuum_test deps_chttp2_socket_pair_disappearing_server_test deps_chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test deps_chttp2_socket_pair_early_server_shutdown_finishes_tags_test deps_chttp2_socket_pair_invoke_large_request_test deps_chttp2_socket_pair_max_concurrent_streams_test deps_chttp2_socket_pair_no_op_test deps_chttp2_socket_pair_ping_pong_streaming_test deps_chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test deps_chttp2_socket_pair_request_response_with_metadata_and_payload_test deps_chttp2_socket_pair_request_response_with_payload_test deps_chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test deps_chttp2_socket_pair_simple_delayed_request_test deps_chttp2_socket_pair_simple_request_test deps_chttp2_socket_pair_thread_stress_test deps_chttp2_socket_pair_writes_done_hangs_with_pending_read_test deps_chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test deps_chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test deps_chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test deps_chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test deps_chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test deps_chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test deps_chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test deps_chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test deps_chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test deps_chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test deps_chttp2_socket_pair_one_byte_at_a_time_no_op_test deps_chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test deps_chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test deps_chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test deps_chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test deps_chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test deps_chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test deps_chttp2_socket_pair_one_byte_at_a_time_simple_request_test deps_chttp2_socket_pair_one_byte_at_a_time_thread_stress_test deps_chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test
nnoble69ac39f2014-12-12 15:43:38 -0800953
954dep_cxx: deps_libgrpc++ deps_libgrpc++_test_util
955
yangg59dfc902014-12-19 14:00:14 -0800956bins_dep_cxx: deps_cpp_plugin deps_ruby_plugin deps_thread_pool_test deps_status_test deps_sync_client_async_server_test deps_qps_client deps_qps_server deps_interop_server deps_interop_client deps_end2end_test deps_channel_arguments_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800957
nnoble85a49262014-12-08 18:14:03 -0800958install: install_c install_cxx
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800959
nnoble85a49262014-12-08 18:14:03 -0800960install_c: install-headers_c install-static_c install-shared_c
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800961
nnoble85a49262014-12-08 18:14:03 -0800962install_cxx: install-headers_cxx install-static_cxx install-shared_cxx
963
964install-headers: install-headers_c install-headers_cxx
965
966install-headers_c:
967 $(E) "[INSTALL] Installing public C headers"
968 $(Q) $(foreach h, $(PUBLIC_HEADERS_C), $(INSTALL) $(h) $(prefix)/$(h) && ) exit 0 || exit 1
969
970install-headers_cxx:
971 $(E) "[INSTALL] Installing public C++ headers"
972 $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) $(h) $(prefix)/$(h) && ) exit 0 || exit 1
973
974install-static: install-static_c install-static_cxx
975
976install-static_c: static_c strip-static_c
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800977 $(E) "[INSTALL] Installing libgpr.a"
ctiller09cb6d52014-12-19 17:38:22 -0800978 $(Q) $(INSTALL) libs/$(TGTDIR)/libgpr.a $(prefix)/lib/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800979 $(E) "[INSTALL] Installing libgrpc.a"
ctiller09cb6d52014-12-19 17:38:22 -0800980 $(Q) $(INSTALL) libs/$(TGTDIR)/libgrpc.a $(prefix)/lib/libgrpc.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800981 $(E) "[INSTALL] Installing libgrpc_unsecure.a"
ctiller09cb6d52014-12-19 17:38:22 -0800982 $(Q) $(INSTALL) libs/$(TGTDIR)/libgrpc_unsecure.a $(prefix)/lib/libgrpc_unsecure.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800983
nnoble85a49262014-12-08 18:14:03 -0800984install-static_cxx: static_cxx strip-static_cxx
985 $(E) "[INSTALL] Installing libgrpc++.a"
ctiller09cb6d52014-12-19 17:38:22 -0800986 $(Q) $(INSTALL) libs/$(TGTDIR)/libgrpc++.a $(prefix)/lib/libgrpc++.a
nnoble85a49262014-12-08 18:14:03 -0800987
988install-shared_c: shared_c strip-shared_c
nnoble5b7f32a2014-12-22 08:12:44 -0800989ifeq ($(SYSTEM),MINGW32)
990 $(E) "[INSTALL] Installing gpr.$(SHARED_EXT)"
991 $(Q) $(INSTALL) libs/$(TGTDIR)/gpr.$(SHARED_EXT) $(prefix)/lib/gpr.$(SHARED_EXT)
992 $(Q) $(INSTALL) libs/$(TGTDIR)/libgpr-imp.a $(prefix)/lib/libgpr-imp.a
993else
994 $(E) "[INSTALL] Installing libgpr.$(SHARED_EXT)"
995 $(Q) $(INSTALL) libs/$(TGTDIR)/libgpr.$(SHARED_EXT) $(prefix)/lib/libgpr.$(SHARED_EXT)
996ifneq ($(SYSTEM),Darwin)
997 $(Q) ln -sf libgpr.$(SHARED_EXT) $(prefix)/lib/libgpr.so
998endif
999endif
1000ifeq ($(SYSTEM),MINGW32)
1001 $(E) "[INSTALL] Installing grpc.$(SHARED_EXT)"
1002 $(Q) $(INSTALL) libs/$(TGTDIR)/grpc.$(SHARED_EXT) $(prefix)/lib/grpc.$(SHARED_EXT)
1003 $(Q) $(INSTALL) libs/$(TGTDIR)/libgrpc-imp.a $(prefix)/lib/libgrpc-imp.a
1004else
1005 $(E) "[INSTALL] Installing libgrpc.$(SHARED_EXT)"
1006 $(Q) $(INSTALL) libs/$(TGTDIR)/libgrpc.$(SHARED_EXT) $(prefix)/lib/libgrpc.$(SHARED_EXT)
1007ifneq ($(SYSTEM),Darwin)
1008 $(Q) ln -sf libgrpc.$(SHARED_EXT) $(prefix)/lib/libgrpc.so
1009endif
1010endif
1011ifeq ($(SYSTEM),MINGW32)
1012 $(E) "[INSTALL] Installing grpc_unsecure.$(SHARED_EXT)"
1013 $(Q) $(INSTALL) libs/$(TGTDIR)/grpc_unsecure.$(SHARED_EXT) $(prefix)/lib/grpc_unsecure.$(SHARED_EXT)
1014 $(Q) $(INSTALL) libs/$(TGTDIR)/libgrpc_unsecure-imp.a $(prefix)/lib/libgrpc_unsecure-imp.a
1015else
1016 $(E) "[INSTALL] Installing libgrpc_unsecure.$(SHARED_EXT)"
1017 $(Q) $(INSTALL) libs/$(TGTDIR)/libgrpc_unsecure.$(SHARED_EXT) $(prefix)/lib/libgrpc_unsecure.$(SHARED_EXT)
1018ifneq ($(SYSTEM),Darwin)
1019 $(Q) ln -sf libgrpc_unsecure.$(SHARED_EXT) $(prefix)/lib/libgrpc_unsecure.so
1020endif
1021endif
1022ifneq ($(SYSTEM),MINGW32)
1023ifneq ($(SYSTEM),Darwin)
1024 $(Q) ldconfig
1025endif
1026endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001027
nnoble85a49262014-12-08 18:14:03 -08001028install-shared_cxx: shared_cxx strip-shared_cxx
nnoble5b7f32a2014-12-22 08:12:44 -08001029ifeq ($(SYSTEM),MINGW32)
1030 $(E) "[INSTALL] Installing grpc++.$(SHARED_EXT)"
1031 $(Q) $(INSTALL) libs/$(TGTDIR)/grpc++.$(SHARED_EXT) $(prefix)/lib/grpc++.$(SHARED_EXT)
1032 $(Q) $(INSTALL) libs/$(TGTDIR)/libgrpc++-imp.a $(prefix)/lib/libgrpc++-imp.a
1033else
1034 $(E) "[INSTALL] Installing libgrpc++.$(SHARED_EXT)"
1035 $(Q) $(INSTALL) libs/$(TGTDIR)/libgrpc++.$(SHARED_EXT) $(prefix)/lib/libgrpc++.$(SHARED_EXT)
1036ifneq ($(SYSTEM),Darwin)
1037 $(Q) ln -sf libgrpc++.$(SHARED_EXT) $(prefix)/lib/libgrpc++.so
1038endif
1039endif
1040ifneq ($(SYSTEM),MINGW32)
1041ifneq ($(SYSTEM),Darwin)
1042 $(Q) ldconfig
1043endif
1044endif
nnoble85a49262014-12-08 18:14:03 -08001045
nnoblec87b1c52015-01-05 17:15:18 -08001046clean: clean_libgpr clean_libgrpc clean_libgrpc_unsecure clean_libgrpc_test_util clean_libgrpc++ clean_libgrpc++_test_util clean_libend2end_fixture_chttp2_fake_security clean_libend2end_fixture_chttp2_fullstack clean_libend2end_fixture_chttp2_simple_ssl_fullstack clean_libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack clean_libend2end_fixture_chttp2_socket_pair clean_libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time clean_libend2end_test_cancel_after_accept clean_libend2end_test_cancel_after_accept_and_writes_closed clean_libend2end_test_cancel_after_invoke clean_libend2end_test_cancel_before_invoke clean_libend2end_test_cancel_in_a_vacuum clean_libend2end_test_disappearing_server clean_libend2end_test_early_server_shutdown_finishes_inflight_calls clean_libend2end_test_early_server_shutdown_finishes_tags clean_libend2end_test_invoke_large_request clean_libend2end_test_max_concurrent_streams clean_libend2end_test_no_op clean_libend2end_test_ping_pong_streaming clean_libend2end_test_request_response_with_binary_metadata_and_payload clean_libend2end_test_request_response_with_metadata_and_payload clean_libend2end_test_request_response_with_payload clean_libend2end_test_request_response_with_trailing_metadata_and_payload clean_libend2end_test_simple_delayed_request clean_libend2end_test_simple_request clean_libend2end_test_thread_stress clean_libend2end_test_writes_done_hangs_with_pending_read clean_libend2end_certs clean_gen_hpack_tables clean_cpp_plugin clean_ruby_plugin clean_grpc_byte_buffer_reader_test clean_gpr_cancellable_test clean_gpr_log_test clean_gpr_useful_test clean_gpr_cmdline_test clean_gpr_histogram_test clean_gpr_host_port_test clean_gpr_slice_buffer_test clean_gpr_slice_test clean_gpr_string_test clean_gpr_sync_test clean_gpr_thd_test clean_gpr_time_test clean_murmur_hash_test clean_grpc_stream_op_test clean_alpn_test clean_time_averaged_stats_test clean_chttp2_stream_encoder_test clean_hpack_table_test clean_chttp2_stream_map_test clean_hpack_parser_test clean_transport_metadata_test clean_chttp2_status_conversion_test clean_chttp2_transport_end2end_test clean_tcp_posix_test clean_dualstack_socket_test clean_no_server_test clean_resolve_address_test clean_sockaddr_utils_test clean_tcp_server_posix_test clean_tcp_client_posix_test clean_grpc_channel_stack_test clean_metadata_buffer_test clean_grpc_completion_queue_test clean_grpc_completion_queue_benchmark clean_census_window_stats_test clean_census_statistics_quick_test clean_census_statistics_small_log_test clean_census_statistics_performance_test clean_census_statistics_multiple_writers_test clean_census_statistics_multiple_writers_circular_buffer_test clean_census_stub_test clean_census_hash_table_test clean_fling_server clean_fling_client clean_fling_test clean_echo_server clean_echo_client clean_echo_test clean_low_level_ping_pong_benchmark clean_message_compress_test clean_bin_encoder_test clean_secure_endpoint_test clean_httpcli_format_request_test clean_httpcli_parser_test clean_httpcli_test clean_grpc_credentials_test clean_grpc_fetch_oauth2 clean_grpc_base64_test clean_grpc_json_token_test clean_timeout_encoding_test clean_fd_posix_test clean_fling_stream_test clean_lame_client_test clean_thread_pool_test clean_status_test clean_sync_client_async_server_test clean_qps_client clean_qps_server clean_interop_server clean_interop_client clean_end2end_test clean_channel_arguments_test clean_alarm_test clean_alarm_list_test clean_alarm_heap_test clean_time_test clean_chttp2_fake_security_cancel_after_accept_test clean_chttp2_fake_security_cancel_after_accept_and_writes_closed_test clean_chttp2_fake_security_cancel_after_invoke_test clean_chttp2_fake_security_cancel_before_invoke_test clean_chttp2_fake_security_cancel_in_a_vacuum_test clean_chttp2_fake_security_disappearing_server_test clean_chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test clean_chttp2_fake_security_early_server_shutdown_finishes_tags_test clean_chttp2_fake_security_invoke_large_request_test clean_chttp2_fake_security_max_concurrent_streams_test clean_chttp2_fake_security_no_op_test clean_chttp2_fake_security_ping_pong_streaming_test clean_chttp2_fake_security_request_response_with_binary_metadata_and_payload_test clean_chttp2_fake_security_request_response_with_metadata_and_payload_test clean_chttp2_fake_security_request_response_with_payload_test clean_chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test clean_chttp2_fake_security_simple_delayed_request_test clean_chttp2_fake_security_simple_request_test clean_chttp2_fake_security_thread_stress_test clean_chttp2_fake_security_writes_done_hangs_with_pending_read_test clean_chttp2_fullstack_cancel_after_accept_test clean_chttp2_fullstack_cancel_after_accept_and_writes_closed_test clean_chttp2_fullstack_cancel_after_invoke_test clean_chttp2_fullstack_cancel_before_invoke_test clean_chttp2_fullstack_cancel_in_a_vacuum_test clean_chttp2_fullstack_disappearing_server_test clean_chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test clean_chttp2_fullstack_early_server_shutdown_finishes_tags_test clean_chttp2_fullstack_invoke_large_request_test clean_chttp2_fullstack_max_concurrent_streams_test clean_chttp2_fullstack_no_op_test clean_chttp2_fullstack_ping_pong_streaming_test clean_chttp2_fullstack_request_response_with_binary_metadata_and_payload_test clean_chttp2_fullstack_request_response_with_metadata_and_payload_test clean_chttp2_fullstack_request_response_with_payload_test clean_chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test clean_chttp2_fullstack_simple_delayed_request_test clean_chttp2_fullstack_simple_request_test clean_chttp2_fullstack_thread_stress_test clean_chttp2_fullstack_writes_done_hangs_with_pending_read_test clean_chttp2_simple_ssl_fullstack_cancel_after_accept_test clean_chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test clean_chttp2_simple_ssl_fullstack_cancel_after_invoke_test clean_chttp2_simple_ssl_fullstack_cancel_before_invoke_test clean_chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test clean_chttp2_simple_ssl_fullstack_disappearing_server_test clean_chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test clean_chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test clean_chttp2_simple_ssl_fullstack_invoke_large_request_test clean_chttp2_simple_ssl_fullstack_max_concurrent_streams_test clean_chttp2_simple_ssl_fullstack_no_op_test clean_chttp2_simple_ssl_fullstack_ping_pong_streaming_test clean_chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test clean_chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test clean_chttp2_simple_ssl_fullstack_request_response_with_payload_test clean_chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test clean_chttp2_simple_ssl_fullstack_simple_delayed_request_test clean_chttp2_simple_ssl_fullstack_simple_request_test clean_chttp2_simple_ssl_fullstack_thread_stress_test clean_chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test clean_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test clean_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test clean_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test clean_chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test clean_chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test clean_chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test clean_chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test clean_chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test clean_chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test clean_chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test clean_chttp2_simple_ssl_with_oauth2_fullstack_no_op_test clean_chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test clean_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test clean_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test clean_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test clean_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test clean_chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test clean_chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test clean_chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test clean_chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test clean_chttp2_socket_pair_cancel_after_accept_test clean_chttp2_socket_pair_cancel_after_accept_and_writes_closed_test clean_chttp2_socket_pair_cancel_after_invoke_test clean_chttp2_socket_pair_cancel_before_invoke_test clean_chttp2_socket_pair_cancel_in_a_vacuum_test clean_chttp2_socket_pair_disappearing_server_test clean_chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test clean_chttp2_socket_pair_early_server_shutdown_finishes_tags_test clean_chttp2_socket_pair_invoke_large_request_test clean_chttp2_socket_pair_max_concurrent_streams_test clean_chttp2_socket_pair_no_op_test clean_chttp2_socket_pair_ping_pong_streaming_test clean_chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test clean_chttp2_socket_pair_request_response_with_metadata_and_payload_test clean_chttp2_socket_pair_request_response_with_payload_test clean_chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test clean_chttp2_socket_pair_simple_delayed_request_test clean_chttp2_socket_pair_simple_request_test clean_chttp2_socket_pair_thread_stress_test clean_chttp2_socket_pair_writes_done_hangs_with_pending_read_test clean_chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test clean_chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test clean_chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test clean_chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test clean_chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test clean_chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test clean_chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test clean_chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test clean_chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test clean_chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test clean_chttp2_socket_pair_one_byte_at_a_time_no_op_test clean_chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test clean_chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test clean_chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test clean_chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test clean_chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test clean_chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test clean_chttp2_socket_pair_one_byte_at_a_time_simple_request_test clean_chttp2_socket_pair_one_byte_at_a_time_thread_stress_test clean_chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001047 $(Q) $(RM) -r deps objs libs bins gens
1048
1049
1050# The various libraries
1051
1052
1053LIBGPR_SRC = \
1054 src/core/support/alloc.c \
1055 src/core/support/cancellable.c \
1056 src/core/support/cmdline.c \
ctillerd94ad102014-12-23 08:53:43 -08001057 src/core/support/cpu_linux.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001058 src/core/support/cpu_posix.c \
1059 src/core/support/histogram.c \
1060 src/core/support/host_port.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001061 src/core/support/log_android.c \
ctiller2bbb6c42014-12-17 09:44:44 -08001062 src/core/support/log.c \
1063 src/core/support/log_linux.c \
1064 src/core/support/log_posix.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001065 src/core/support/log_win32.c \
1066 src/core/support/murmur_hash.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001067 src/core/support/slice_buffer.c \
ctiller2bbb6c42014-12-17 09:44:44 -08001068 src/core/support/slice.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001069 src/core/support/string.c \
1070 src/core/support/string_posix.c \
nnoble0c475f02014-12-05 15:37:39 -08001071 src/core/support/string_win32.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001072 src/core/support/sync.c \
1073 src/core/support/sync_posix.c \
jtattermusch98bffb72014-12-09 12:47:19 -08001074 src/core/support/sync_win32.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001075 src/core/support/thd_posix.c \
1076 src/core/support/thd_win32.c \
1077 src/core/support/time.c \
1078 src/core/support/time_posix.c \
1079 src/core/support/time_win32.c \
1080
nnoble85a49262014-12-08 18:14:03 -08001081PUBLIC_HEADERS_C += \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001082 include/grpc/support/alloc.h \
1083 include/grpc/support/atm_gcc_atomic.h \
1084 include/grpc/support/atm_gcc_sync.h \
1085 include/grpc/support/atm.h \
1086 include/grpc/support/atm_win32.h \
1087 include/grpc/support/cancellable_platform.h \
1088 include/grpc/support/cmdline.h \
1089 include/grpc/support/histogram.h \
1090 include/grpc/support/host_port.h \
1091 include/grpc/support/log.h \
1092 include/grpc/support/port_platform.h \
1093 include/grpc/support/slice_buffer.h \
1094 include/grpc/support/slice.h \
1095 include/grpc/support/string.h \
1096 include/grpc/support/sync_generic.h \
1097 include/grpc/support/sync.h \
1098 include/grpc/support/sync_posix.h \
1099 include/grpc/support/sync_win32.h \
1100 include/grpc/support/thd.h \
1101 include/grpc/support/thd_posix.h \
1102 include/grpc/support/thd_win32.h \
1103 include/grpc/support/time.h \
1104 include/grpc/support/time_posix.h \
1105 include/grpc/support/time_win32.h \
1106 include/grpc/support/useful.h \
1107
ctiller09cb6d52014-12-19 17:38:22 -08001108LIBGPR_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBGPR_SRC))))
1109LIBGPR_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBGPR_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001110
ctiller09cb6d52014-12-19 17:38:22 -08001111libs/$(TGTDIR)/libgpr.a: $(LIBGPR_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001112 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08001113 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08001114 $(Q) $(AR) rcs libs/$(TGTDIR)/libgpr.a $(LIBGPR_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001115
nnoble5b7f32a2014-12-22 08:12:44 -08001116
1117
1118ifeq ($(SYSTEM),MINGW32)
1119libs/$(TGTDIR)/gpr.$(SHARED_EXT): $(LIBGPR_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001120 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08001121 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08001122 $(Q) $(LD) $(LDFLAGS) -Llibs/$(TGTDIR) -shared -Wl,--output-def=libs/$(TGTDIR)/gpr.def -Wl,--out-implib=libs/$(TGTDIR)/libgpr-imp.a -o libs/$(TGTDIR)/gpr.$(SHARED_EXT) $(LIBGPR_OBJS) $(LDLIBS)
1123else
1124libs/$(TGTDIR)/libgpr.$(SHARED_EXT): $(LIBGPR_OBJS)
1125 $(E) "[LD] Linking $@"
1126 $(Q) mkdir -p `dirname $@`
1127ifeq ($(SYSTEM),Darwin)
1128 $(Q) $(LD) $(LDFLAGS) -Llibs/$(TGTDIR) -dynamiclib -o libs/$(TGTDIR)/libgpr.$(SHARED_EXT) $(LIBGPR_OBJS) $(LDLIBS)
1129else
1130 $(Q) $(LD) $(LDFLAGS) -Llibs/$(TGTDIR) -shared -Wl,-soname,libgpr.so.0 -o libs/$(TGTDIR)/libgpr.$(SHARED_EXT) $(LIBGPR_OBJS) $(LDLIBS)
1131 $(Q) ln -sf libgpr.$(SHARED_EXT) libs/$(TGTDIR)/libgpr.so
1132endif
1133endif
1134
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001135
1136deps_libgpr: $(LIBGPR_DEPS)
1137
nnoble69ac39f2014-12-12 15:43:38 -08001138ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001139-include $(LIBGPR_DEPS)
1140endif
1141
1142clean_libgpr:
1143 $(E) "[CLEAN] Cleaning libgpr files"
1144 $(Q) $(RM) $(LIBGPR_OBJS)
1145 $(Q) $(RM) $(LIBGPR_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08001146 $(Q) $(RM) libs/$(TGTDIR)/libgpr.a
nnoble5b7f32a2014-12-22 08:12:44 -08001147 $(Q) $(RM) libs/$(TGTDIR)/libgpr.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001148
1149
1150LIBGRPC_SRC = \
nnoblec87b1c52015-01-05 17:15:18 -08001151 src/core/security/auth.c \
1152 src/core/security/base64.c \
1153 src/core/security/credentials.c \
1154 src/core/security/google_root_certs.c \
1155 src/core/security/json_token.c \
1156 src/core/security/secure_endpoint.c \
1157 src/core/security/secure_transport_setup.c \
1158 src/core/security/security_context.c \
1159 src/core/security/server_secure_chttp2.c \
1160 src/core/tsi/fake_transport_security.c \
1161 src/core/tsi/ssl_transport_security.c \
1162 src/core/tsi/transport_security.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001163 src/core/channel/call_op_string.c \
1164 src/core/channel/census_filter.c \
1165 src/core/channel/channel_args.c \
1166 src/core/channel/channel_stack.c \
ctiller82e275f2014-12-12 08:43:28 -08001167 src/core/channel/child_channel.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001168 src/core/channel/client_channel.c \
1169 src/core/channel/client_setup.c \
1170 src/core/channel/connected_channel.c \
1171 src/core/channel/http_client_filter.c \
1172 src/core/channel/http_filter.c \
1173 src/core/channel/http_server_filter.c \
1174 src/core/channel/metadata_buffer.c \
1175 src/core/channel/noop_filter.c \
1176 src/core/compression/algorithm.c \
1177 src/core/compression/message_compress.c \
ctiller18b49ab2014-12-09 14:39:16 -08001178 src/core/httpcli/format_request.c \
1179 src/core/httpcli/httpcli.c \
1180 src/core/httpcli/httpcli_security_context.c \
1181 src/core/httpcli/parser.c \
ctiller52103932014-12-20 09:07:32 -08001182 src/core/iomgr/alarm.c \
1183 src/core/iomgr/alarm_heap.c \
ctiller2bbb6c42014-12-17 09:44:44 -08001184 src/core/iomgr/endpoint.c \
ctiller18b49ab2014-12-09 14:39:16 -08001185 src/core/iomgr/endpoint_pair_posix.c \
1186 src/core/iomgr/iomgr_libevent.c \
1187 src/core/iomgr/iomgr_libevent_use_threads.c \
ctillerd79b4862014-12-17 16:36:59 -08001188 src/core/iomgr/pollset.c \
ctiller18b49ab2014-12-09 14:39:16 -08001189 src/core/iomgr/resolve_address_posix.c \
1190 src/core/iomgr/sockaddr_utils.c \
1191 src/core/iomgr/socket_utils_common_posix.c \
1192 src/core/iomgr/socket_utils_linux.c \
1193 src/core/iomgr/socket_utils_posix.c \
1194 src/core/iomgr/tcp_client_posix.c \
1195 src/core/iomgr/tcp_posix.c \
1196 src/core/iomgr/tcp_server_posix.c \
ctillerc1ddffb2014-12-15 13:08:18 -08001197 src/core/iomgr/time_averaged_stats.c \
ctiller18b49ab2014-12-09 14:39:16 -08001198 src/core/statistics/census_init.c \
ctiller2bbb6c42014-12-17 09:44:44 -08001199 src/core/statistics/census_log.c \
ctiller18b49ab2014-12-09 14:39:16 -08001200 src/core/statistics/census_rpc_stats.c \
1201 src/core/statistics/census_tracing.c \
1202 src/core/statistics/hash_table.c \
ctiller18b49ab2014-12-09 14:39:16 -08001203 src/core/statistics/window_stats.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001204 src/core/surface/byte_buffer.c \
1205 src/core/surface/byte_buffer_reader.c \
1206 src/core/surface/call.c \
1207 src/core/surface/channel.c \
1208 src/core/surface/channel_create.c \
1209 src/core/surface/client.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001210 src/core/surface/completion_queue.c \
1211 src/core/surface/event_string.c \
1212 src/core/surface/init.c \
ctiller18b49ab2014-12-09 14:39:16 -08001213 src/core/surface/lame_client.c \
1214 src/core/surface/secure_channel_create.c \
1215 src/core/surface/secure_server_create.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001216 src/core/surface/server.c \
1217 src/core/surface/server_chttp2.c \
1218 src/core/surface/server_create.c \
nnoble0c475f02014-12-05 15:37:39 -08001219 src/core/transport/chttp2/alpn.c \
1220 src/core/transport/chttp2/bin_encoder.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001221 src/core/transport/chttp2/frame_data.c \
nnoble0c475f02014-12-05 15:37:39 -08001222 src/core/transport/chttp2/frame_goaway.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001223 src/core/transport/chttp2/frame_ping.c \
1224 src/core/transport/chttp2/frame_rst_stream.c \
1225 src/core/transport/chttp2/frame_settings.c \
1226 src/core/transport/chttp2/frame_window_update.c \
1227 src/core/transport/chttp2/hpack_parser.c \
1228 src/core/transport/chttp2/hpack_table.c \
nnoble0c475f02014-12-05 15:37:39 -08001229 src/core/transport/chttp2/huffsyms.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001230 src/core/transport/chttp2/status_conversion.c \
1231 src/core/transport/chttp2/stream_encoder.c \
1232 src/core/transport/chttp2/stream_map.c \
1233 src/core/transport/chttp2/timeout_encoding.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001234 src/core/transport/chttp2_transport.c \
ctiller18b49ab2014-12-09 14:39:16 -08001235 src/core/transport/chttp2/varint.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001236 src/core/transport/metadata.c \
1237 src/core/transport/stream_op.c \
1238 src/core/transport/transport.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001239 third_party/cJSON/cJSON.c \
1240
nnoble85a49262014-12-08 18:14:03 -08001241PUBLIC_HEADERS_C += \
nnoblec87b1c52015-01-05 17:15:18 -08001242 include/grpc/grpc_security.h \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001243 include/grpc/byte_buffer.h \
1244 include/grpc/byte_buffer_reader.h \
1245 include/grpc/grpc.h \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001246 include/grpc/status.h \
1247
ctiller09cb6d52014-12-19 17:38:22 -08001248LIBGRPC_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBGRPC_SRC))))
1249LIBGRPC_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBGRPC_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001250
nnoble69ac39f2014-12-12 15:43:38 -08001251ifeq ($(NO_SECURE),true)
1252
ctiller09cb6d52014-12-19 17:38:22 -08001253libs/$(TGTDIR)/libgrpc.a: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001254
nnoble5b7f32a2014-12-22 08:12:44 -08001255ifeq ($(SYSTEM),MINGW32)
1256libs/$(TGTDIR)/grpc.$(SHARED_EXT): openssl_dep_error
1257else
1258libs/$(TGTDIR)/libgrpc.$(SHARED_EXT): openssl_dep_error
1259endif
1260
nnoble69ac39f2014-12-12 15:43:38 -08001261else
1262
ctiller09cb6d52014-12-19 17:38:22 -08001263libs/$(TGTDIR)/libgrpc.a: $(OPENSSL_DEP) $(LIBGRPC_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001264 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08001265 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08001266 $(Q) $(AR) rcs libs/$(TGTDIR)/libgrpc.a $(LIBGRPC_OBJS)
nnoble20e2e3f2014-12-16 15:37:57 -08001267 $(Q) mkdir tmp-merge
ctiller09cb6d52014-12-19 17:38:22 -08001268 $(Q) ( cd tmp-merge ; $(AR) x ../libs/$(TGTDIR)/libgrpc.a )
nnoble20e2e3f2014-12-16 15:37:57 -08001269 $(Q) for l in $(OPENSSL_MERGE_LIBS) ; do ( cd tmp-merge ; ar x ../$${l} ) ; done
ctiller09cb6d52014-12-19 17:38:22 -08001270 $(Q) rm -f libs/$(TGTDIR)/libgrpc.a tmp-merge/__.SYMDEF*
1271 $(Q) ar rcs libs/$(TGTDIR)/libgrpc.a tmp-merge/*
nnoble20e2e3f2014-12-16 15:37:57 -08001272 $(Q) rm -rf tmp-merge
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001273
nnoble5b7f32a2014-12-22 08:12:44 -08001274
1275
1276ifeq ($(SYSTEM),MINGW32)
1277libs/$(TGTDIR)/grpc.$(SHARED_EXT): $(LIBGRPC_OBJS) libs/$(TGTDIR)/gpr.$(SHARED_EXT) $(OPENSSL_DEP)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001278 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08001279 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08001280 $(Q) $(LD) $(LDFLAGS) -Llibs/$(TGTDIR) -shared -Wl,--output-def=libs/$(TGTDIR)/grpc.def -Wl,--out-implib=libs/$(TGTDIR)/libgrpc-imp.a -o libs/$(TGTDIR)/grpc.$(SHARED_EXT) $(LIBGRPC_OBJS) $(LDLIBS) $(LDLIBS_SECURE) $(OPENSSL_MERGE_LIBS) -lgpr-imp
1281else
1282libs/$(TGTDIR)/libgrpc.$(SHARED_EXT): $(LIBGRPC_OBJS) libs/$(TGTDIR)/libgpr.$(SHARED_EXT) $(OPENSSL_DEP)
1283 $(E) "[LD] Linking $@"
1284 $(Q) mkdir -p `dirname $@`
1285ifeq ($(SYSTEM),Darwin)
1286 $(Q) $(LD) $(LDFLAGS) -Llibs/$(TGTDIR) -dynamiclib -o libs/$(TGTDIR)/libgrpc.$(SHARED_EXT) $(LIBGRPC_OBJS) $(LDLIBS) $(LDLIBS_SECURE) $(OPENSSL_MERGE_LIBS) -lgpr
1287else
1288 $(Q) $(LD) $(LDFLAGS) -Llibs/$(TGTDIR) -shared -Wl,-soname,libgrpc.so.0 -o libs/$(TGTDIR)/libgrpc.$(SHARED_EXT) $(LIBGRPC_OBJS) $(LDLIBS) $(LDLIBS_SECURE) $(OPENSSL_MERGE_LIBS) -lgpr
1289 $(Q) ln -sf libgrpc.$(SHARED_EXT) libs/$(TGTDIR)/libgrpc.so
1290endif
1291endif
1292
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001293
nnoble69ac39f2014-12-12 15:43:38 -08001294endif
1295
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001296deps_libgrpc: $(LIBGRPC_DEPS)
1297
nnoble69ac39f2014-12-12 15:43:38 -08001298ifneq ($(NO_SECURE),true)
1299ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001300-include $(LIBGRPC_DEPS)
1301endif
nnoble69ac39f2014-12-12 15:43:38 -08001302endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001303
1304clean_libgrpc:
1305 $(E) "[CLEAN] Cleaning libgrpc files"
1306 $(Q) $(RM) $(LIBGRPC_OBJS)
1307 $(Q) $(RM) $(LIBGRPC_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08001308 $(Q) $(RM) libs/$(TGTDIR)/libgrpc.a
nnoble5b7f32a2014-12-22 08:12:44 -08001309 $(Q) $(RM) libs/$(TGTDIR)/libgrpc.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001310
1311
nnoblec87b1c52015-01-05 17:15:18 -08001312LIBGRPC_UNSECURE_SRC = \
1313 src/core/channel/call_op_string.c \
1314 src/core/channel/census_filter.c \
1315 src/core/channel/channel_args.c \
1316 src/core/channel/channel_stack.c \
1317 src/core/channel/child_channel.c \
1318 src/core/channel/client_channel.c \
1319 src/core/channel/client_setup.c \
1320 src/core/channel/connected_channel.c \
1321 src/core/channel/http_client_filter.c \
1322 src/core/channel/http_filter.c \
1323 src/core/channel/http_server_filter.c \
1324 src/core/channel/metadata_buffer.c \
1325 src/core/channel/noop_filter.c \
1326 src/core/compression/algorithm.c \
1327 src/core/compression/message_compress.c \
1328 src/core/httpcli/format_request.c \
1329 src/core/httpcli/httpcli.c \
1330 src/core/httpcli/httpcli_security_context.c \
1331 src/core/httpcli/parser.c \
1332 src/core/iomgr/alarm.c \
1333 src/core/iomgr/alarm_heap.c \
1334 src/core/iomgr/endpoint.c \
1335 src/core/iomgr/endpoint_pair_posix.c \
1336 src/core/iomgr/iomgr_libevent.c \
1337 src/core/iomgr/iomgr_libevent_use_threads.c \
1338 src/core/iomgr/pollset.c \
1339 src/core/iomgr/resolve_address_posix.c \
1340 src/core/iomgr/sockaddr_utils.c \
1341 src/core/iomgr/socket_utils_common_posix.c \
1342 src/core/iomgr/socket_utils_linux.c \
1343 src/core/iomgr/socket_utils_posix.c \
1344 src/core/iomgr/tcp_client_posix.c \
1345 src/core/iomgr/tcp_posix.c \
1346 src/core/iomgr/tcp_server_posix.c \
1347 src/core/iomgr/time_averaged_stats.c \
1348 src/core/statistics/census_init.c \
1349 src/core/statistics/census_log.c \
1350 src/core/statistics/census_rpc_stats.c \
1351 src/core/statistics/census_tracing.c \
1352 src/core/statistics/hash_table.c \
1353 src/core/statistics/window_stats.c \
1354 src/core/surface/byte_buffer.c \
1355 src/core/surface/byte_buffer_reader.c \
1356 src/core/surface/call.c \
1357 src/core/surface/channel.c \
1358 src/core/surface/channel_create.c \
1359 src/core/surface/client.c \
1360 src/core/surface/completion_queue.c \
1361 src/core/surface/event_string.c \
1362 src/core/surface/init.c \
1363 src/core/surface/lame_client.c \
1364 src/core/surface/secure_channel_create.c \
1365 src/core/surface/secure_server_create.c \
1366 src/core/surface/server.c \
1367 src/core/surface/server_chttp2.c \
1368 src/core/surface/server_create.c \
1369 src/core/transport/chttp2/alpn.c \
1370 src/core/transport/chttp2/bin_encoder.c \
1371 src/core/transport/chttp2/frame_data.c \
1372 src/core/transport/chttp2/frame_goaway.c \
1373 src/core/transport/chttp2/frame_ping.c \
1374 src/core/transport/chttp2/frame_rst_stream.c \
1375 src/core/transport/chttp2/frame_settings.c \
1376 src/core/transport/chttp2/frame_window_update.c \
1377 src/core/transport/chttp2/hpack_parser.c \
1378 src/core/transport/chttp2/hpack_table.c \
1379 src/core/transport/chttp2/huffsyms.c \
1380 src/core/transport/chttp2/status_conversion.c \
1381 src/core/transport/chttp2/stream_encoder.c \
1382 src/core/transport/chttp2/stream_map.c \
1383 src/core/transport/chttp2/timeout_encoding.c \
1384 src/core/transport/chttp2_transport.c \
1385 src/core/transport/chttp2/varint.c \
1386 src/core/transport/metadata.c \
1387 src/core/transport/stream_op.c \
1388 src/core/transport/transport.c \
1389 third_party/cJSON/cJSON.c \
1390
1391PUBLIC_HEADERS_C += \
1392 include/grpc/byte_buffer.h \
1393 include/grpc/byte_buffer_reader.h \
1394 include/grpc/grpc.h \
1395 include/grpc/status.h \
1396
1397LIBGRPC_UNSECURE_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBGRPC_UNSECURE_SRC))))
1398LIBGRPC_UNSECURE_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBGRPC_UNSECURE_SRC))))
1399
1400libs/$(TGTDIR)/libgrpc_unsecure.a: $(LIBGRPC_UNSECURE_OBJS)
1401 $(E) "[AR] Creating $@"
1402 $(Q) mkdir -p `dirname $@`
1403 $(Q) $(AR) rcs libs/$(TGTDIR)/libgrpc_unsecure.a $(LIBGRPC_UNSECURE_OBJS)
1404
1405
1406
1407ifeq ($(SYSTEM),MINGW32)
1408libs/$(TGTDIR)/grpc_unsecure.$(SHARED_EXT): $(LIBGRPC_UNSECURE_OBJS) libs/$(TGTDIR)/gpr.$(SHARED_EXT)
1409 $(E) "[LD] Linking $@"
1410 $(Q) mkdir -p `dirname $@`
1411 $(Q) $(LD) $(LDFLAGS) -Llibs/$(TGTDIR) -shared -Wl,--output-def=libs/$(TGTDIR)/grpc_unsecure.def -Wl,--out-implib=libs/$(TGTDIR)/libgrpc_unsecure-imp.a -o libs/$(TGTDIR)/grpc_unsecure.$(SHARED_EXT) $(LIBGRPC_UNSECURE_OBJS) $(LDLIBS) -lgpr-imp
1412else
1413libs/$(TGTDIR)/libgrpc_unsecure.$(SHARED_EXT): $(LIBGRPC_UNSECURE_OBJS) libs/$(TGTDIR)/libgpr.$(SHARED_EXT)
1414 $(E) "[LD] Linking $@"
1415 $(Q) mkdir -p `dirname $@`
1416ifeq ($(SYSTEM),Darwin)
1417 $(Q) $(LD) $(LDFLAGS) -Llibs/$(TGTDIR) -dynamiclib -o libs/$(TGTDIR)/libgrpc_unsecure.$(SHARED_EXT) $(LIBGRPC_UNSECURE_OBJS) $(LDLIBS) -lgpr
1418else
1419 $(Q) $(LD) $(LDFLAGS) -Llibs/$(TGTDIR) -shared -Wl,-soname,libgrpc_unsecure.so.0 -o libs/$(TGTDIR)/libgrpc_unsecure.$(SHARED_EXT) $(LIBGRPC_UNSECURE_OBJS) $(LDLIBS) -lgpr
1420 $(Q) ln -sf libgrpc_unsecure.$(SHARED_EXT) libs/$(TGTDIR)/libgrpc_unsecure.so
1421endif
1422endif
1423
1424
1425deps_libgrpc_unsecure: $(LIBGRPC_UNSECURE_DEPS)
1426
1427ifneq ($(NO_DEPS),true)
1428-include $(LIBGRPC_UNSECURE_DEPS)
1429endif
1430
1431clean_libgrpc_unsecure:
1432 $(E) "[CLEAN] Cleaning libgrpc_unsecure files"
1433 $(Q) $(RM) $(LIBGRPC_UNSECURE_OBJS)
1434 $(Q) $(RM) $(LIBGRPC_UNSECURE_DEPS)
1435 $(Q) $(RM) libs/$(TGTDIR)/libgrpc_unsecure.a
1436 $(Q) $(RM) libs/$(TGTDIR)/libgrpc_unsecure.$(SHARED_EXT)
1437
1438
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001439LIBGRPC_TEST_UTIL_SRC = \
ctiller2bbb6c42014-12-17 09:44:44 -08001440 test/core/end2end/cq_verifier.c \
chenw97fd9e52014-12-19 17:12:36 -08001441 test/core/end2end/data/test_root_cert.c \
1442 test/core/end2end/data/prod_roots_certs.c \
ctiller2bbb6c42014-12-17 09:44:44 -08001443 test/core/end2end/data/server1_cert.c \
1444 test/core/end2end/data/server1_key.c \
1445 test/core/iomgr/endpoint_tests.c \
1446 test/core/statistics/census_log_tests.c \
1447 test/core/transport/transport_end2end_tests.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001448 test/core/util/grpc_profiler.c \
1449 test/core/util/parse_hexstring.c \
jtattermusch97fb3f62014-12-08 15:13:41 -08001450 test/core/util/port_posix.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001451 test/core/util/slice_splitter.c \
1452 test/core/util/test_config.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001453
1454
ctiller09cb6d52014-12-19 17:38:22 -08001455LIBGRPC_TEST_UTIL_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBGRPC_TEST_UTIL_SRC))))
1456LIBGRPC_TEST_UTIL_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBGRPC_TEST_UTIL_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001457
nnoble69ac39f2014-12-12 15:43:38 -08001458ifeq ($(NO_SECURE),true)
1459
ctiller09cb6d52014-12-19 17:38:22 -08001460libs/$(TGTDIR)/libgrpc_test_util.a: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001461
nnoble5b7f32a2014-12-22 08:12:44 -08001462
nnoble69ac39f2014-12-12 15:43:38 -08001463else
1464
ctiller09cb6d52014-12-19 17:38:22 -08001465libs/$(TGTDIR)/libgrpc_test_util.a: $(OPENSSL_DEP) $(LIBGRPC_TEST_UTIL_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001466 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08001467 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08001468 $(Q) $(AR) rcs libs/$(TGTDIR)/libgrpc_test_util.a $(LIBGRPC_TEST_UTIL_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001469
1470
1471
nnoble5b7f32a2014-12-22 08:12:44 -08001472
1473
nnoble69ac39f2014-12-12 15:43:38 -08001474endif
1475
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001476deps_libgrpc_test_util: $(LIBGRPC_TEST_UTIL_DEPS)
1477
nnoble69ac39f2014-12-12 15:43:38 -08001478ifneq ($(NO_SECURE),true)
1479ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001480-include $(LIBGRPC_TEST_UTIL_DEPS)
1481endif
nnoble69ac39f2014-12-12 15:43:38 -08001482endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001483
1484clean_libgrpc_test_util:
1485 $(E) "[CLEAN] Cleaning libgrpc_test_util files"
1486 $(Q) $(RM) $(LIBGRPC_TEST_UTIL_OBJS)
1487 $(Q) $(RM) $(LIBGRPC_TEST_UTIL_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08001488 $(Q) $(RM) libs/$(TGTDIR)/libgrpc_test_util.a
nnoble5b7f32a2014-12-22 08:12:44 -08001489 $(Q) $(RM) libs/$(TGTDIR)/libgrpc_test_util.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001490
1491
1492LIBGRPC++_SRC = \
ctiller2bbb6c42014-12-17 09:44:44 -08001493 src/cpp/client/channel.cc \
yangg59dfc902014-12-19 14:00:14 -08001494 src/cpp/client/channel_arguments.cc \
ctiller2bbb6c42014-12-17 09:44:44 -08001495 src/cpp/client/client_context.cc \
1496 src/cpp/client/create_channel.cc \
vpai80b6d012014-12-17 11:47:32 -08001497 src/cpp/client/credentials.cc \
ctiller2bbb6c42014-12-17 09:44:44 -08001498 src/cpp/client/internal_stub.cc \
1499 src/cpp/proto/proto_utils.cc \
1500 src/cpp/rpc_method.cc \
1501 src/cpp/server/async_server.cc \
1502 src/cpp/server/async_server_context.cc \
1503 src/cpp/server/completion_queue.cc \
1504 src/cpp/server/server_builder.cc \
yanggfd2f3ac2014-12-17 16:46:06 -08001505 src/cpp/server/server_context_impl.cc \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001506 src/cpp/server/server.cc \
1507 src/cpp/server/server_rpc_handler.cc \
vpai80b6d012014-12-17 11:47:32 -08001508 src/cpp/server/server_credentials.cc \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001509 src/cpp/server/thread_pool.cc \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001510 src/cpp/stream/stream_context.cc \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001511 src/cpp/util/status.cc \
ctiller2bbb6c42014-12-17 09:44:44 -08001512 src/cpp/util/time.cc \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001513
nnoble85a49262014-12-08 18:14:03 -08001514PUBLIC_HEADERS_CXX += \
ctiller2bbb6c42014-12-17 09:44:44 -08001515 include/grpc++/async_server_context.h \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001516 include/grpc++/async_server.h \
yangg59dfc902014-12-19 14:00:14 -08001517 include/grpc++/channel_arguments.h \
ctiller2bbb6c42014-12-17 09:44:44 -08001518 include/grpc++/channel_interface.h \
1519 include/grpc++/client_context.h \
1520 include/grpc++/completion_queue.h \
1521 include/grpc++/config.h \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001522 include/grpc++/create_channel.h \
vpai80b6d012014-12-17 11:47:32 -08001523 include/grpc++/credentials.h \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001524 include/grpc++/server_builder.h \
yanggfd2f3ac2014-12-17 16:46:06 -08001525 include/grpc++/server_context.h \
vpai80b6d012014-12-17 11:47:32 -08001526 include/grpc++/server_credentials.h \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001527 include/grpc++/server.h \
ctiller2bbb6c42014-12-17 09:44:44 -08001528 include/grpc++/status.h \
1529 include/grpc++/stream_context_interface.h \
1530 include/grpc++/stream.h \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001531
ctiller09cb6d52014-12-19 17:38:22 -08001532LIBGRPC++_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBGRPC++_SRC))))
1533LIBGRPC++_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBGRPC++_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001534
nnoble69ac39f2014-12-12 15:43:38 -08001535ifeq ($(NO_SECURE),true)
1536
ctiller09cb6d52014-12-19 17:38:22 -08001537libs/$(TGTDIR)/libgrpc++.a: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001538
nnoble5b7f32a2014-12-22 08:12:44 -08001539ifeq ($(SYSTEM),MINGW32)
1540libs/$(TGTDIR)/grpc++.$(SHARED_EXT): openssl_dep_error
1541else
1542libs/$(TGTDIR)/libgrpc++.$(SHARED_EXT): openssl_dep_error
1543endif
1544
nnoble69ac39f2014-12-12 15:43:38 -08001545else
1546
ctiller09cb6d52014-12-19 17:38:22 -08001547libs/$(TGTDIR)/libgrpc++.a: $(OPENSSL_DEP) $(LIBGRPC++_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001548 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08001549 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08001550 $(Q) $(AR) rcs libs/$(TGTDIR)/libgrpc++.a $(LIBGRPC++_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001551
nnoble5b7f32a2014-12-22 08:12:44 -08001552
1553
1554ifeq ($(SYSTEM),MINGW32)
1555libs/$(TGTDIR)/grpc++.$(SHARED_EXT): $(LIBGRPC++_OBJS) libs/$(TGTDIR)/grpc.$(SHARED_EXT) $(OPENSSL_DEP)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001556 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08001557 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08001558 $(Q) $(LDXX) $(LDFLAGS) -Llibs/$(TGTDIR) -shared -Wl,--output-def=libs/$(TGTDIR)/grpc++.def -Wl,--out-implib=libs/$(TGTDIR)/libgrpc++-imp.a -o libs/$(TGTDIR)/grpc++.$(SHARED_EXT) $(LIBGRPC++_OBJS) $(LDLIBS) $(LDLIBS_SECURE) $(OPENSSL_MERGE_LIBS) -lgrpc-imp
1559else
1560libs/$(TGTDIR)/libgrpc++.$(SHARED_EXT): $(LIBGRPC++_OBJS) libs/$(TGTDIR)/libgrpc.$(SHARED_EXT) $(OPENSSL_DEP)
1561 $(E) "[LD] Linking $@"
1562 $(Q) mkdir -p `dirname $@`
1563ifeq ($(SYSTEM),Darwin)
1564 $(Q) $(LDXX) $(LDFLAGS) -Llibs/$(TGTDIR) -dynamiclib -o libs/$(TGTDIR)/libgrpc++.$(SHARED_EXT) $(LIBGRPC++_OBJS) $(LDLIBS) $(LDLIBS_SECURE) $(OPENSSL_MERGE_LIBS) -lgrpc
1565else
1566 $(Q) $(LDXX) $(LDFLAGS) -Llibs/$(TGTDIR) -shared -Wl,-soname,libgrpc++.so.0 -o libs/$(TGTDIR)/libgrpc++.$(SHARED_EXT) $(LIBGRPC++_OBJS) $(LDLIBS) $(LDLIBS_SECURE) $(OPENSSL_MERGE_LIBS) -lgrpc
1567 $(Q) ln -sf libgrpc++.$(SHARED_EXT) libs/$(TGTDIR)/libgrpc++.so
1568endif
1569endif
1570
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001571
nnoble69ac39f2014-12-12 15:43:38 -08001572endif
1573
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001574deps_libgrpc++: $(LIBGRPC++_DEPS)
1575
nnoble69ac39f2014-12-12 15:43:38 -08001576ifneq ($(NO_SECURE),true)
1577ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001578-include $(LIBGRPC++_DEPS)
1579endif
nnoble69ac39f2014-12-12 15:43:38 -08001580endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001581
1582clean_libgrpc++:
1583 $(E) "[CLEAN] Cleaning libgrpc++ files"
1584 $(Q) $(RM) $(LIBGRPC++_OBJS)
1585 $(Q) $(RM) $(LIBGRPC++_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08001586 $(Q) $(RM) libs/$(TGTDIR)/libgrpc++.a
nnoble5b7f32a2014-12-22 08:12:44 -08001587 $(Q) $(RM) libs/$(TGTDIR)/libgrpc++.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001588
1589
1590LIBGRPC++_TEST_UTIL_SRC = \
ctiller2bbb6c42014-12-17 09:44:44 -08001591 gens/test/cpp/util/echo.pb.cc \
yangg59dfc902014-12-19 14:00:14 -08001592 test/cpp/util/create_test_channel.cc \
nnoble4cb93712014-12-17 14:18:08 -08001593 test/cpp/end2end/async_test_server.cc \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001594
1595
ctiller09cb6d52014-12-19 17:38:22 -08001596LIBGRPC++_TEST_UTIL_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBGRPC++_TEST_UTIL_SRC))))
1597LIBGRPC++_TEST_UTIL_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBGRPC++_TEST_UTIL_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001598
nnoble69ac39f2014-12-12 15:43:38 -08001599ifeq ($(NO_SECURE),true)
1600
ctiller09cb6d52014-12-19 17:38:22 -08001601libs/$(TGTDIR)/libgrpc++_test_util.a: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001602
nnoble5b7f32a2014-12-22 08:12:44 -08001603
nnoble69ac39f2014-12-12 15:43:38 -08001604else
1605
ctiller09cb6d52014-12-19 17:38:22 -08001606libs/$(TGTDIR)/libgrpc++_test_util.a: $(OPENSSL_DEP) $(LIBGRPC++_TEST_UTIL_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001607 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08001608 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08001609 $(Q) $(AR) rcs libs/$(TGTDIR)/libgrpc++_test_util.a $(LIBGRPC++_TEST_UTIL_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001610
1611
1612
nnoble5b7f32a2014-12-22 08:12:44 -08001613
1614
nnoble69ac39f2014-12-12 15:43:38 -08001615endif
1616
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001617deps_libgrpc++_test_util: $(LIBGRPC++_TEST_UTIL_DEPS)
1618
nnoble69ac39f2014-12-12 15:43:38 -08001619ifneq ($(NO_SECURE),true)
1620ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001621-include $(LIBGRPC++_TEST_UTIL_DEPS)
1622endif
nnoble69ac39f2014-12-12 15:43:38 -08001623endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001624
1625clean_libgrpc++_test_util:
1626 $(E) "[CLEAN] Cleaning libgrpc++_test_util files"
1627 $(Q) $(RM) $(LIBGRPC++_TEST_UTIL_OBJS)
1628 $(Q) $(RM) $(LIBGRPC++_TEST_UTIL_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08001629 $(Q) $(RM) libs/$(TGTDIR)/libgrpc++_test_util.a
nnoble5b7f32a2014-12-22 08:12:44 -08001630 $(Q) $(RM) libs/$(TGTDIR)/libgrpc++_test_util.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001631
1632
1633LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_SRC = \
1634 test/core/end2end/fixtures/chttp2_fake_security.c \
1635
1636
ctiller09cb6d52014-12-19 17:38:22 -08001637LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_SRC))))
1638LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001639
nnoble69ac39f2014-12-12 15:43:38 -08001640ifeq ($(NO_SECURE),true)
1641
ctiller09cb6d52014-12-19 17:38:22 -08001642libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001643
nnoble5b7f32a2014-12-22 08:12:44 -08001644
nnoble69ac39f2014-12-12 15:43:38 -08001645else
1646
ctiller09cb6d52014-12-19 17:38:22 -08001647libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a: $(OPENSSL_DEP) $(LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001648 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08001649 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08001650 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a $(LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001651
1652
1653
nnoble5b7f32a2014-12-22 08:12:44 -08001654
1655
nnoble69ac39f2014-12-12 15:43:38 -08001656endif
1657
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001658deps_libend2end_fixture_chttp2_fake_security: $(LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_DEPS)
1659
nnoble69ac39f2014-12-12 15:43:38 -08001660ifneq ($(NO_SECURE),true)
1661ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001662-include $(LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_DEPS)
1663endif
nnoble69ac39f2014-12-12 15:43:38 -08001664endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001665
1666clean_libend2end_fixture_chttp2_fake_security:
1667 $(E) "[CLEAN] Cleaning libend2end_fixture_chttp2_fake_security files"
1668 $(Q) $(RM) $(LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_OBJS)
1669 $(Q) $(RM) $(LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08001670 $(Q) $(RM) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a
nnoble5b7f32a2014-12-22 08:12:44 -08001671 $(Q) $(RM) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001672
1673
1674LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_SRC = \
1675 test/core/end2end/fixtures/chttp2_fullstack.c \
1676
1677
ctiller09cb6d52014-12-19 17:38:22 -08001678LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_SRC))))
1679LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001680
nnoble69ac39f2014-12-12 15:43:38 -08001681ifeq ($(NO_SECURE),true)
1682
ctiller09cb6d52014-12-19 17:38:22 -08001683libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001684
nnoble5b7f32a2014-12-22 08:12:44 -08001685
nnoble69ac39f2014-12-12 15:43:38 -08001686else
1687
ctiller09cb6d52014-12-19 17:38:22 -08001688libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a: $(OPENSSL_DEP) $(LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001689 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08001690 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08001691 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a $(LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001692
1693
1694
nnoble5b7f32a2014-12-22 08:12:44 -08001695
1696
nnoble69ac39f2014-12-12 15:43:38 -08001697endif
1698
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001699deps_libend2end_fixture_chttp2_fullstack: $(LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_DEPS)
1700
nnoble69ac39f2014-12-12 15:43:38 -08001701ifneq ($(NO_SECURE),true)
1702ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001703-include $(LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_DEPS)
1704endif
nnoble69ac39f2014-12-12 15:43:38 -08001705endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001706
1707clean_libend2end_fixture_chttp2_fullstack:
1708 $(E) "[CLEAN] Cleaning libend2end_fixture_chttp2_fullstack files"
1709 $(Q) $(RM) $(LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_OBJS)
1710 $(Q) $(RM) $(LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08001711 $(Q) $(RM) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a
nnoble5b7f32a2014-12-22 08:12:44 -08001712 $(Q) $(RM) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001713
1714
1715LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_SRC = \
1716 test/core/end2end/fixtures/chttp2_simple_ssl_fullstack.c \
1717
1718
ctiller09cb6d52014-12-19 17:38:22 -08001719LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_SRC))))
1720LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001721
nnoble69ac39f2014-12-12 15:43:38 -08001722ifeq ($(NO_SECURE),true)
1723
ctiller09cb6d52014-12-19 17:38:22 -08001724libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001725
nnoble5b7f32a2014-12-22 08:12:44 -08001726
nnoble69ac39f2014-12-12 15:43:38 -08001727else
1728
ctiller09cb6d52014-12-19 17:38:22 -08001729libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a: $(OPENSSL_DEP) $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001730 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08001731 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08001732 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001733
1734
1735
nnoble5b7f32a2014-12-22 08:12:44 -08001736
1737
nnoble69ac39f2014-12-12 15:43:38 -08001738endif
1739
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001740deps_libend2end_fixture_chttp2_simple_ssl_fullstack: $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_DEPS)
1741
nnoble69ac39f2014-12-12 15:43:38 -08001742ifneq ($(NO_SECURE),true)
1743ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001744-include $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_DEPS)
1745endif
nnoble69ac39f2014-12-12 15:43:38 -08001746endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001747
1748clean_libend2end_fixture_chttp2_simple_ssl_fullstack:
1749 $(E) "[CLEAN] Cleaning libend2end_fixture_chttp2_simple_ssl_fullstack files"
1750 $(Q) $(RM) $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_OBJS)
1751 $(Q) $(RM) $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08001752 $(Q) $(RM) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a
nnoble5b7f32a2014-12-22 08:12:44 -08001753 $(Q) $(RM) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001754
1755
1756LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SRC = \
1757 test/core/end2end/fixtures/chttp2_simple_ssl_with_oauth2_fullstack.c \
1758
1759
ctiller09cb6d52014-12-19 17:38:22 -08001760LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SRC))))
1761LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001762
nnoble69ac39f2014-12-12 15:43:38 -08001763ifeq ($(NO_SECURE),true)
1764
ctiller09cb6d52014-12-19 17:38:22 -08001765libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001766
nnoble5b7f32a2014-12-22 08:12:44 -08001767
nnoble69ac39f2014-12-12 15:43:38 -08001768else
1769
ctiller09cb6d52014-12-19 17:38:22 -08001770libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a: $(OPENSSL_DEP) $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001771 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08001772 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08001773 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001774
1775
1776
nnoble5b7f32a2014-12-22 08:12:44 -08001777
1778
nnoble69ac39f2014-12-12 15:43:38 -08001779endif
1780
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001781deps_libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack: $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DEPS)
1782
nnoble69ac39f2014-12-12 15:43:38 -08001783ifneq ($(NO_SECURE),true)
1784ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001785-include $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DEPS)
1786endif
nnoble69ac39f2014-12-12 15:43:38 -08001787endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001788
1789clean_libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack:
1790 $(E) "[CLEAN] Cleaning libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack files"
1791 $(Q) $(RM) $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_OBJS)
1792 $(Q) $(RM) $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08001793 $(Q) $(RM) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a
nnoble5b7f32a2014-12-22 08:12:44 -08001794 $(Q) $(RM) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001795
1796
1797LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_SRC = \
1798 test/core/end2end/fixtures/chttp2_socket_pair.c \
1799
1800
ctiller09cb6d52014-12-19 17:38:22 -08001801LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_SRC))))
1802LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001803
nnoble69ac39f2014-12-12 15:43:38 -08001804ifeq ($(NO_SECURE),true)
1805
ctiller09cb6d52014-12-19 17:38:22 -08001806libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001807
nnoble5b7f32a2014-12-22 08:12:44 -08001808
nnoble69ac39f2014-12-12 15:43:38 -08001809else
1810
ctiller09cb6d52014-12-19 17:38:22 -08001811libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a: $(OPENSSL_DEP) $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001812 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08001813 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08001814 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001815
1816
1817
nnoble5b7f32a2014-12-22 08:12:44 -08001818
1819
nnoble69ac39f2014-12-12 15:43:38 -08001820endif
1821
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001822deps_libend2end_fixture_chttp2_socket_pair: $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_DEPS)
1823
nnoble69ac39f2014-12-12 15:43:38 -08001824ifneq ($(NO_SECURE),true)
1825ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001826-include $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_DEPS)
1827endif
nnoble69ac39f2014-12-12 15:43:38 -08001828endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001829
1830clean_libend2end_fixture_chttp2_socket_pair:
1831 $(E) "[CLEAN] Cleaning libend2end_fixture_chttp2_socket_pair files"
1832 $(Q) $(RM) $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_OBJS)
1833 $(Q) $(RM) $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08001834 $(Q) $(RM) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a
nnoble5b7f32a2014-12-22 08:12:44 -08001835 $(Q) $(RM) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001836
1837
nnoble0c475f02014-12-05 15:37:39 -08001838LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SRC = \
1839 test/core/end2end/fixtures/chttp2_socket_pair_one_byte_at_a_time.c \
1840
1841
ctiller09cb6d52014-12-19 17:38:22 -08001842LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SRC))))
1843LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08001844
nnoble69ac39f2014-12-12 15:43:38 -08001845ifeq ($(NO_SECURE),true)
1846
ctiller09cb6d52014-12-19 17:38:22 -08001847libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001848
nnoble5b7f32a2014-12-22 08:12:44 -08001849
nnoble69ac39f2014-12-12 15:43:38 -08001850else
1851
ctiller09cb6d52014-12-19 17:38:22 -08001852libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a: $(OPENSSL_DEP) $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_OBJS)
nnoble0c475f02014-12-05 15:37:39 -08001853 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08001854 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08001855 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_OBJS)
nnoble0c475f02014-12-05 15:37:39 -08001856
1857
1858
nnoble5b7f32a2014-12-22 08:12:44 -08001859
1860
nnoble69ac39f2014-12-12 15:43:38 -08001861endif
1862
nnoble0c475f02014-12-05 15:37:39 -08001863deps_libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time: $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DEPS)
1864
nnoble69ac39f2014-12-12 15:43:38 -08001865ifneq ($(NO_SECURE),true)
1866ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08001867-include $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DEPS)
1868endif
nnoble69ac39f2014-12-12 15:43:38 -08001869endif
nnoble0c475f02014-12-05 15:37:39 -08001870
1871clean_libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time:
1872 $(E) "[CLEAN] Cleaning libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time files"
1873 $(Q) $(RM) $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_OBJS)
1874 $(Q) $(RM) $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08001875 $(Q) $(RM) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a
nnoble5b7f32a2014-12-22 08:12:44 -08001876 $(Q) $(RM) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.$(SHARED_EXT)
nnoble0c475f02014-12-05 15:37:39 -08001877
1878
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001879LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_SRC = \
1880 test/core/end2end/tests/cancel_after_accept.c \
1881
1882
ctiller09cb6d52014-12-19 17:38:22 -08001883LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_SRC))))
1884LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001885
ctiller09cb6d52014-12-19 17:38:22 -08001886libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a: $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001887 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08001888 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08001889 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001890
1891
1892
nnoble5b7f32a2014-12-22 08:12:44 -08001893
1894
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001895deps_libend2end_test_cancel_after_accept: $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_DEPS)
1896
nnoble69ac39f2014-12-12 15:43:38 -08001897ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001898-include $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_DEPS)
1899endif
1900
1901clean_libend2end_test_cancel_after_accept:
1902 $(E) "[CLEAN] Cleaning libend2end_test_cancel_after_accept files"
1903 $(Q) $(RM) $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_OBJS)
1904 $(Q) $(RM) $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08001905 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a
nnoble5b7f32a2014-12-22 08:12:44 -08001906 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_cancel_after_accept.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001907
1908
1909LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_SRC = \
1910 test/core/end2end/tests/cancel_after_accept_and_writes_closed.c \
1911
1912
ctiller09cb6d52014-12-19 17:38:22 -08001913LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_SRC))))
1914LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001915
ctiller09cb6d52014-12-19 17:38:22 -08001916libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a: $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001917 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08001918 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08001919 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001920
1921
1922
nnoble5b7f32a2014-12-22 08:12:44 -08001923
1924
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001925deps_libend2end_test_cancel_after_accept_and_writes_closed: $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_DEPS)
1926
nnoble69ac39f2014-12-12 15:43:38 -08001927ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001928-include $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_DEPS)
1929endif
1930
1931clean_libend2end_test_cancel_after_accept_and_writes_closed:
1932 $(E) "[CLEAN] Cleaning libend2end_test_cancel_after_accept_and_writes_closed files"
1933 $(Q) $(RM) $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_OBJS)
1934 $(Q) $(RM) $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08001935 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a
nnoble5b7f32a2014-12-22 08:12:44 -08001936 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001937
1938
1939LIBEND2END_TEST_CANCEL_AFTER_INVOKE_SRC = \
1940 test/core/end2end/tests/cancel_after_invoke.c \
1941
1942
ctiller09cb6d52014-12-19 17:38:22 -08001943LIBEND2END_TEST_CANCEL_AFTER_INVOKE_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_CANCEL_AFTER_INVOKE_SRC))))
1944LIBEND2END_TEST_CANCEL_AFTER_INVOKE_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_CANCEL_AFTER_INVOKE_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001945
ctiller09cb6d52014-12-19 17:38:22 -08001946libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a: $(LIBEND2END_TEST_CANCEL_AFTER_INVOKE_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001947 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08001948 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08001949 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a $(LIBEND2END_TEST_CANCEL_AFTER_INVOKE_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001950
1951
1952
nnoble5b7f32a2014-12-22 08:12:44 -08001953
1954
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001955deps_libend2end_test_cancel_after_invoke: $(LIBEND2END_TEST_CANCEL_AFTER_INVOKE_DEPS)
1956
nnoble69ac39f2014-12-12 15:43:38 -08001957ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001958-include $(LIBEND2END_TEST_CANCEL_AFTER_INVOKE_DEPS)
1959endif
1960
1961clean_libend2end_test_cancel_after_invoke:
1962 $(E) "[CLEAN] Cleaning libend2end_test_cancel_after_invoke files"
1963 $(Q) $(RM) $(LIBEND2END_TEST_CANCEL_AFTER_INVOKE_OBJS)
1964 $(Q) $(RM) $(LIBEND2END_TEST_CANCEL_AFTER_INVOKE_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08001965 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a
nnoble5b7f32a2014-12-22 08:12:44 -08001966 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001967
1968
1969LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_SRC = \
1970 test/core/end2end/tests/cancel_before_invoke.c \
1971
1972
ctiller09cb6d52014-12-19 17:38:22 -08001973LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_SRC))))
1974LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001975
ctiller09cb6d52014-12-19 17:38:22 -08001976libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a: $(LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001977 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08001978 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08001979 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a $(LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001980
1981
1982
nnoble5b7f32a2014-12-22 08:12:44 -08001983
1984
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001985deps_libend2end_test_cancel_before_invoke: $(LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_DEPS)
1986
nnoble69ac39f2014-12-12 15:43:38 -08001987ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001988-include $(LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_DEPS)
1989endif
1990
1991clean_libend2end_test_cancel_before_invoke:
1992 $(E) "[CLEAN] Cleaning libend2end_test_cancel_before_invoke files"
1993 $(Q) $(RM) $(LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_OBJS)
1994 $(Q) $(RM) $(LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08001995 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a
nnoble5b7f32a2014-12-22 08:12:44 -08001996 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001997
1998
1999LIBEND2END_TEST_CANCEL_IN_A_VACUUM_SRC = \
2000 test/core/end2end/tests/cancel_in_a_vacuum.c \
2001
2002
ctiller09cb6d52014-12-19 17:38:22 -08002003LIBEND2END_TEST_CANCEL_IN_A_VACUUM_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_CANCEL_IN_A_VACUUM_SRC))))
2004LIBEND2END_TEST_CANCEL_IN_A_VACUUM_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_CANCEL_IN_A_VACUUM_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002005
ctiller09cb6d52014-12-19 17:38:22 -08002006libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a: $(LIBEND2END_TEST_CANCEL_IN_A_VACUUM_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002007 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08002008 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002009 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a $(LIBEND2END_TEST_CANCEL_IN_A_VACUUM_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002010
2011
2012
nnoble5b7f32a2014-12-22 08:12:44 -08002013
2014
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002015deps_libend2end_test_cancel_in_a_vacuum: $(LIBEND2END_TEST_CANCEL_IN_A_VACUUM_DEPS)
2016
nnoble69ac39f2014-12-12 15:43:38 -08002017ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002018-include $(LIBEND2END_TEST_CANCEL_IN_A_VACUUM_DEPS)
2019endif
2020
2021clean_libend2end_test_cancel_in_a_vacuum:
2022 $(E) "[CLEAN] Cleaning libend2end_test_cancel_in_a_vacuum files"
2023 $(Q) $(RM) $(LIBEND2END_TEST_CANCEL_IN_A_VACUUM_OBJS)
2024 $(Q) $(RM) $(LIBEND2END_TEST_CANCEL_IN_A_VACUUM_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002025 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a
nnoble5b7f32a2014-12-22 08:12:44 -08002026 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002027
2028
ctillerc6d61c42014-12-15 14:52:08 -08002029LIBEND2END_TEST_DISAPPEARING_SERVER_SRC = \
2030 test/core/end2end/tests/disappearing_server.c \
2031
2032
ctiller09cb6d52014-12-19 17:38:22 -08002033LIBEND2END_TEST_DISAPPEARING_SERVER_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_DISAPPEARING_SERVER_SRC))))
2034LIBEND2END_TEST_DISAPPEARING_SERVER_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_DISAPPEARING_SERVER_SRC))))
ctillerc6d61c42014-12-15 14:52:08 -08002035
ctiller09cb6d52014-12-19 17:38:22 -08002036libs/$(TGTDIR)/libend2end_test_disappearing_server.a: $(LIBEND2END_TEST_DISAPPEARING_SERVER_OBJS)
ctillerc6d61c42014-12-15 14:52:08 -08002037 $(E) "[AR] Creating $@"
2038 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002039 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_disappearing_server.a $(LIBEND2END_TEST_DISAPPEARING_SERVER_OBJS)
ctillerc6d61c42014-12-15 14:52:08 -08002040
2041
2042
nnoble5b7f32a2014-12-22 08:12:44 -08002043
2044
ctillerc6d61c42014-12-15 14:52:08 -08002045deps_libend2end_test_disappearing_server: $(LIBEND2END_TEST_DISAPPEARING_SERVER_DEPS)
2046
2047ifneq ($(NO_DEPS),true)
2048-include $(LIBEND2END_TEST_DISAPPEARING_SERVER_DEPS)
2049endif
2050
2051clean_libend2end_test_disappearing_server:
2052 $(E) "[CLEAN] Cleaning libend2end_test_disappearing_server files"
2053 $(Q) $(RM) $(LIBEND2END_TEST_DISAPPEARING_SERVER_OBJS)
2054 $(Q) $(RM) $(LIBEND2END_TEST_DISAPPEARING_SERVER_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002055 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_disappearing_server.a
nnoble5b7f32a2014-12-22 08:12:44 -08002056 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_disappearing_server.$(SHARED_EXT)
ctillerc6d61c42014-12-15 14:52:08 -08002057
2058
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002059LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_SRC = \
2060 test/core/end2end/tests/early_server_shutdown_finishes_inflight_calls.c \
2061
2062
ctiller09cb6d52014-12-19 17:38:22 -08002063LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_SRC))))
2064LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002065
ctiller09cb6d52014-12-19 17:38:22 -08002066libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a: $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002067 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08002068 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002069 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002070
2071
2072
nnoble5b7f32a2014-12-22 08:12:44 -08002073
2074
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002075deps_libend2end_test_early_server_shutdown_finishes_inflight_calls: $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_DEPS)
2076
nnoble69ac39f2014-12-12 15:43:38 -08002077ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002078-include $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_DEPS)
2079endif
2080
2081clean_libend2end_test_early_server_shutdown_finishes_inflight_calls:
2082 $(E) "[CLEAN] Cleaning libend2end_test_early_server_shutdown_finishes_inflight_calls files"
2083 $(Q) $(RM) $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_OBJS)
2084 $(Q) $(RM) $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002085 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a
nnoble5b7f32a2014-12-22 08:12:44 -08002086 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002087
2088
2089LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_SRC = \
2090 test/core/end2end/tests/early_server_shutdown_finishes_tags.c \
2091
2092
ctiller09cb6d52014-12-19 17:38:22 -08002093LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_SRC))))
2094LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002095
ctiller09cb6d52014-12-19 17:38:22 -08002096libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a: $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002097 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08002098 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002099 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002100
2101
2102
nnoble5b7f32a2014-12-22 08:12:44 -08002103
2104
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002105deps_libend2end_test_early_server_shutdown_finishes_tags: $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_DEPS)
2106
nnoble69ac39f2014-12-12 15:43:38 -08002107ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002108-include $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_DEPS)
2109endif
2110
2111clean_libend2end_test_early_server_shutdown_finishes_tags:
2112 $(E) "[CLEAN] Cleaning libend2end_test_early_server_shutdown_finishes_tags files"
2113 $(Q) $(RM) $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_OBJS)
2114 $(Q) $(RM) $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002115 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a
nnoble5b7f32a2014-12-22 08:12:44 -08002116 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002117
2118
2119LIBEND2END_TEST_INVOKE_LARGE_REQUEST_SRC = \
2120 test/core/end2end/tests/invoke_large_request.c \
2121
2122
ctiller09cb6d52014-12-19 17:38:22 -08002123LIBEND2END_TEST_INVOKE_LARGE_REQUEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_INVOKE_LARGE_REQUEST_SRC))))
2124LIBEND2END_TEST_INVOKE_LARGE_REQUEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_INVOKE_LARGE_REQUEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002125
ctiller09cb6d52014-12-19 17:38:22 -08002126libs/$(TGTDIR)/libend2end_test_invoke_large_request.a: $(LIBEND2END_TEST_INVOKE_LARGE_REQUEST_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002127 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08002128 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002129 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_invoke_large_request.a $(LIBEND2END_TEST_INVOKE_LARGE_REQUEST_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002130
2131
2132
nnoble5b7f32a2014-12-22 08:12:44 -08002133
2134
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002135deps_libend2end_test_invoke_large_request: $(LIBEND2END_TEST_INVOKE_LARGE_REQUEST_DEPS)
2136
nnoble69ac39f2014-12-12 15:43:38 -08002137ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002138-include $(LIBEND2END_TEST_INVOKE_LARGE_REQUEST_DEPS)
2139endif
2140
2141clean_libend2end_test_invoke_large_request:
2142 $(E) "[CLEAN] Cleaning libend2end_test_invoke_large_request files"
2143 $(Q) $(RM) $(LIBEND2END_TEST_INVOKE_LARGE_REQUEST_OBJS)
2144 $(Q) $(RM) $(LIBEND2END_TEST_INVOKE_LARGE_REQUEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002145 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_invoke_large_request.a
nnoble5b7f32a2014-12-22 08:12:44 -08002146 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_invoke_large_request.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002147
2148
2149LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_SRC = \
2150 test/core/end2end/tests/max_concurrent_streams.c \
2151
2152
ctiller09cb6d52014-12-19 17:38:22 -08002153LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_SRC))))
2154LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002155
ctiller09cb6d52014-12-19 17:38:22 -08002156libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a: $(LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002157 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08002158 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002159 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a $(LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002160
2161
2162
nnoble5b7f32a2014-12-22 08:12:44 -08002163
2164
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002165deps_libend2end_test_max_concurrent_streams: $(LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_DEPS)
2166
nnoble69ac39f2014-12-12 15:43:38 -08002167ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002168-include $(LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_DEPS)
2169endif
2170
2171clean_libend2end_test_max_concurrent_streams:
2172 $(E) "[CLEAN] Cleaning libend2end_test_max_concurrent_streams files"
2173 $(Q) $(RM) $(LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_OBJS)
2174 $(Q) $(RM) $(LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002175 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a
nnoble5b7f32a2014-12-22 08:12:44 -08002176 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002177
2178
2179LIBEND2END_TEST_NO_OP_SRC = \
2180 test/core/end2end/tests/no_op.c \
2181
2182
ctiller09cb6d52014-12-19 17:38:22 -08002183LIBEND2END_TEST_NO_OP_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_NO_OP_SRC))))
2184LIBEND2END_TEST_NO_OP_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_NO_OP_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002185
ctiller09cb6d52014-12-19 17:38:22 -08002186libs/$(TGTDIR)/libend2end_test_no_op.a: $(LIBEND2END_TEST_NO_OP_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002187 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08002188 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002189 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_no_op.a $(LIBEND2END_TEST_NO_OP_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002190
2191
2192
nnoble5b7f32a2014-12-22 08:12:44 -08002193
2194
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002195deps_libend2end_test_no_op: $(LIBEND2END_TEST_NO_OP_DEPS)
2196
nnoble69ac39f2014-12-12 15:43:38 -08002197ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002198-include $(LIBEND2END_TEST_NO_OP_DEPS)
2199endif
2200
2201clean_libend2end_test_no_op:
2202 $(E) "[CLEAN] Cleaning libend2end_test_no_op files"
2203 $(Q) $(RM) $(LIBEND2END_TEST_NO_OP_OBJS)
2204 $(Q) $(RM) $(LIBEND2END_TEST_NO_OP_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002205 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_no_op.a
nnoble5b7f32a2014-12-22 08:12:44 -08002206 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_no_op.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002207
2208
2209LIBEND2END_TEST_PING_PONG_STREAMING_SRC = \
2210 test/core/end2end/tests/ping_pong_streaming.c \
2211
2212
ctiller09cb6d52014-12-19 17:38:22 -08002213LIBEND2END_TEST_PING_PONG_STREAMING_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_PING_PONG_STREAMING_SRC))))
2214LIBEND2END_TEST_PING_PONG_STREAMING_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_PING_PONG_STREAMING_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002215
ctiller09cb6d52014-12-19 17:38:22 -08002216libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a: $(LIBEND2END_TEST_PING_PONG_STREAMING_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002217 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08002218 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002219 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a $(LIBEND2END_TEST_PING_PONG_STREAMING_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002220
2221
2222
nnoble5b7f32a2014-12-22 08:12:44 -08002223
2224
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002225deps_libend2end_test_ping_pong_streaming: $(LIBEND2END_TEST_PING_PONG_STREAMING_DEPS)
2226
nnoble69ac39f2014-12-12 15:43:38 -08002227ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002228-include $(LIBEND2END_TEST_PING_PONG_STREAMING_DEPS)
2229endif
2230
2231clean_libend2end_test_ping_pong_streaming:
2232 $(E) "[CLEAN] Cleaning libend2end_test_ping_pong_streaming files"
2233 $(Q) $(RM) $(LIBEND2END_TEST_PING_PONG_STREAMING_OBJS)
2234 $(Q) $(RM) $(LIBEND2END_TEST_PING_PONG_STREAMING_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002235 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a
nnoble5b7f32a2014-12-22 08:12:44 -08002236 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002237
2238
ctiller33023c42014-12-12 16:28:33 -08002239LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_SRC = \
2240 test/core/end2end/tests/request_response_with_binary_metadata_and_payload.c \
2241
2242
ctiller09cb6d52014-12-19 17:38:22 -08002243LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_SRC))))
2244LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_SRC))))
ctiller33023c42014-12-12 16:28:33 -08002245
ctiller09cb6d52014-12-19 17:38:22 -08002246libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a: $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_OBJS)
ctiller33023c42014-12-12 16:28:33 -08002247 $(E) "[AR] Creating $@"
2248 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002249 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_OBJS)
ctiller33023c42014-12-12 16:28:33 -08002250
2251
2252
nnoble5b7f32a2014-12-22 08:12:44 -08002253
2254
ctiller33023c42014-12-12 16:28:33 -08002255deps_libend2end_test_request_response_with_binary_metadata_and_payload: $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_DEPS)
2256
2257ifneq ($(NO_DEPS),true)
2258-include $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_DEPS)
2259endif
2260
2261clean_libend2end_test_request_response_with_binary_metadata_and_payload:
2262 $(E) "[CLEAN] Cleaning libend2end_test_request_response_with_binary_metadata_and_payload files"
2263 $(Q) $(RM) $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_OBJS)
2264 $(Q) $(RM) $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002265 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a
nnoble5b7f32a2014-12-22 08:12:44 -08002266 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.$(SHARED_EXT)
ctiller33023c42014-12-12 16:28:33 -08002267
2268
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002269LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_SRC = \
2270 test/core/end2end/tests/request_response_with_metadata_and_payload.c \
2271
2272
ctiller09cb6d52014-12-19 17:38:22 -08002273LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_SRC))))
2274LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002275
ctiller09cb6d52014-12-19 17:38:22 -08002276libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a: $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002277 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08002278 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002279 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002280
2281
2282
nnoble5b7f32a2014-12-22 08:12:44 -08002283
2284
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002285deps_libend2end_test_request_response_with_metadata_and_payload: $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_DEPS)
2286
nnoble69ac39f2014-12-12 15:43:38 -08002287ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002288-include $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_DEPS)
2289endif
2290
2291clean_libend2end_test_request_response_with_metadata_and_payload:
2292 $(E) "[CLEAN] Cleaning libend2end_test_request_response_with_metadata_and_payload files"
2293 $(Q) $(RM) $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_OBJS)
2294 $(Q) $(RM) $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002295 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a
nnoble5b7f32a2014-12-22 08:12:44 -08002296 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002297
2298
2299LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_SRC = \
2300 test/core/end2end/tests/request_response_with_payload.c \
2301
2302
ctiller09cb6d52014-12-19 17:38:22 -08002303LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_SRC))))
2304LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002305
ctiller09cb6d52014-12-19 17:38:22 -08002306libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a: $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002307 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08002308 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002309 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002310
2311
2312
nnoble5b7f32a2014-12-22 08:12:44 -08002313
2314
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002315deps_libend2end_test_request_response_with_payload: $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_DEPS)
2316
nnoble69ac39f2014-12-12 15:43:38 -08002317ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002318-include $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_DEPS)
2319endif
2320
2321clean_libend2end_test_request_response_with_payload:
2322 $(E) "[CLEAN] Cleaning libend2end_test_request_response_with_payload files"
2323 $(Q) $(RM) $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_OBJS)
2324 $(Q) $(RM) $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002325 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a
nnoble5b7f32a2014-12-22 08:12:44 -08002326 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_request_response_with_payload.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002327
2328
ctiller2845cad2014-12-15 15:14:12 -08002329LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_SRC = \
2330 test/core/end2end/tests/request_response_with_trailing_metadata_and_payload.c \
2331
2332
ctiller09cb6d52014-12-19 17:38:22 -08002333LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_SRC))))
2334LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_SRC))))
ctiller2845cad2014-12-15 15:14:12 -08002335
ctiller09cb6d52014-12-19 17:38:22 -08002336libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a: $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_OBJS)
ctiller2845cad2014-12-15 15:14:12 -08002337 $(E) "[AR] Creating $@"
2338 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002339 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_OBJS)
ctiller2845cad2014-12-15 15:14:12 -08002340
2341
2342
nnoble5b7f32a2014-12-22 08:12:44 -08002343
2344
ctiller2845cad2014-12-15 15:14:12 -08002345deps_libend2end_test_request_response_with_trailing_metadata_and_payload: $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_DEPS)
2346
2347ifneq ($(NO_DEPS),true)
2348-include $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_DEPS)
2349endif
2350
2351clean_libend2end_test_request_response_with_trailing_metadata_and_payload:
2352 $(E) "[CLEAN] Cleaning libend2end_test_request_response_with_trailing_metadata_and_payload files"
2353 $(Q) $(RM) $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_OBJS)
2354 $(Q) $(RM) $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002355 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a
nnoble5b7f32a2014-12-22 08:12:44 -08002356 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.$(SHARED_EXT)
ctiller2845cad2014-12-15 15:14:12 -08002357
2358
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002359LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_SRC = \
2360 test/core/end2end/tests/simple_delayed_request.c \
2361
2362
ctiller09cb6d52014-12-19 17:38:22 -08002363LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_SRC))))
2364LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002365
ctiller09cb6d52014-12-19 17:38:22 -08002366libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a: $(LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002367 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08002368 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002369 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a $(LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002370
2371
2372
nnoble5b7f32a2014-12-22 08:12:44 -08002373
2374
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002375deps_libend2end_test_simple_delayed_request: $(LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_DEPS)
2376
nnoble69ac39f2014-12-12 15:43:38 -08002377ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002378-include $(LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_DEPS)
2379endif
2380
2381clean_libend2end_test_simple_delayed_request:
2382 $(E) "[CLEAN] Cleaning libend2end_test_simple_delayed_request files"
2383 $(Q) $(RM) $(LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_OBJS)
2384 $(Q) $(RM) $(LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002385 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a
nnoble5b7f32a2014-12-22 08:12:44 -08002386 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_simple_delayed_request.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002387
2388
2389LIBEND2END_TEST_SIMPLE_REQUEST_SRC = \
2390 test/core/end2end/tests/simple_request.c \
2391
2392
ctiller09cb6d52014-12-19 17:38:22 -08002393LIBEND2END_TEST_SIMPLE_REQUEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_SIMPLE_REQUEST_SRC))))
2394LIBEND2END_TEST_SIMPLE_REQUEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_SIMPLE_REQUEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002395
ctiller09cb6d52014-12-19 17:38:22 -08002396libs/$(TGTDIR)/libend2end_test_simple_request.a: $(LIBEND2END_TEST_SIMPLE_REQUEST_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002397 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08002398 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002399 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_simple_request.a $(LIBEND2END_TEST_SIMPLE_REQUEST_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002400
2401
2402
nnoble5b7f32a2014-12-22 08:12:44 -08002403
2404
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002405deps_libend2end_test_simple_request: $(LIBEND2END_TEST_SIMPLE_REQUEST_DEPS)
2406
nnoble69ac39f2014-12-12 15:43:38 -08002407ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002408-include $(LIBEND2END_TEST_SIMPLE_REQUEST_DEPS)
2409endif
2410
2411clean_libend2end_test_simple_request:
2412 $(E) "[CLEAN] Cleaning libend2end_test_simple_request files"
2413 $(Q) $(RM) $(LIBEND2END_TEST_SIMPLE_REQUEST_OBJS)
2414 $(Q) $(RM) $(LIBEND2END_TEST_SIMPLE_REQUEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002415 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_simple_request.a
nnoble5b7f32a2014-12-22 08:12:44 -08002416 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_simple_request.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002417
2418
nathaniel52878172014-12-09 10:17:19 -08002419LIBEND2END_TEST_THREAD_STRESS_SRC = \
2420 test/core/end2end/tests/thread_stress.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002421
2422
ctiller09cb6d52014-12-19 17:38:22 -08002423LIBEND2END_TEST_THREAD_STRESS_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_THREAD_STRESS_SRC))))
2424LIBEND2END_TEST_THREAD_STRESS_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_THREAD_STRESS_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002425
ctiller09cb6d52014-12-19 17:38:22 -08002426libs/$(TGTDIR)/libend2end_test_thread_stress.a: $(LIBEND2END_TEST_THREAD_STRESS_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002427 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08002428 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002429 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_thread_stress.a $(LIBEND2END_TEST_THREAD_STRESS_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002430
2431
2432
nnoble5b7f32a2014-12-22 08:12:44 -08002433
2434
nathaniel52878172014-12-09 10:17:19 -08002435deps_libend2end_test_thread_stress: $(LIBEND2END_TEST_THREAD_STRESS_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002436
nnoble69ac39f2014-12-12 15:43:38 -08002437ifneq ($(NO_DEPS),true)
nathaniel52878172014-12-09 10:17:19 -08002438-include $(LIBEND2END_TEST_THREAD_STRESS_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002439endif
2440
nathaniel52878172014-12-09 10:17:19 -08002441clean_libend2end_test_thread_stress:
2442 $(E) "[CLEAN] Cleaning libend2end_test_thread_stress files"
2443 $(Q) $(RM) $(LIBEND2END_TEST_THREAD_STRESS_OBJS)
2444 $(Q) $(RM) $(LIBEND2END_TEST_THREAD_STRESS_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002445 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_thread_stress.a
nnoble5b7f32a2014-12-22 08:12:44 -08002446 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_thread_stress.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002447
2448
2449LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_SRC = \
2450 test/core/end2end/tests/writes_done_hangs_with_pending_read.c \
2451
2452
ctiller09cb6d52014-12-19 17:38:22 -08002453LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_SRC))))
2454LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002455
ctiller09cb6d52014-12-19 17:38:22 -08002456libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a: $(LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002457 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08002458 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002459 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a $(LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002460
2461
2462
nnoble5b7f32a2014-12-22 08:12:44 -08002463
2464
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002465deps_libend2end_test_writes_done_hangs_with_pending_read: $(LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_DEPS)
2466
nnoble69ac39f2014-12-12 15:43:38 -08002467ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002468-include $(LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_DEPS)
2469endif
2470
2471clean_libend2end_test_writes_done_hangs_with_pending_read:
2472 $(E) "[CLEAN] Cleaning libend2end_test_writes_done_hangs_with_pending_read files"
2473 $(Q) $(RM) $(LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_OBJS)
2474 $(Q) $(RM) $(LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002475 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a
nnoble5b7f32a2014-12-22 08:12:44 -08002476 $(Q) $(RM) libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002477
2478
2479LIBEND2END_CERTS_SRC = \
chenw97fd9e52014-12-19 17:12:36 -08002480 test/core/end2end/data/test_root_cert.c \
2481 test/core/end2end/data/prod_roots_certs.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002482 test/core/end2end/data/server1_cert.c \
2483 test/core/end2end/data/server1_key.c \
2484
2485
ctiller09cb6d52014-12-19 17:38:22 -08002486LIBEND2END_CERTS_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LIBEND2END_CERTS_SRC))))
2487LIBEND2END_CERTS_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LIBEND2END_CERTS_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002488
nnoble69ac39f2014-12-12 15:43:38 -08002489ifeq ($(NO_SECURE),true)
2490
ctiller09cb6d52014-12-19 17:38:22 -08002491libs/$(TGTDIR)/libend2end_certs.a: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08002492
nnoble5b7f32a2014-12-22 08:12:44 -08002493
nnoble69ac39f2014-12-12 15:43:38 -08002494else
2495
ctiller09cb6d52014-12-19 17:38:22 -08002496libs/$(TGTDIR)/libend2end_certs.a: $(OPENSSL_DEP) $(LIBEND2END_CERTS_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002497 $(E) "[AR] Creating $@"
nnoble85a49262014-12-08 18:14:03 -08002498 $(Q) mkdir -p `dirname $@`
ctiller09cb6d52014-12-19 17:38:22 -08002499 $(Q) $(AR) rcs libs/$(TGTDIR)/libend2end_certs.a $(LIBEND2END_CERTS_OBJS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002500
2501
2502
nnoble5b7f32a2014-12-22 08:12:44 -08002503
2504
nnoble69ac39f2014-12-12 15:43:38 -08002505endif
2506
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002507deps_libend2end_certs: $(LIBEND2END_CERTS_DEPS)
2508
nnoble69ac39f2014-12-12 15:43:38 -08002509ifneq ($(NO_SECURE),true)
2510ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002511-include $(LIBEND2END_CERTS_DEPS)
2512endif
nnoble69ac39f2014-12-12 15:43:38 -08002513endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002514
2515clean_libend2end_certs:
2516 $(E) "[CLEAN] Cleaning libend2end_certs files"
2517 $(Q) $(RM) $(LIBEND2END_CERTS_OBJS)
2518 $(Q) $(RM) $(LIBEND2END_CERTS_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002519 $(Q) $(RM) libs/$(TGTDIR)/libend2end_certs.a
nnoble5b7f32a2014-12-22 08:12:44 -08002520 $(Q) $(RM) libs/$(TGTDIR)/libend2end_certs.$(SHARED_EXT)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002521
2522
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002523
nnoble69ac39f2014-12-12 15:43:38 -08002524# All of the test targets, and protoc plugins
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002525
2526
2527GEN_HPACK_TABLES_SRC = \
2528 src/core/transport/chttp2/gen_hpack_tables.c \
2529
ctiller09cb6d52014-12-19 17:38:22 -08002530GEN_HPACK_TABLES_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GEN_HPACK_TABLES_SRC))))
2531GEN_HPACK_TABLES_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GEN_HPACK_TABLES_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002532
nnoble69ac39f2014-12-12 15:43:38 -08002533ifeq ($(NO_SECURE),true)
2534
ctiller09cb6d52014-12-19 17:38:22 -08002535bins/$(TGTDIR)/gen_hpack_tables: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08002536
2537else
2538
ctiller09cb6d52014-12-19 17:38:22 -08002539bins/$(TGTDIR)/gen_hpack_tables: $(GEN_HPACK_TABLES_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a libs/$(TGTDIR)/libgrpc.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002540 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08002541 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08002542 $(Q) $(LD) $(LDFLAGS) $(GEN_HPACK_TABLES_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a libs/$(TGTDIR)/libgrpc.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/gen_hpack_tables
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002543
nnoble69ac39f2014-12-12 15:43:38 -08002544endif
2545
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002546deps_gen_hpack_tables: $(GEN_HPACK_TABLES_DEPS)
2547
nnoble69ac39f2014-12-12 15:43:38 -08002548ifneq ($(NO_SECURE),true)
2549ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002550-include $(GEN_HPACK_TABLES_DEPS)
2551endif
nnoble69ac39f2014-12-12 15:43:38 -08002552endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002553
2554clean_gen_hpack_tables:
2555 $(E) "[CLEAN] Cleaning gen_hpack_tables files"
2556 $(Q) $(RM) $(GEN_HPACK_TABLES_OBJS)
2557 $(Q) $(RM) $(GEN_HPACK_TABLES_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002558 $(Q) $(RM) bins/$(TGTDIR)/gen_hpack_tables
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002559
2560
nnobleebebb7e2014-12-10 16:31:01 -08002561CPP_PLUGIN_SRC = \
2562 src/compiler/cpp_plugin.cpp \
2563 src/compiler/cpp_generator.cpp \
2564
ctiller09cb6d52014-12-19 17:38:22 -08002565CPP_PLUGIN_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CPP_PLUGIN_SRC))))
2566CPP_PLUGIN_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CPP_PLUGIN_SRC))))
nnobleebebb7e2014-12-10 16:31:01 -08002567
ctiller09cb6d52014-12-19 17:38:22 -08002568bins/$(TGTDIR)/cpp_plugin: $(CPP_PLUGIN_OBJS)
nnoble72309c62014-12-12 11:42:26 -08002569 $(E) "[HOSTLD] Linking $@"
nnobleebebb7e2014-12-10 16:31:01 -08002570 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08002571 $(Q) $(HOST_LDXX) $(HOST_LDFLAGS) $(CPP_PLUGIN_OBJS) $(HOST_LDLIBSXX) $(HOST_LDLIBS) $(HOST_LDLIBS_PROTOC) -o bins/$(TGTDIR)/cpp_plugin
nnobleebebb7e2014-12-10 16:31:01 -08002572
2573deps_cpp_plugin: $(CPP_PLUGIN_DEPS)
2574
nnoble69ac39f2014-12-12 15:43:38 -08002575ifneq ($(NO_DEPS),true)
nnobleebebb7e2014-12-10 16:31:01 -08002576-include $(CPP_PLUGIN_DEPS)
2577endif
2578
2579clean_cpp_plugin:
2580 $(E) "[CLEAN] Cleaning cpp_plugin files"
2581 $(Q) $(RM) $(CPP_PLUGIN_OBJS)
2582 $(Q) $(RM) $(CPP_PLUGIN_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002583 $(Q) $(RM) bins/$(TGTDIR)/cpp_plugin
nnobleebebb7e2014-12-10 16:31:01 -08002584
2585
2586RUBY_PLUGIN_SRC = \
2587 src/compiler/ruby_plugin.cpp \
2588 src/compiler/ruby_generator.cpp \
2589
ctiller09cb6d52014-12-19 17:38:22 -08002590RUBY_PLUGIN_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(RUBY_PLUGIN_SRC))))
2591RUBY_PLUGIN_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(RUBY_PLUGIN_SRC))))
nnobleebebb7e2014-12-10 16:31:01 -08002592
ctiller09cb6d52014-12-19 17:38:22 -08002593bins/$(TGTDIR)/ruby_plugin: $(RUBY_PLUGIN_OBJS)
nnoble72309c62014-12-12 11:42:26 -08002594 $(E) "[HOSTLD] Linking $@"
nnobleebebb7e2014-12-10 16:31:01 -08002595 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08002596 $(Q) $(HOST_LDXX) $(HOST_LDFLAGS) $(RUBY_PLUGIN_OBJS) $(HOST_LDLIBSXX) $(HOST_LDLIBS) $(HOST_LDLIBS_PROTOC) -o bins/$(TGTDIR)/ruby_plugin
nnobleebebb7e2014-12-10 16:31:01 -08002597
2598deps_ruby_plugin: $(RUBY_PLUGIN_DEPS)
2599
nnoble69ac39f2014-12-12 15:43:38 -08002600ifneq ($(NO_DEPS),true)
nnobleebebb7e2014-12-10 16:31:01 -08002601-include $(RUBY_PLUGIN_DEPS)
2602endif
2603
2604clean_ruby_plugin:
2605 $(E) "[CLEAN] Cleaning ruby_plugin files"
2606 $(Q) $(RM) $(RUBY_PLUGIN_OBJS)
2607 $(Q) $(RM) $(RUBY_PLUGIN_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002608 $(Q) $(RM) bins/$(TGTDIR)/ruby_plugin
nnobleebebb7e2014-12-10 16:31:01 -08002609
2610
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002611GRPC_BYTE_BUFFER_READER_TEST_SRC = \
2612 test/core/surface/byte_buffer_reader_test.c \
2613
ctiller09cb6d52014-12-19 17:38:22 -08002614GRPC_BYTE_BUFFER_READER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GRPC_BYTE_BUFFER_READER_TEST_SRC))))
2615GRPC_BYTE_BUFFER_READER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GRPC_BYTE_BUFFER_READER_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002616
nnoble69ac39f2014-12-12 15:43:38 -08002617ifeq ($(NO_SECURE),true)
2618
ctiller09cb6d52014-12-19 17:38:22 -08002619bins/$(TGTDIR)/grpc_byte_buffer_reader_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08002620
2621else
2622
ctiller09cb6d52014-12-19 17:38:22 -08002623bins/$(TGTDIR)/grpc_byte_buffer_reader_test: $(GRPC_BYTE_BUFFER_READER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002624 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08002625 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08002626 $(Q) $(LD) $(LDFLAGS) $(GRPC_BYTE_BUFFER_READER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/grpc_byte_buffer_reader_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002627
nnoble69ac39f2014-12-12 15:43:38 -08002628endif
2629
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002630deps_grpc_byte_buffer_reader_test: $(GRPC_BYTE_BUFFER_READER_TEST_DEPS)
2631
nnoble69ac39f2014-12-12 15:43:38 -08002632ifneq ($(NO_SECURE),true)
2633ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002634-include $(GRPC_BYTE_BUFFER_READER_TEST_DEPS)
2635endif
nnoble69ac39f2014-12-12 15:43:38 -08002636endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002637
2638clean_grpc_byte_buffer_reader_test:
2639 $(E) "[CLEAN] Cleaning grpc_byte_buffer_reader_test files"
2640 $(Q) $(RM) $(GRPC_BYTE_BUFFER_READER_TEST_OBJS)
2641 $(Q) $(RM) $(GRPC_BYTE_BUFFER_READER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002642 $(Q) $(RM) bins/$(TGTDIR)/grpc_byte_buffer_reader_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002643
2644
2645GPR_CANCELLABLE_TEST_SRC = \
2646 test/core/support/cancellable_test.c \
2647
ctiller09cb6d52014-12-19 17:38:22 -08002648GPR_CANCELLABLE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GPR_CANCELLABLE_TEST_SRC))))
2649GPR_CANCELLABLE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GPR_CANCELLABLE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002650
nnoble69ac39f2014-12-12 15:43:38 -08002651ifeq ($(NO_SECURE),true)
2652
ctiller09cb6d52014-12-19 17:38:22 -08002653bins/$(TGTDIR)/gpr_cancellable_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08002654
2655else
2656
ctiller09cb6d52014-12-19 17:38:22 -08002657bins/$(TGTDIR)/gpr_cancellable_test: $(GPR_CANCELLABLE_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002658 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08002659 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08002660 $(Q) $(LD) $(LDFLAGS) $(GPR_CANCELLABLE_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/gpr_cancellable_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002661
nnoble69ac39f2014-12-12 15:43:38 -08002662endif
2663
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002664deps_gpr_cancellable_test: $(GPR_CANCELLABLE_TEST_DEPS)
2665
nnoble69ac39f2014-12-12 15:43:38 -08002666ifneq ($(NO_SECURE),true)
2667ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002668-include $(GPR_CANCELLABLE_TEST_DEPS)
2669endif
nnoble69ac39f2014-12-12 15:43:38 -08002670endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002671
2672clean_gpr_cancellable_test:
2673 $(E) "[CLEAN] Cleaning gpr_cancellable_test files"
2674 $(Q) $(RM) $(GPR_CANCELLABLE_TEST_OBJS)
2675 $(Q) $(RM) $(GPR_CANCELLABLE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002676 $(Q) $(RM) bins/$(TGTDIR)/gpr_cancellable_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002677
2678
2679GPR_LOG_TEST_SRC = \
2680 test/core/support/log_test.c \
2681
ctiller09cb6d52014-12-19 17:38:22 -08002682GPR_LOG_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GPR_LOG_TEST_SRC))))
2683GPR_LOG_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GPR_LOG_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002684
nnoble69ac39f2014-12-12 15:43:38 -08002685ifeq ($(NO_SECURE),true)
2686
ctiller09cb6d52014-12-19 17:38:22 -08002687bins/$(TGTDIR)/gpr_log_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08002688
2689else
2690
ctiller09cb6d52014-12-19 17:38:22 -08002691bins/$(TGTDIR)/gpr_log_test: $(GPR_LOG_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002692 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08002693 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08002694 $(Q) $(LD) $(LDFLAGS) $(GPR_LOG_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/gpr_log_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002695
nnoble69ac39f2014-12-12 15:43:38 -08002696endif
2697
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002698deps_gpr_log_test: $(GPR_LOG_TEST_DEPS)
2699
nnoble69ac39f2014-12-12 15:43:38 -08002700ifneq ($(NO_SECURE),true)
2701ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002702-include $(GPR_LOG_TEST_DEPS)
2703endif
nnoble69ac39f2014-12-12 15:43:38 -08002704endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002705
2706clean_gpr_log_test:
2707 $(E) "[CLEAN] Cleaning gpr_log_test files"
2708 $(Q) $(RM) $(GPR_LOG_TEST_OBJS)
2709 $(Q) $(RM) $(GPR_LOG_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002710 $(Q) $(RM) bins/$(TGTDIR)/gpr_log_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002711
2712
ctiller5e04b132014-12-15 09:24:43 -08002713GPR_USEFUL_TEST_SRC = \
2714 test/core/support/useful_test.c \
2715
ctiller09cb6d52014-12-19 17:38:22 -08002716GPR_USEFUL_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GPR_USEFUL_TEST_SRC))))
2717GPR_USEFUL_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GPR_USEFUL_TEST_SRC))))
ctiller5e04b132014-12-15 09:24:43 -08002718
2719ifeq ($(NO_SECURE),true)
2720
ctiller09cb6d52014-12-19 17:38:22 -08002721bins/$(TGTDIR)/gpr_useful_test: openssl_dep_error
ctiller5e04b132014-12-15 09:24:43 -08002722
2723else
2724
ctiller09cb6d52014-12-19 17:38:22 -08002725bins/$(TGTDIR)/gpr_useful_test: $(GPR_USEFUL_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a
ctiller5e04b132014-12-15 09:24:43 -08002726 $(E) "[LD] Linking $@"
2727 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08002728 $(Q) $(LD) $(LDFLAGS) $(GPR_USEFUL_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/gpr_useful_test
ctiller5e04b132014-12-15 09:24:43 -08002729
2730endif
2731
2732deps_gpr_useful_test: $(GPR_USEFUL_TEST_DEPS)
2733
2734ifneq ($(NO_SECURE),true)
2735ifneq ($(NO_DEPS),true)
2736-include $(GPR_USEFUL_TEST_DEPS)
2737endif
2738endif
2739
2740clean_gpr_useful_test:
2741 $(E) "[CLEAN] Cleaning gpr_useful_test files"
2742 $(Q) $(RM) $(GPR_USEFUL_TEST_OBJS)
2743 $(Q) $(RM) $(GPR_USEFUL_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002744 $(Q) $(RM) bins/$(TGTDIR)/gpr_useful_test
ctiller5e04b132014-12-15 09:24:43 -08002745
2746
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002747GPR_CMDLINE_TEST_SRC = \
2748 test/core/support/cmdline_test.c \
2749
ctiller09cb6d52014-12-19 17:38:22 -08002750GPR_CMDLINE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GPR_CMDLINE_TEST_SRC))))
2751GPR_CMDLINE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GPR_CMDLINE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002752
nnoble69ac39f2014-12-12 15:43:38 -08002753ifeq ($(NO_SECURE),true)
2754
ctiller09cb6d52014-12-19 17:38:22 -08002755bins/$(TGTDIR)/gpr_cmdline_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08002756
2757else
2758
ctiller09cb6d52014-12-19 17:38:22 -08002759bins/$(TGTDIR)/gpr_cmdline_test: $(GPR_CMDLINE_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002760 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08002761 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08002762 $(Q) $(LD) $(LDFLAGS) $(GPR_CMDLINE_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/gpr_cmdline_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002763
nnoble69ac39f2014-12-12 15:43:38 -08002764endif
2765
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002766deps_gpr_cmdline_test: $(GPR_CMDLINE_TEST_DEPS)
2767
nnoble69ac39f2014-12-12 15:43:38 -08002768ifneq ($(NO_SECURE),true)
2769ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002770-include $(GPR_CMDLINE_TEST_DEPS)
2771endif
nnoble69ac39f2014-12-12 15:43:38 -08002772endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002773
2774clean_gpr_cmdline_test:
2775 $(E) "[CLEAN] Cleaning gpr_cmdline_test files"
2776 $(Q) $(RM) $(GPR_CMDLINE_TEST_OBJS)
2777 $(Q) $(RM) $(GPR_CMDLINE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002778 $(Q) $(RM) bins/$(TGTDIR)/gpr_cmdline_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002779
2780
2781GPR_HISTOGRAM_TEST_SRC = \
2782 test/core/support/histogram_test.c \
2783
ctiller09cb6d52014-12-19 17:38:22 -08002784GPR_HISTOGRAM_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GPR_HISTOGRAM_TEST_SRC))))
2785GPR_HISTOGRAM_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GPR_HISTOGRAM_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002786
nnoble69ac39f2014-12-12 15:43:38 -08002787ifeq ($(NO_SECURE),true)
2788
ctiller09cb6d52014-12-19 17:38:22 -08002789bins/$(TGTDIR)/gpr_histogram_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08002790
2791else
2792
ctiller09cb6d52014-12-19 17:38:22 -08002793bins/$(TGTDIR)/gpr_histogram_test: $(GPR_HISTOGRAM_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002794 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08002795 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08002796 $(Q) $(LD) $(LDFLAGS) $(GPR_HISTOGRAM_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/gpr_histogram_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002797
nnoble69ac39f2014-12-12 15:43:38 -08002798endif
2799
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002800deps_gpr_histogram_test: $(GPR_HISTOGRAM_TEST_DEPS)
2801
nnoble69ac39f2014-12-12 15:43:38 -08002802ifneq ($(NO_SECURE),true)
2803ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002804-include $(GPR_HISTOGRAM_TEST_DEPS)
2805endif
nnoble69ac39f2014-12-12 15:43:38 -08002806endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002807
2808clean_gpr_histogram_test:
2809 $(E) "[CLEAN] Cleaning gpr_histogram_test files"
2810 $(Q) $(RM) $(GPR_HISTOGRAM_TEST_OBJS)
2811 $(Q) $(RM) $(GPR_HISTOGRAM_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002812 $(Q) $(RM) bins/$(TGTDIR)/gpr_histogram_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002813
2814
2815GPR_HOST_PORT_TEST_SRC = \
2816 test/core/support/host_port_test.c \
2817
ctiller09cb6d52014-12-19 17:38:22 -08002818GPR_HOST_PORT_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GPR_HOST_PORT_TEST_SRC))))
2819GPR_HOST_PORT_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GPR_HOST_PORT_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002820
nnoble69ac39f2014-12-12 15:43:38 -08002821ifeq ($(NO_SECURE),true)
2822
ctiller09cb6d52014-12-19 17:38:22 -08002823bins/$(TGTDIR)/gpr_host_port_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08002824
2825else
2826
ctiller09cb6d52014-12-19 17:38:22 -08002827bins/$(TGTDIR)/gpr_host_port_test: $(GPR_HOST_PORT_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002828 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08002829 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08002830 $(Q) $(LD) $(LDFLAGS) $(GPR_HOST_PORT_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/gpr_host_port_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002831
nnoble69ac39f2014-12-12 15:43:38 -08002832endif
2833
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002834deps_gpr_host_port_test: $(GPR_HOST_PORT_TEST_DEPS)
2835
nnoble69ac39f2014-12-12 15:43:38 -08002836ifneq ($(NO_SECURE),true)
2837ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002838-include $(GPR_HOST_PORT_TEST_DEPS)
2839endif
nnoble69ac39f2014-12-12 15:43:38 -08002840endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002841
2842clean_gpr_host_port_test:
2843 $(E) "[CLEAN] Cleaning gpr_host_port_test files"
2844 $(Q) $(RM) $(GPR_HOST_PORT_TEST_OBJS)
2845 $(Q) $(RM) $(GPR_HOST_PORT_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002846 $(Q) $(RM) bins/$(TGTDIR)/gpr_host_port_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002847
2848
2849GPR_SLICE_BUFFER_TEST_SRC = \
2850 test/core/support/slice_buffer_test.c \
2851
ctiller09cb6d52014-12-19 17:38:22 -08002852GPR_SLICE_BUFFER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GPR_SLICE_BUFFER_TEST_SRC))))
2853GPR_SLICE_BUFFER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GPR_SLICE_BUFFER_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002854
nnoble69ac39f2014-12-12 15:43:38 -08002855ifeq ($(NO_SECURE),true)
2856
ctiller09cb6d52014-12-19 17:38:22 -08002857bins/$(TGTDIR)/gpr_slice_buffer_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08002858
2859else
2860
ctiller09cb6d52014-12-19 17:38:22 -08002861bins/$(TGTDIR)/gpr_slice_buffer_test: $(GPR_SLICE_BUFFER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002862 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08002863 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08002864 $(Q) $(LD) $(LDFLAGS) $(GPR_SLICE_BUFFER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/gpr_slice_buffer_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002865
nnoble69ac39f2014-12-12 15:43:38 -08002866endif
2867
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002868deps_gpr_slice_buffer_test: $(GPR_SLICE_BUFFER_TEST_DEPS)
2869
nnoble69ac39f2014-12-12 15:43:38 -08002870ifneq ($(NO_SECURE),true)
2871ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002872-include $(GPR_SLICE_BUFFER_TEST_DEPS)
2873endif
nnoble69ac39f2014-12-12 15:43:38 -08002874endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002875
2876clean_gpr_slice_buffer_test:
2877 $(E) "[CLEAN] Cleaning gpr_slice_buffer_test files"
2878 $(Q) $(RM) $(GPR_SLICE_BUFFER_TEST_OBJS)
2879 $(Q) $(RM) $(GPR_SLICE_BUFFER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002880 $(Q) $(RM) bins/$(TGTDIR)/gpr_slice_buffer_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002881
2882
2883GPR_SLICE_TEST_SRC = \
2884 test/core/support/slice_test.c \
2885
ctiller09cb6d52014-12-19 17:38:22 -08002886GPR_SLICE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GPR_SLICE_TEST_SRC))))
2887GPR_SLICE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GPR_SLICE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002888
nnoble69ac39f2014-12-12 15:43:38 -08002889ifeq ($(NO_SECURE),true)
2890
ctiller09cb6d52014-12-19 17:38:22 -08002891bins/$(TGTDIR)/gpr_slice_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08002892
2893else
2894
ctiller09cb6d52014-12-19 17:38:22 -08002895bins/$(TGTDIR)/gpr_slice_test: $(GPR_SLICE_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002896 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08002897 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08002898 $(Q) $(LD) $(LDFLAGS) $(GPR_SLICE_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/gpr_slice_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002899
nnoble69ac39f2014-12-12 15:43:38 -08002900endif
2901
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002902deps_gpr_slice_test: $(GPR_SLICE_TEST_DEPS)
2903
nnoble69ac39f2014-12-12 15:43:38 -08002904ifneq ($(NO_SECURE),true)
2905ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002906-include $(GPR_SLICE_TEST_DEPS)
2907endif
nnoble69ac39f2014-12-12 15:43:38 -08002908endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002909
2910clean_gpr_slice_test:
2911 $(E) "[CLEAN] Cleaning gpr_slice_test files"
2912 $(Q) $(RM) $(GPR_SLICE_TEST_OBJS)
2913 $(Q) $(RM) $(GPR_SLICE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002914 $(Q) $(RM) bins/$(TGTDIR)/gpr_slice_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002915
2916
2917GPR_STRING_TEST_SRC = \
2918 test/core/support/string_test.c \
2919
ctiller09cb6d52014-12-19 17:38:22 -08002920GPR_STRING_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GPR_STRING_TEST_SRC))))
2921GPR_STRING_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GPR_STRING_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002922
nnoble69ac39f2014-12-12 15:43:38 -08002923ifeq ($(NO_SECURE),true)
2924
ctiller09cb6d52014-12-19 17:38:22 -08002925bins/$(TGTDIR)/gpr_string_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08002926
2927else
2928
ctiller09cb6d52014-12-19 17:38:22 -08002929bins/$(TGTDIR)/gpr_string_test: $(GPR_STRING_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002930 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08002931 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08002932 $(Q) $(LD) $(LDFLAGS) $(GPR_STRING_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/gpr_string_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002933
nnoble69ac39f2014-12-12 15:43:38 -08002934endif
2935
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002936deps_gpr_string_test: $(GPR_STRING_TEST_DEPS)
2937
nnoble69ac39f2014-12-12 15:43:38 -08002938ifneq ($(NO_SECURE),true)
2939ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002940-include $(GPR_STRING_TEST_DEPS)
2941endif
nnoble69ac39f2014-12-12 15:43:38 -08002942endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002943
2944clean_gpr_string_test:
2945 $(E) "[CLEAN] Cleaning gpr_string_test files"
2946 $(Q) $(RM) $(GPR_STRING_TEST_OBJS)
2947 $(Q) $(RM) $(GPR_STRING_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002948 $(Q) $(RM) bins/$(TGTDIR)/gpr_string_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002949
2950
2951GPR_SYNC_TEST_SRC = \
2952 test/core/support/sync_test.c \
2953
ctiller09cb6d52014-12-19 17:38:22 -08002954GPR_SYNC_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GPR_SYNC_TEST_SRC))))
2955GPR_SYNC_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GPR_SYNC_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002956
nnoble69ac39f2014-12-12 15:43:38 -08002957ifeq ($(NO_SECURE),true)
2958
ctiller09cb6d52014-12-19 17:38:22 -08002959bins/$(TGTDIR)/gpr_sync_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08002960
2961else
2962
ctiller09cb6d52014-12-19 17:38:22 -08002963bins/$(TGTDIR)/gpr_sync_test: $(GPR_SYNC_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002964 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08002965 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08002966 $(Q) $(LD) $(LDFLAGS) $(GPR_SYNC_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/gpr_sync_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002967
nnoble69ac39f2014-12-12 15:43:38 -08002968endif
2969
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002970deps_gpr_sync_test: $(GPR_SYNC_TEST_DEPS)
2971
nnoble69ac39f2014-12-12 15:43:38 -08002972ifneq ($(NO_SECURE),true)
2973ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002974-include $(GPR_SYNC_TEST_DEPS)
2975endif
nnoble69ac39f2014-12-12 15:43:38 -08002976endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002977
2978clean_gpr_sync_test:
2979 $(E) "[CLEAN] Cleaning gpr_sync_test files"
2980 $(Q) $(RM) $(GPR_SYNC_TEST_OBJS)
2981 $(Q) $(RM) $(GPR_SYNC_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08002982 $(Q) $(RM) bins/$(TGTDIR)/gpr_sync_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002983
2984
2985GPR_THD_TEST_SRC = \
2986 test/core/support/thd_test.c \
2987
ctiller09cb6d52014-12-19 17:38:22 -08002988GPR_THD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GPR_THD_TEST_SRC))))
2989GPR_THD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GPR_THD_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002990
nnoble69ac39f2014-12-12 15:43:38 -08002991ifeq ($(NO_SECURE),true)
2992
ctiller09cb6d52014-12-19 17:38:22 -08002993bins/$(TGTDIR)/gpr_thd_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08002994
2995else
2996
ctiller09cb6d52014-12-19 17:38:22 -08002997bins/$(TGTDIR)/gpr_thd_test: $(GPR_THD_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002998 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08002999 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003000 $(Q) $(LD) $(LDFLAGS) $(GPR_THD_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/gpr_thd_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003001
nnoble69ac39f2014-12-12 15:43:38 -08003002endif
3003
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003004deps_gpr_thd_test: $(GPR_THD_TEST_DEPS)
3005
nnoble69ac39f2014-12-12 15:43:38 -08003006ifneq ($(NO_SECURE),true)
3007ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003008-include $(GPR_THD_TEST_DEPS)
3009endif
nnoble69ac39f2014-12-12 15:43:38 -08003010endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003011
3012clean_gpr_thd_test:
3013 $(E) "[CLEAN] Cleaning gpr_thd_test files"
3014 $(Q) $(RM) $(GPR_THD_TEST_OBJS)
3015 $(Q) $(RM) $(GPR_THD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003016 $(Q) $(RM) bins/$(TGTDIR)/gpr_thd_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003017
3018
3019GPR_TIME_TEST_SRC = \
3020 test/core/support/time_test.c \
3021
ctiller09cb6d52014-12-19 17:38:22 -08003022GPR_TIME_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GPR_TIME_TEST_SRC))))
3023GPR_TIME_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GPR_TIME_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003024
nnoble69ac39f2014-12-12 15:43:38 -08003025ifeq ($(NO_SECURE),true)
3026
ctiller09cb6d52014-12-19 17:38:22 -08003027bins/$(TGTDIR)/gpr_time_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003028
3029else
3030
ctiller09cb6d52014-12-19 17:38:22 -08003031bins/$(TGTDIR)/gpr_time_test: $(GPR_TIME_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003032 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003033 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003034 $(Q) $(LD) $(LDFLAGS) $(GPR_TIME_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/gpr_time_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003035
nnoble69ac39f2014-12-12 15:43:38 -08003036endif
3037
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003038deps_gpr_time_test: $(GPR_TIME_TEST_DEPS)
3039
nnoble69ac39f2014-12-12 15:43:38 -08003040ifneq ($(NO_SECURE),true)
3041ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003042-include $(GPR_TIME_TEST_DEPS)
3043endif
nnoble69ac39f2014-12-12 15:43:38 -08003044endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003045
3046clean_gpr_time_test:
3047 $(E) "[CLEAN] Cleaning gpr_time_test files"
3048 $(Q) $(RM) $(GPR_TIME_TEST_OBJS)
3049 $(Q) $(RM) $(GPR_TIME_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003050 $(Q) $(RM) bins/$(TGTDIR)/gpr_time_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003051
3052
3053MURMUR_HASH_TEST_SRC = \
3054 test/core/support/murmur_hash_test.c \
3055
ctiller09cb6d52014-12-19 17:38:22 -08003056MURMUR_HASH_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(MURMUR_HASH_TEST_SRC))))
3057MURMUR_HASH_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(MURMUR_HASH_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003058
nnoble69ac39f2014-12-12 15:43:38 -08003059ifeq ($(NO_SECURE),true)
3060
ctiller09cb6d52014-12-19 17:38:22 -08003061bins/$(TGTDIR)/murmur_hash_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003062
3063else
3064
ctiller09cb6d52014-12-19 17:38:22 -08003065bins/$(TGTDIR)/murmur_hash_test: $(MURMUR_HASH_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003066 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003067 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003068 $(Q) $(LD) $(LDFLAGS) $(MURMUR_HASH_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/murmur_hash_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003069
nnoble69ac39f2014-12-12 15:43:38 -08003070endif
3071
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003072deps_murmur_hash_test: $(MURMUR_HASH_TEST_DEPS)
3073
nnoble69ac39f2014-12-12 15:43:38 -08003074ifneq ($(NO_SECURE),true)
3075ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003076-include $(MURMUR_HASH_TEST_DEPS)
3077endif
nnoble69ac39f2014-12-12 15:43:38 -08003078endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003079
3080clean_murmur_hash_test:
3081 $(E) "[CLEAN] Cleaning murmur_hash_test files"
3082 $(Q) $(RM) $(MURMUR_HASH_TEST_OBJS)
3083 $(Q) $(RM) $(MURMUR_HASH_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003084 $(Q) $(RM) bins/$(TGTDIR)/murmur_hash_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003085
3086
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003087GRPC_STREAM_OP_TEST_SRC = \
3088 test/core/transport/stream_op_test.c \
3089
ctiller09cb6d52014-12-19 17:38:22 -08003090GRPC_STREAM_OP_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GRPC_STREAM_OP_TEST_SRC))))
3091GRPC_STREAM_OP_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GRPC_STREAM_OP_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003092
nnoble69ac39f2014-12-12 15:43:38 -08003093ifeq ($(NO_SECURE),true)
3094
ctiller09cb6d52014-12-19 17:38:22 -08003095bins/$(TGTDIR)/grpc_stream_op_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003096
3097else
3098
ctiller09cb6d52014-12-19 17:38:22 -08003099bins/$(TGTDIR)/grpc_stream_op_test: $(GRPC_STREAM_OP_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003100 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003101 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003102 $(Q) $(LD) $(LDFLAGS) $(GRPC_STREAM_OP_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/grpc_stream_op_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003103
nnoble69ac39f2014-12-12 15:43:38 -08003104endif
3105
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003106deps_grpc_stream_op_test: $(GRPC_STREAM_OP_TEST_DEPS)
3107
nnoble69ac39f2014-12-12 15:43:38 -08003108ifneq ($(NO_SECURE),true)
3109ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003110-include $(GRPC_STREAM_OP_TEST_DEPS)
3111endif
nnoble69ac39f2014-12-12 15:43:38 -08003112endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003113
3114clean_grpc_stream_op_test:
3115 $(E) "[CLEAN] Cleaning grpc_stream_op_test files"
3116 $(Q) $(RM) $(GRPC_STREAM_OP_TEST_OBJS)
3117 $(Q) $(RM) $(GRPC_STREAM_OP_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003118 $(Q) $(RM) bins/$(TGTDIR)/grpc_stream_op_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003119
3120
nnoble0c475f02014-12-05 15:37:39 -08003121ALPN_TEST_SRC = \
3122 test/core/transport/chttp2/alpn_test.c \
3123
ctiller09cb6d52014-12-19 17:38:22 -08003124ALPN_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(ALPN_TEST_SRC))))
3125ALPN_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(ALPN_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08003126
nnoble69ac39f2014-12-12 15:43:38 -08003127ifeq ($(NO_SECURE),true)
3128
ctiller09cb6d52014-12-19 17:38:22 -08003129bins/$(TGTDIR)/alpn_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003130
3131else
3132
ctiller09cb6d52014-12-19 17:38:22 -08003133bins/$(TGTDIR)/alpn_test: $(ALPN_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08003134 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003135 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003136 $(Q) $(LD) $(LDFLAGS) $(ALPN_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/alpn_test
nnoble0c475f02014-12-05 15:37:39 -08003137
nnoble69ac39f2014-12-12 15:43:38 -08003138endif
3139
nnoble0c475f02014-12-05 15:37:39 -08003140deps_alpn_test: $(ALPN_TEST_DEPS)
3141
nnoble69ac39f2014-12-12 15:43:38 -08003142ifneq ($(NO_SECURE),true)
3143ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08003144-include $(ALPN_TEST_DEPS)
3145endif
nnoble69ac39f2014-12-12 15:43:38 -08003146endif
nnoble0c475f02014-12-05 15:37:39 -08003147
3148clean_alpn_test:
3149 $(E) "[CLEAN] Cleaning alpn_test files"
3150 $(Q) $(RM) $(ALPN_TEST_OBJS)
3151 $(Q) $(RM) $(ALPN_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003152 $(Q) $(RM) bins/$(TGTDIR)/alpn_test
nnoble0c475f02014-12-05 15:37:39 -08003153
3154
ctillerc1ddffb2014-12-15 13:08:18 -08003155TIME_AVERAGED_STATS_TEST_SRC = \
3156 test/core/iomgr/time_averaged_stats_test.c \
3157
ctiller09cb6d52014-12-19 17:38:22 -08003158TIME_AVERAGED_STATS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(TIME_AVERAGED_STATS_TEST_SRC))))
3159TIME_AVERAGED_STATS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(TIME_AVERAGED_STATS_TEST_SRC))))
ctillerc1ddffb2014-12-15 13:08:18 -08003160
3161ifeq ($(NO_SECURE),true)
3162
ctiller09cb6d52014-12-19 17:38:22 -08003163bins/$(TGTDIR)/time_averaged_stats_test: openssl_dep_error
ctillerc1ddffb2014-12-15 13:08:18 -08003164
3165else
3166
ctiller09cb6d52014-12-19 17:38:22 -08003167bins/$(TGTDIR)/time_averaged_stats_test: $(TIME_AVERAGED_STATS_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctillerc1ddffb2014-12-15 13:08:18 -08003168 $(E) "[LD] Linking $@"
3169 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003170 $(Q) $(LD) $(LDFLAGS) $(TIME_AVERAGED_STATS_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/time_averaged_stats_test
ctillerc1ddffb2014-12-15 13:08:18 -08003171
3172endif
3173
3174deps_time_averaged_stats_test: $(TIME_AVERAGED_STATS_TEST_DEPS)
3175
3176ifneq ($(NO_SECURE),true)
3177ifneq ($(NO_DEPS),true)
3178-include $(TIME_AVERAGED_STATS_TEST_DEPS)
3179endif
3180endif
3181
3182clean_time_averaged_stats_test:
3183 $(E) "[CLEAN] Cleaning time_averaged_stats_test files"
3184 $(Q) $(RM) $(TIME_AVERAGED_STATS_TEST_OBJS)
3185 $(Q) $(RM) $(TIME_AVERAGED_STATS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003186 $(Q) $(RM) bins/$(TGTDIR)/time_averaged_stats_test
ctillerc1ddffb2014-12-15 13:08:18 -08003187
3188
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003189CHTTP2_STREAM_ENCODER_TEST_SRC = \
3190 test/core/transport/chttp2/stream_encoder_test.c \
3191
ctiller09cb6d52014-12-19 17:38:22 -08003192CHTTP2_STREAM_ENCODER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_STREAM_ENCODER_TEST_SRC))))
3193CHTTP2_STREAM_ENCODER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_STREAM_ENCODER_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003194
nnoble69ac39f2014-12-12 15:43:38 -08003195ifeq ($(NO_SECURE),true)
3196
ctiller09cb6d52014-12-19 17:38:22 -08003197bins/$(TGTDIR)/chttp2_stream_encoder_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003198
3199else
3200
ctiller09cb6d52014-12-19 17:38:22 -08003201bins/$(TGTDIR)/chttp2_stream_encoder_test: $(CHTTP2_STREAM_ENCODER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003202 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003203 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003204 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_STREAM_ENCODER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_stream_encoder_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003205
nnoble69ac39f2014-12-12 15:43:38 -08003206endif
3207
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003208deps_chttp2_stream_encoder_test: $(CHTTP2_STREAM_ENCODER_TEST_DEPS)
3209
nnoble69ac39f2014-12-12 15:43:38 -08003210ifneq ($(NO_SECURE),true)
3211ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003212-include $(CHTTP2_STREAM_ENCODER_TEST_DEPS)
3213endif
nnoble69ac39f2014-12-12 15:43:38 -08003214endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003215
3216clean_chttp2_stream_encoder_test:
3217 $(E) "[CLEAN] Cleaning chttp2_stream_encoder_test files"
3218 $(Q) $(RM) $(CHTTP2_STREAM_ENCODER_TEST_OBJS)
3219 $(Q) $(RM) $(CHTTP2_STREAM_ENCODER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003220 $(Q) $(RM) bins/$(TGTDIR)/chttp2_stream_encoder_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003221
3222
3223HPACK_TABLE_TEST_SRC = \
3224 test/core/transport/chttp2/hpack_table_test.c \
3225
ctiller09cb6d52014-12-19 17:38:22 -08003226HPACK_TABLE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(HPACK_TABLE_TEST_SRC))))
3227HPACK_TABLE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(HPACK_TABLE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003228
nnoble69ac39f2014-12-12 15:43:38 -08003229ifeq ($(NO_SECURE),true)
3230
ctiller09cb6d52014-12-19 17:38:22 -08003231bins/$(TGTDIR)/hpack_table_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003232
3233else
3234
ctiller09cb6d52014-12-19 17:38:22 -08003235bins/$(TGTDIR)/hpack_table_test: $(HPACK_TABLE_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003236 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003237 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003238 $(Q) $(LD) $(LDFLAGS) $(HPACK_TABLE_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/hpack_table_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003239
nnoble69ac39f2014-12-12 15:43:38 -08003240endif
3241
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003242deps_hpack_table_test: $(HPACK_TABLE_TEST_DEPS)
3243
nnoble69ac39f2014-12-12 15:43:38 -08003244ifneq ($(NO_SECURE),true)
3245ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003246-include $(HPACK_TABLE_TEST_DEPS)
3247endif
nnoble69ac39f2014-12-12 15:43:38 -08003248endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003249
3250clean_hpack_table_test:
3251 $(E) "[CLEAN] Cleaning hpack_table_test files"
3252 $(Q) $(RM) $(HPACK_TABLE_TEST_OBJS)
3253 $(Q) $(RM) $(HPACK_TABLE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003254 $(Q) $(RM) bins/$(TGTDIR)/hpack_table_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003255
3256
3257CHTTP2_STREAM_MAP_TEST_SRC = \
3258 test/core/transport/chttp2/stream_map_test.c \
3259
ctiller09cb6d52014-12-19 17:38:22 -08003260CHTTP2_STREAM_MAP_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_STREAM_MAP_TEST_SRC))))
3261CHTTP2_STREAM_MAP_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_STREAM_MAP_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003262
nnoble69ac39f2014-12-12 15:43:38 -08003263ifeq ($(NO_SECURE),true)
3264
ctiller09cb6d52014-12-19 17:38:22 -08003265bins/$(TGTDIR)/chttp2_stream_map_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003266
3267else
3268
ctiller09cb6d52014-12-19 17:38:22 -08003269bins/$(TGTDIR)/chttp2_stream_map_test: $(CHTTP2_STREAM_MAP_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003270 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003271 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003272 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_STREAM_MAP_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_stream_map_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003273
nnoble69ac39f2014-12-12 15:43:38 -08003274endif
3275
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003276deps_chttp2_stream_map_test: $(CHTTP2_STREAM_MAP_TEST_DEPS)
3277
nnoble69ac39f2014-12-12 15:43:38 -08003278ifneq ($(NO_SECURE),true)
3279ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003280-include $(CHTTP2_STREAM_MAP_TEST_DEPS)
3281endif
nnoble69ac39f2014-12-12 15:43:38 -08003282endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003283
3284clean_chttp2_stream_map_test:
3285 $(E) "[CLEAN] Cleaning chttp2_stream_map_test files"
3286 $(Q) $(RM) $(CHTTP2_STREAM_MAP_TEST_OBJS)
3287 $(Q) $(RM) $(CHTTP2_STREAM_MAP_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003288 $(Q) $(RM) bins/$(TGTDIR)/chttp2_stream_map_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003289
3290
3291HPACK_PARSER_TEST_SRC = \
3292 test/core/transport/chttp2/hpack_parser_test.c \
3293
ctiller09cb6d52014-12-19 17:38:22 -08003294HPACK_PARSER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(HPACK_PARSER_TEST_SRC))))
3295HPACK_PARSER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(HPACK_PARSER_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003296
nnoble69ac39f2014-12-12 15:43:38 -08003297ifeq ($(NO_SECURE),true)
3298
ctiller09cb6d52014-12-19 17:38:22 -08003299bins/$(TGTDIR)/hpack_parser_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003300
3301else
3302
ctiller09cb6d52014-12-19 17:38:22 -08003303bins/$(TGTDIR)/hpack_parser_test: $(HPACK_PARSER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003304 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003305 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003306 $(Q) $(LD) $(LDFLAGS) $(HPACK_PARSER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/hpack_parser_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003307
nnoble69ac39f2014-12-12 15:43:38 -08003308endif
3309
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003310deps_hpack_parser_test: $(HPACK_PARSER_TEST_DEPS)
3311
nnoble69ac39f2014-12-12 15:43:38 -08003312ifneq ($(NO_SECURE),true)
3313ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003314-include $(HPACK_PARSER_TEST_DEPS)
3315endif
nnoble69ac39f2014-12-12 15:43:38 -08003316endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003317
3318clean_hpack_parser_test:
3319 $(E) "[CLEAN] Cleaning hpack_parser_test files"
3320 $(Q) $(RM) $(HPACK_PARSER_TEST_OBJS)
3321 $(Q) $(RM) $(HPACK_PARSER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003322 $(Q) $(RM) bins/$(TGTDIR)/hpack_parser_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003323
3324
3325TRANSPORT_METADATA_TEST_SRC = \
3326 test/core/transport/metadata_test.c \
3327
ctiller09cb6d52014-12-19 17:38:22 -08003328TRANSPORT_METADATA_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(TRANSPORT_METADATA_TEST_SRC))))
3329TRANSPORT_METADATA_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(TRANSPORT_METADATA_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003330
nnoble69ac39f2014-12-12 15:43:38 -08003331ifeq ($(NO_SECURE),true)
3332
ctiller09cb6d52014-12-19 17:38:22 -08003333bins/$(TGTDIR)/transport_metadata_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003334
3335else
3336
ctiller09cb6d52014-12-19 17:38:22 -08003337bins/$(TGTDIR)/transport_metadata_test: $(TRANSPORT_METADATA_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003338 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003339 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003340 $(Q) $(LD) $(LDFLAGS) $(TRANSPORT_METADATA_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/transport_metadata_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003341
nnoble69ac39f2014-12-12 15:43:38 -08003342endif
3343
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003344deps_transport_metadata_test: $(TRANSPORT_METADATA_TEST_DEPS)
3345
nnoble69ac39f2014-12-12 15:43:38 -08003346ifneq ($(NO_SECURE),true)
3347ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003348-include $(TRANSPORT_METADATA_TEST_DEPS)
3349endif
nnoble69ac39f2014-12-12 15:43:38 -08003350endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003351
3352clean_transport_metadata_test:
3353 $(E) "[CLEAN] Cleaning transport_metadata_test files"
3354 $(Q) $(RM) $(TRANSPORT_METADATA_TEST_OBJS)
3355 $(Q) $(RM) $(TRANSPORT_METADATA_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003356 $(Q) $(RM) bins/$(TGTDIR)/transport_metadata_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003357
3358
3359CHTTP2_STATUS_CONVERSION_TEST_SRC = \
3360 test/core/transport/chttp2/status_conversion_test.c \
3361
ctiller09cb6d52014-12-19 17:38:22 -08003362CHTTP2_STATUS_CONVERSION_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_STATUS_CONVERSION_TEST_SRC))))
3363CHTTP2_STATUS_CONVERSION_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_STATUS_CONVERSION_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003364
nnoble69ac39f2014-12-12 15:43:38 -08003365ifeq ($(NO_SECURE),true)
3366
ctiller09cb6d52014-12-19 17:38:22 -08003367bins/$(TGTDIR)/chttp2_status_conversion_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003368
3369else
3370
ctiller09cb6d52014-12-19 17:38:22 -08003371bins/$(TGTDIR)/chttp2_status_conversion_test: $(CHTTP2_STATUS_CONVERSION_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003372 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003373 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003374 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_STATUS_CONVERSION_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_status_conversion_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003375
nnoble69ac39f2014-12-12 15:43:38 -08003376endif
3377
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003378deps_chttp2_status_conversion_test: $(CHTTP2_STATUS_CONVERSION_TEST_DEPS)
3379
nnoble69ac39f2014-12-12 15:43:38 -08003380ifneq ($(NO_SECURE),true)
3381ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003382-include $(CHTTP2_STATUS_CONVERSION_TEST_DEPS)
3383endif
nnoble69ac39f2014-12-12 15:43:38 -08003384endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003385
3386clean_chttp2_status_conversion_test:
3387 $(E) "[CLEAN] Cleaning chttp2_status_conversion_test files"
3388 $(Q) $(RM) $(CHTTP2_STATUS_CONVERSION_TEST_OBJS)
3389 $(Q) $(RM) $(CHTTP2_STATUS_CONVERSION_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003390 $(Q) $(RM) bins/$(TGTDIR)/chttp2_status_conversion_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003391
3392
3393CHTTP2_TRANSPORT_END2END_TEST_SRC = \
3394 test/core/transport/chttp2_transport_end2end_test.c \
3395
ctiller09cb6d52014-12-19 17:38:22 -08003396CHTTP2_TRANSPORT_END2END_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_TRANSPORT_END2END_TEST_SRC))))
3397CHTTP2_TRANSPORT_END2END_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_TRANSPORT_END2END_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003398
nnoble69ac39f2014-12-12 15:43:38 -08003399ifeq ($(NO_SECURE),true)
3400
ctiller09cb6d52014-12-19 17:38:22 -08003401bins/$(TGTDIR)/chttp2_transport_end2end_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003402
3403else
3404
ctiller09cb6d52014-12-19 17:38:22 -08003405bins/$(TGTDIR)/chttp2_transport_end2end_test: $(CHTTP2_TRANSPORT_END2END_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003406 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003407 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003408 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_TRANSPORT_END2END_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_transport_end2end_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003409
nnoble69ac39f2014-12-12 15:43:38 -08003410endif
3411
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003412deps_chttp2_transport_end2end_test: $(CHTTP2_TRANSPORT_END2END_TEST_DEPS)
3413
nnoble69ac39f2014-12-12 15:43:38 -08003414ifneq ($(NO_SECURE),true)
3415ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003416-include $(CHTTP2_TRANSPORT_END2END_TEST_DEPS)
3417endif
nnoble69ac39f2014-12-12 15:43:38 -08003418endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003419
3420clean_chttp2_transport_end2end_test:
3421 $(E) "[CLEAN] Cleaning chttp2_transport_end2end_test files"
3422 $(Q) $(RM) $(CHTTP2_TRANSPORT_END2END_TEST_OBJS)
3423 $(Q) $(RM) $(CHTTP2_TRANSPORT_END2END_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003424 $(Q) $(RM) bins/$(TGTDIR)/chttp2_transport_end2end_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003425
3426
ctiller18b49ab2014-12-09 14:39:16 -08003427TCP_POSIX_TEST_SRC = \
3428 test/core/iomgr/tcp_posix_test.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003429
ctiller09cb6d52014-12-19 17:38:22 -08003430TCP_POSIX_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(TCP_POSIX_TEST_SRC))))
3431TCP_POSIX_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(TCP_POSIX_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003432
nnoble69ac39f2014-12-12 15:43:38 -08003433ifeq ($(NO_SECURE),true)
3434
ctiller09cb6d52014-12-19 17:38:22 -08003435bins/$(TGTDIR)/tcp_posix_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003436
3437else
3438
ctiller09cb6d52014-12-19 17:38:22 -08003439bins/$(TGTDIR)/tcp_posix_test: $(TCP_POSIX_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003440 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003441 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003442 $(Q) $(LD) $(LDFLAGS) $(TCP_POSIX_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/tcp_posix_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003443
nnoble69ac39f2014-12-12 15:43:38 -08003444endif
3445
ctiller18b49ab2014-12-09 14:39:16 -08003446deps_tcp_posix_test: $(TCP_POSIX_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003447
nnoble69ac39f2014-12-12 15:43:38 -08003448ifneq ($(NO_SECURE),true)
3449ifneq ($(NO_DEPS),true)
ctiller18b49ab2014-12-09 14:39:16 -08003450-include $(TCP_POSIX_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003451endif
nnoble69ac39f2014-12-12 15:43:38 -08003452endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003453
ctiller18b49ab2014-12-09 14:39:16 -08003454clean_tcp_posix_test:
3455 $(E) "[CLEAN] Cleaning tcp_posix_test files"
3456 $(Q) $(RM) $(TCP_POSIX_TEST_OBJS)
3457 $(Q) $(RM) $(TCP_POSIX_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003458 $(Q) $(RM) bins/$(TGTDIR)/tcp_posix_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003459
3460
nnoble0c475f02014-12-05 15:37:39 -08003461DUALSTACK_SOCKET_TEST_SRC = \
3462 test/core/end2end/dualstack_socket_test.c \
3463
ctiller09cb6d52014-12-19 17:38:22 -08003464DUALSTACK_SOCKET_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(DUALSTACK_SOCKET_TEST_SRC))))
3465DUALSTACK_SOCKET_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(DUALSTACK_SOCKET_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08003466
nnoble69ac39f2014-12-12 15:43:38 -08003467ifeq ($(NO_SECURE),true)
3468
ctiller09cb6d52014-12-19 17:38:22 -08003469bins/$(TGTDIR)/dualstack_socket_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003470
3471else
3472
ctiller09cb6d52014-12-19 17:38:22 -08003473bins/$(TGTDIR)/dualstack_socket_test: $(DUALSTACK_SOCKET_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08003474 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003475 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003476 $(Q) $(LD) $(LDFLAGS) $(DUALSTACK_SOCKET_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/dualstack_socket_test
nnoble0c475f02014-12-05 15:37:39 -08003477
nnoble69ac39f2014-12-12 15:43:38 -08003478endif
3479
nnoble0c475f02014-12-05 15:37:39 -08003480deps_dualstack_socket_test: $(DUALSTACK_SOCKET_TEST_DEPS)
3481
nnoble69ac39f2014-12-12 15:43:38 -08003482ifneq ($(NO_SECURE),true)
3483ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08003484-include $(DUALSTACK_SOCKET_TEST_DEPS)
3485endif
nnoble69ac39f2014-12-12 15:43:38 -08003486endif
nnoble0c475f02014-12-05 15:37:39 -08003487
3488clean_dualstack_socket_test:
3489 $(E) "[CLEAN] Cleaning dualstack_socket_test files"
3490 $(Q) $(RM) $(DUALSTACK_SOCKET_TEST_OBJS)
3491 $(Q) $(RM) $(DUALSTACK_SOCKET_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003492 $(Q) $(RM) bins/$(TGTDIR)/dualstack_socket_test
nnoble0c475f02014-12-05 15:37:39 -08003493
3494
3495NO_SERVER_TEST_SRC = \
3496 test/core/end2end/no_server_test.c \
3497
ctiller09cb6d52014-12-19 17:38:22 -08003498NO_SERVER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(NO_SERVER_TEST_SRC))))
3499NO_SERVER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(NO_SERVER_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08003500
nnoble69ac39f2014-12-12 15:43:38 -08003501ifeq ($(NO_SECURE),true)
3502
ctiller09cb6d52014-12-19 17:38:22 -08003503bins/$(TGTDIR)/no_server_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003504
3505else
3506
ctiller09cb6d52014-12-19 17:38:22 -08003507bins/$(TGTDIR)/no_server_test: $(NO_SERVER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08003508 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003509 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003510 $(Q) $(LD) $(LDFLAGS) $(NO_SERVER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/no_server_test
nnoble0c475f02014-12-05 15:37:39 -08003511
nnoble69ac39f2014-12-12 15:43:38 -08003512endif
3513
nnoble0c475f02014-12-05 15:37:39 -08003514deps_no_server_test: $(NO_SERVER_TEST_DEPS)
3515
nnoble69ac39f2014-12-12 15:43:38 -08003516ifneq ($(NO_SECURE),true)
3517ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08003518-include $(NO_SERVER_TEST_DEPS)
3519endif
nnoble69ac39f2014-12-12 15:43:38 -08003520endif
nnoble0c475f02014-12-05 15:37:39 -08003521
3522clean_no_server_test:
3523 $(E) "[CLEAN] Cleaning no_server_test files"
3524 $(Q) $(RM) $(NO_SERVER_TEST_OBJS)
3525 $(Q) $(RM) $(NO_SERVER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003526 $(Q) $(RM) bins/$(TGTDIR)/no_server_test
nnoble0c475f02014-12-05 15:37:39 -08003527
3528
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003529RESOLVE_ADDRESS_TEST_SRC = \
ctiller18b49ab2014-12-09 14:39:16 -08003530 test/core/iomgr/resolve_address_test.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003531
ctiller09cb6d52014-12-19 17:38:22 -08003532RESOLVE_ADDRESS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(RESOLVE_ADDRESS_TEST_SRC))))
3533RESOLVE_ADDRESS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(RESOLVE_ADDRESS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003534
nnoble69ac39f2014-12-12 15:43:38 -08003535ifeq ($(NO_SECURE),true)
3536
ctiller09cb6d52014-12-19 17:38:22 -08003537bins/$(TGTDIR)/resolve_address_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003538
3539else
3540
ctiller09cb6d52014-12-19 17:38:22 -08003541bins/$(TGTDIR)/resolve_address_test: $(RESOLVE_ADDRESS_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003542 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003543 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003544 $(Q) $(LD) $(LDFLAGS) $(RESOLVE_ADDRESS_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/resolve_address_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003545
nnoble69ac39f2014-12-12 15:43:38 -08003546endif
3547
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003548deps_resolve_address_test: $(RESOLVE_ADDRESS_TEST_DEPS)
3549
nnoble69ac39f2014-12-12 15:43:38 -08003550ifneq ($(NO_SECURE),true)
3551ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003552-include $(RESOLVE_ADDRESS_TEST_DEPS)
3553endif
nnoble69ac39f2014-12-12 15:43:38 -08003554endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003555
3556clean_resolve_address_test:
3557 $(E) "[CLEAN] Cleaning resolve_address_test files"
3558 $(Q) $(RM) $(RESOLVE_ADDRESS_TEST_OBJS)
3559 $(Q) $(RM) $(RESOLVE_ADDRESS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003560 $(Q) $(RM) bins/$(TGTDIR)/resolve_address_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003561
3562
ctiller18b49ab2014-12-09 14:39:16 -08003563SOCKADDR_UTILS_TEST_SRC = \
3564 test/core/iomgr/sockaddr_utils_test.c \
nnoble0c475f02014-12-05 15:37:39 -08003565
ctiller09cb6d52014-12-19 17:38:22 -08003566SOCKADDR_UTILS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(SOCKADDR_UTILS_TEST_SRC))))
3567SOCKADDR_UTILS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(SOCKADDR_UTILS_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08003568
nnoble69ac39f2014-12-12 15:43:38 -08003569ifeq ($(NO_SECURE),true)
3570
ctiller09cb6d52014-12-19 17:38:22 -08003571bins/$(TGTDIR)/sockaddr_utils_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003572
3573else
3574
ctiller09cb6d52014-12-19 17:38:22 -08003575bins/$(TGTDIR)/sockaddr_utils_test: $(SOCKADDR_UTILS_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08003576 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003577 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003578 $(Q) $(LD) $(LDFLAGS) $(SOCKADDR_UTILS_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/sockaddr_utils_test
nnoble0c475f02014-12-05 15:37:39 -08003579
nnoble69ac39f2014-12-12 15:43:38 -08003580endif
3581
ctiller18b49ab2014-12-09 14:39:16 -08003582deps_sockaddr_utils_test: $(SOCKADDR_UTILS_TEST_DEPS)
nnoble0c475f02014-12-05 15:37:39 -08003583
nnoble69ac39f2014-12-12 15:43:38 -08003584ifneq ($(NO_SECURE),true)
3585ifneq ($(NO_DEPS),true)
ctiller18b49ab2014-12-09 14:39:16 -08003586-include $(SOCKADDR_UTILS_TEST_DEPS)
nnoble0c475f02014-12-05 15:37:39 -08003587endif
nnoble69ac39f2014-12-12 15:43:38 -08003588endif
nnoble0c475f02014-12-05 15:37:39 -08003589
ctiller18b49ab2014-12-09 14:39:16 -08003590clean_sockaddr_utils_test:
3591 $(E) "[CLEAN] Cleaning sockaddr_utils_test files"
3592 $(Q) $(RM) $(SOCKADDR_UTILS_TEST_OBJS)
3593 $(Q) $(RM) $(SOCKADDR_UTILS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003594 $(Q) $(RM) bins/$(TGTDIR)/sockaddr_utils_test
nnoble0c475f02014-12-05 15:37:39 -08003595
3596
ctiller18b49ab2014-12-09 14:39:16 -08003597TCP_SERVER_POSIX_TEST_SRC = \
3598 test/core/iomgr/tcp_server_posix_test.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003599
ctiller09cb6d52014-12-19 17:38:22 -08003600TCP_SERVER_POSIX_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(TCP_SERVER_POSIX_TEST_SRC))))
3601TCP_SERVER_POSIX_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(TCP_SERVER_POSIX_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003602
nnoble69ac39f2014-12-12 15:43:38 -08003603ifeq ($(NO_SECURE),true)
3604
ctiller09cb6d52014-12-19 17:38:22 -08003605bins/$(TGTDIR)/tcp_server_posix_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003606
3607else
3608
ctiller09cb6d52014-12-19 17:38:22 -08003609bins/$(TGTDIR)/tcp_server_posix_test: $(TCP_SERVER_POSIX_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003610 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003611 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003612 $(Q) $(LD) $(LDFLAGS) $(TCP_SERVER_POSIX_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/tcp_server_posix_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003613
nnoble69ac39f2014-12-12 15:43:38 -08003614endif
3615
ctiller18b49ab2014-12-09 14:39:16 -08003616deps_tcp_server_posix_test: $(TCP_SERVER_POSIX_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003617
nnoble69ac39f2014-12-12 15:43:38 -08003618ifneq ($(NO_SECURE),true)
3619ifneq ($(NO_DEPS),true)
ctiller18b49ab2014-12-09 14:39:16 -08003620-include $(TCP_SERVER_POSIX_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003621endif
nnoble69ac39f2014-12-12 15:43:38 -08003622endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003623
ctiller18b49ab2014-12-09 14:39:16 -08003624clean_tcp_server_posix_test:
3625 $(E) "[CLEAN] Cleaning tcp_server_posix_test files"
3626 $(Q) $(RM) $(TCP_SERVER_POSIX_TEST_OBJS)
3627 $(Q) $(RM) $(TCP_SERVER_POSIX_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003628 $(Q) $(RM) bins/$(TGTDIR)/tcp_server_posix_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003629
3630
ctiller18b49ab2014-12-09 14:39:16 -08003631TCP_CLIENT_POSIX_TEST_SRC = \
3632 test/core/iomgr/tcp_client_posix_test.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003633
ctiller09cb6d52014-12-19 17:38:22 -08003634TCP_CLIENT_POSIX_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(TCP_CLIENT_POSIX_TEST_SRC))))
3635TCP_CLIENT_POSIX_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(TCP_CLIENT_POSIX_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003636
nnoble69ac39f2014-12-12 15:43:38 -08003637ifeq ($(NO_SECURE),true)
3638
ctiller09cb6d52014-12-19 17:38:22 -08003639bins/$(TGTDIR)/tcp_client_posix_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003640
3641else
3642
ctiller09cb6d52014-12-19 17:38:22 -08003643bins/$(TGTDIR)/tcp_client_posix_test: $(TCP_CLIENT_POSIX_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003644 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003645 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003646 $(Q) $(LD) $(LDFLAGS) $(TCP_CLIENT_POSIX_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/tcp_client_posix_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003647
nnoble69ac39f2014-12-12 15:43:38 -08003648endif
3649
ctiller18b49ab2014-12-09 14:39:16 -08003650deps_tcp_client_posix_test: $(TCP_CLIENT_POSIX_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003651
nnoble69ac39f2014-12-12 15:43:38 -08003652ifneq ($(NO_SECURE),true)
3653ifneq ($(NO_DEPS),true)
ctiller18b49ab2014-12-09 14:39:16 -08003654-include $(TCP_CLIENT_POSIX_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003655endif
nnoble69ac39f2014-12-12 15:43:38 -08003656endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003657
ctiller18b49ab2014-12-09 14:39:16 -08003658clean_tcp_client_posix_test:
3659 $(E) "[CLEAN] Cleaning tcp_client_posix_test files"
3660 $(Q) $(RM) $(TCP_CLIENT_POSIX_TEST_OBJS)
3661 $(Q) $(RM) $(TCP_CLIENT_POSIX_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003662 $(Q) $(RM) bins/$(TGTDIR)/tcp_client_posix_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003663
3664
3665GRPC_CHANNEL_STACK_TEST_SRC = \
3666 test/core/channel/channel_stack_test.c \
3667
ctiller09cb6d52014-12-19 17:38:22 -08003668GRPC_CHANNEL_STACK_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GRPC_CHANNEL_STACK_TEST_SRC))))
3669GRPC_CHANNEL_STACK_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GRPC_CHANNEL_STACK_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003670
nnoble69ac39f2014-12-12 15:43:38 -08003671ifeq ($(NO_SECURE),true)
3672
ctiller09cb6d52014-12-19 17:38:22 -08003673bins/$(TGTDIR)/grpc_channel_stack_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003674
3675else
3676
ctiller09cb6d52014-12-19 17:38:22 -08003677bins/$(TGTDIR)/grpc_channel_stack_test: $(GRPC_CHANNEL_STACK_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003678 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003679 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003680 $(Q) $(LD) $(LDFLAGS) $(GRPC_CHANNEL_STACK_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/grpc_channel_stack_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003681
nnoble69ac39f2014-12-12 15:43:38 -08003682endif
3683
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003684deps_grpc_channel_stack_test: $(GRPC_CHANNEL_STACK_TEST_DEPS)
3685
nnoble69ac39f2014-12-12 15:43:38 -08003686ifneq ($(NO_SECURE),true)
3687ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003688-include $(GRPC_CHANNEL_STACK_TEST_DEPS)
3689endif
nnoble69ac39f2014-12-12 15:43:38 -08003690endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003691
3692clean_grpc_channel_stack_test:
3693 $(E) "[CLEAN] Cleaning grpc_channel_stack_test files"
3694 $(Q) $(RM) $(GRPC_CHANNEL_STACK_TEST_OBJS)
3695 $(Q) $(RM) $(GRPC_CHANNEL_STACK_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003696 $(Q) $(RM) bins/$(TGTDIR)/grpc_channel_stack_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003697
3698
3699METADATA_BUFFER_TEST_SRC = \
3700 test/core/channel/metadata_buffer_test.c \
3701
ctiller09cb6d52014-12-19 17:38:22 -08003702METADATA_BUFFER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(METADATA_BUFFER_TEST_SRC))))
3703METADATA_BUFFER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(METADATA_BUFFER_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003704
nnoble69ac39f2014-12-12 15:43:38 -08003705ifeq ($(NO_SECURE),true)
3706
ctiller09cb6d52014-12-19 17:38:22 -08003707bins/$(TGTDIR)/metadata_buffer_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003708
3709else
3710
ctiller09cb6d52014-12-19 17:38:22 -08003711bins/$(TGTDIR)/metadata_buffer_test: $(METADATA_BUFFER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003712 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003713 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003714 $(Q) $(LD) $(LDFLAGS) $(METADATA_BUFFER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/metadata_buffer_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003715
nnoble69ac39f2014-12-12 15:43:38 -08003716endif
3717
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003718deps_metadata_buffer_test: $(METADATA_BUFFER_TEST_DEPS)
3719
nnoble69ac39f2014-12-12 15:43:38 -08003720ifneq ($(NO_SECURE),true)
3721ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003722-include $(METADATA_BUFFER_TEST_DEPS)
3723endif
nnoble69ac39f2014-12-12 15:43:38 -08003724endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003725
3726clean_metadata_buffer_test:
3727 $(E) "[CLEAN] Cleaning metadata_buffer_test files"
3728 $(Q) $(RM) $(METADATA_BUFFER_TEST_OBJS)
3729 $(Q) $(RM) $(METADATA_BUFFER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003730 $(Q) $(RM) bins/$(TGTDIR)/metadata_buffer_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003731
3732
3733GRPC_COMPLETION_QUEUE_TEST_SRC = \
3734 test/core/surface/completion_queue_test.c \
3735
ctiller09cb6d52014-12-19 17:38:22 -08003736GRPC_COMPLETION_QUEUE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GRPC_COMPLETION_QUEUE_TEST_SRC))))
3737GRPC_COMPLETION_QUEUE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GRPC_COMPLETION_QUEUE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003738
nnoble69ac39f2014-12-12 15:43:38 -08003739ifeq ($(NO_SECURE),true)
3740
ctiller09cb6d52014-12-19 17:38:22 -08003741bins/$(TGTDIR)/grpc_completion_queue_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003742
3743else
3744
ctiller09cb6d52014-12-19 17:38:22 -08003745bins/$(TGTDIR)/grpc_completion_queue_test: $(GRPC_COMPLETION_QUEUE_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003746 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003747 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003748 $(Q) $(LD) $(LDFLAGS) $(GRPC_COMPLETION_QUEUE_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/grpc_completion_queue_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003749
nnoble69ac39f2014-12-12 15:43:38 -08003750endif
3751
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003752deps_grpc_completion_queue_test: $(GRPC_COMPLETION_QUEUE_TEST_DEPS)
3753
nnoble69ac39f2014-12-12 15:43:38 -08003754ifneq ($(NO_SECURE),true)
3755ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003756-include $(GRPC_COMPLETION_QUEUE_TEST_DEPS)
3757endif
nnoble69ac39f2014-12-12 15:43:38 -08003758endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003759
3760clean_grpc_completion_queue_test:
3761 $(E) "[CLEAN] Cleaning grpc_completion_queue_test files"
3762 $(Q) $(RM) $(GRPC_COMPLETION_QUEUE_TEST_OBJS)
3763 $(Q) $(RM) $(GRPC_COMPLETION_QUEUE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003764 $(Q) $(RM) bins/$(TGTDIR)/grpc_completion_queue_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003765
3766
3767GRPC_COMPLETION_QUEUE_BENCHMARK_SRC = \
3768 test/core/surface/completion_queue_benchmark.c \
3769
ctiller09cb6d52014-12-19 17:38:22 -08003770GRPC_COMPLETION_QUEUE_BENCHMARK_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GRPC_COMPLETION_QUEUE_BENCHMARK_SRC))))
3771GRPC_COMPLETION_QUEUE_BENCHMARK_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GRPC_COMPLETION_QUEUE_BENCHMARK_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003772
nnoble69ac39f2014-12-12 15:43:38 -08003773ifeq ($(NO_SECURE),true)
3774
ctiller09cb6d52014-12-19 17:38:22 -08003775bins/$(TGTDIR)/grpc_completion_queue_benchmark: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003776
3777else
3778
ctiller09cb6d52014-12-19 17:38:22 -08003779bins/$(TGTDIR)/grpc_completion_queue_benchmark: $(GRPC_COMPLETION_QUEUE_BENCHMARK_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003780 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003781 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003782 $(Q) $(LD) $(LDFLAGS) $(GRPC_COMPLETION_QUEUE_BENCHMARK_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/grpc_completion_queue_benchmark
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003783
nnoble69ac39f2014-12-12 15:43:38 -08003784endif
3785
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003786deps_grpc_completion_queue_benchmark: $(GRPC_COMPLETION_QUEUE_BENCHMARK_DEPS)
3787
nnoble69ac39f2014-12-12 15:43:38 -08003788ifneq ($(NO_SECURE),true)
3789ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003790-include $(GRPC_COMPLETION_QUEUE_BENCHMARK_DEPS)
3791endif
nnoble69ac39f2014-12-12 15:43:38 -08003792endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003793
3794clean_grpc_completion_queue_benchmark:
3795 $(E) "[CLEAN] Cleaning grpc_completion_queue_benchmark files"
3796 $(Q) $(RM) $(GRPC_COMPLETION_QUEUE_BENCHMARK_OBJS)
3797 $(Q) $(RM) $(GRPC_COMPLETION_QUEUE_BENCHMARK_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003798 $(Q) $(RM) bins/$(TGTDIR)/grpc_completion_queue_benchmark
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003799
3800
3801CENSUS_WINDOW_STATS_TEST_SRC = \
3802 test/core/statistics/window_stats_test.c \
3803
ctiller09cb6d52014-12-19 17:38:22 -08003804CENSUS_WINDOW_STATS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CENSUS_WINDOW_STATS_TEST_SRC))))
3805CENSUS_WINDOW_STATS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CENSUS_WINDOW_STATS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003806
nnoble69ac39f2014-12-12 15:43:38 -08003807ifeq ($(NO_SECURE),true)
3808
ctiller09cb6d52014-12-19 17:38:22 -08003809bins/$(TGTDIR)/census_window_stats_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003810
3811else
3812
ctiller09cb6d52014-12-19 17:38:22 -08003813bins/$(TGTDIR)/census_window_stats_test: $(CENSUS_WINDOW_STATS_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003814 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003815 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003816 $(Q) $(LD) $(LDFLAGS) $(CENSUS_WINDOW_STATS_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/census_window_stats_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003817
nnoble69ac39f2014-12-12 15:43:38 -08003818endif
3819
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003820deps_census_window_stats_test: $(CENSUS_WINDOW_STATS_TEST_DEPS)
3821
nnoble69ac39f2014-12-12 15:43:38 -08003822ifneq ($(NO_SECURE),true)
3823ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003824-include $(CENSUS_WINDOW_STATS_TEST_DEPS)
3825endif
nnoble69ac39f2014-12-12 15:43:38 -08003826endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003827
3828clean_census_window_stats_test:
3829 $(E) "[CLEAN] Cleaning census_window_stats_test files"
3830 $(Q) $(RM) $(CENSUS_WINDOW_STATS_TEST_OBJS)
3831 $(Q) $(RM) $(CENSUS_WINDOW_STATS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003832 $(Q) $(RM) bins/$(TGTDIR)/census_window_stats_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003833
3834
3835CENSUS_STATISTICS_QUICK_TEST_SRC = \
3836 test/core/statistics/quick_test.c \
3837
ctiller09cb6d52014-12-19 17:38:22 -08003838CENSUS_STATISTICS_QUICK_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CENSUS_STATISTICS_QUICK_TEST_SRC))))
3839CENSUS_STATISTICS_QUICK_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CENSUS_STATISTICS_QUICK_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003840
nnoble69ac39f2014-12-12 15:43:38 -08003841ifeq ($(NO_SECURE),true)
3842
ctiller09cb6d52014-12-19 17:38:22 -08003843bins/$(TGTDIR)/census_statistics_quick_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003844
3845else
3846
ctiller09cb6d52014-12-19 17:38:22 -08003847bins/$(TGTDIR)/census_statistics_quick_test: $(CENSUS_STATISTICS_QUICK_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003848 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003849 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003850 $(Q) $(LD) $(LDFLAGS) $(CENSUS_STATISTICS_QUICK_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/census_statistics_quick_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003851
nnoble69ac39f2014-12-12 15:43:38 -08003852endif
3853
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003854deps_census_statistics_quick_test: $(CENSUS_STATISTICS_QUICK_TEST_DEPS)
3855
nnoble69ac39f2014-12-12 15:43:38 -08003856ifneq ($(NO_SECURE),true)
3857ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003858-include $(CENSUS_STATISTICS_QUICK_TEST_DEPS)
3859endif
nnoble69ac39f2014-12-12 15:43:38 -08003860endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003861
3862clean_census_statistics_quick_test:
3863 $(E) "[CLEAN] Cleaning census_statistics_quick_test files"
3864 $(Q) $(RM) $(CENSUS_STATISTICS_QUICK_TEST_OBJS)
3865 $(Q) $(RM) $(CENSUS_STATISTICS_QUICK_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003866 $(Q) $(RM) bins/$(TGTDIR)/census_statistics_quick_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003867
3868
aveitch482a5be2014-12-15 10:25:12 -08003869CENSUS_STATISTICS_SMALL_LOG_TEST_SRC = \
3870 test/core/statistics/small_log_test.c \
3871
ctiller09cb6d52014-12-19 17:38:22 -08003872CENSUS_STATISTICS_SMALL_LOG_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CENSUS_STATISTICS_SMALL_LOG_TEST_SRC))))
3873CENSUS_STATISTICS_SMALL_LOG_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CENSUS_STATISTICS_SMALL_LOG_TEST_SRC))))
aveitch482a5be2014-12-15 10:25:12 -08003874
3875ifeq ($(NO_SECURE),true)
3876
ctiller09cb6d52014-12-19 17:38:22 -08003877bins/$(TGTDIR)/census_statistics_small_log_test: openssl_dep_error
aveitch482a5be2014-12-15 10:25:12 -08003878
3879else
3880
ctiller09cb6d52014-12-19 17:38:22 -08003881bins/$(TGTDIR)/census_statistics_small_log_test: $(CENSUS_STATISTICS_SMALL_LOG_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
aveitch482a5be2014-12-15 10:25:12 -08003882 $(E) "[LD] Linking $@"
3883 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003884 $(Q) $(LD) $(LDFLAGS) $(CENSUS_STATISTICS_SMALL_LOG_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/census_statistics_small_log_test
aveitch482a5be2014-12-15 10:25:12 -08003885
3886endif
3887
3888deps_census_statistics_small_log_test: $(CENSUS_STATISTICS_SMALL_LOG_TEST_DEPS)
3889
3890ifneq ($(NO_SECURE),true)
3891ifneq ($(NO_DEPS),true)
3892-include $(CENSUS_STATISTICS_SMALL_LOG_TEST_DEPS)
3893endif
3894endif
3895
3896clean_census_statistics_small_log_test:
3897 $(E) "[CLEAN] Cleaning census_statistics_small_log_test files"
3898 $(Q) $(RM) $(CENSUS_STATISTICS_SMALL_LOG_TEST_OBJS)
3899 $(Q) $(RM) $(CENSUS_STATISTICS_SMALL_LOG_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003900 $(Q) $(RM) bins/$(TGTDIR)/census_statistics_small_log_test
aveitch482a5be2014-12-15 10:25:12 -08003901
3902
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003903CENSUS_STATISTICS_PERFORMANCE_TEST_SRC = \
3904 test/core/statistics/performance_test.c \
3905
ctiller09cb6d52014-12-19 17:38:22 -08003906CENSUS_STATISTICS_PERFORMANCE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CENSUS_STATISTICS_PERFORMANCE_TEST_SRC))))
3907CENSUS_STATISTICS_PERFORMANCE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CENSUS_STATISTICS_PERFORMANCE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003908
nnoble69ac39f2014-12-12 15:43:38 -08003909ifeq ($(NO_SECURE),true)
3910
ctiller09cb6d52014-12-19 17:38:22 -08003911bins/$(TGTDIR)/census_statistics_performance_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003912
3913else
3914
ctiller09cb6d52014-12-19 17:38:22 -08003915bins/$(TGTDIR)/census_statistics_performance_test: $(CENSUS_STATISTICS_PERFORMANCE_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003916 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003917 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003918 $(Q) $(LD) $(LDFLAGS) $(CENSUS_STATISTICS_PERFORMANCE_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/census_statistics_performance_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003919
nnoble69ac39f2014-12-12 15:43:38 -08003920endif
3921
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003922deps_census_statistics_performance_test: $(CENSUS_STATISTICS_PERFORMANCE_TEST_DEPS)
3923
nnoble69ac39f2014-12-12 15:43:38 -08003924ifneq ($(NO_SECURE),true)
3925ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003926-include $(CENSUS_STATISTICS_PERFORMANCE_TEST_DEPS)
3927endif
nnoble69ac39f2014-12-12 15:43:38 -08003928endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003929
3930clean_census_statistics_performance_test:
3931 $(E) "[CLEAN] Cleaning census_statistics_performance_test files"
3932 $(Q) $(RM) $(CENSUS_STATISTICS_PERFORMANCE_TEST_OBJS)
3933 $(Q) $(RM) $(CENSUS_STATISTICS_PERFORMANCE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003934 $(Q) $(RM) bins/$(TGTDIR)/census_statistics_performance_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003935
3936
3937CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_SRC = \
3938 test/core/statistics/multiple_writers_test.c \
3939
ctiller09cb6d52014-12-19 17:38:22 -08003940CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_SRC))))
3941CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003942
nnoble69ac39f2014-12-12 15:43:38 -08003943ifeq ($(NO_SECURE),true)
3944
ctiller09cb6d52014-12-19 17:38:22 -08003945bins/$(TGTDIR)/census_statistics_multiple_writers_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003946
3947else
3948
ctiller09cb6d52014-12-19 17:38:22 -08003949bins/$(TGTDIR)/census_statistics_multiple_writers_test: $(CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003950 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003951 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003952 $(Q) $(LD) $(LDFLAGS) $(CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/census_statistics_multiple_writers_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003953
nnoble69ac39f2014-12-12 15:43:38 -08003954endif
3955
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003956deps_census_statistics_multiple_writers_test: $(CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_DEPS)
3957
nnoble69ac39f2014-12-12 15:43:38 -08003958ifneq ($(NO_SECURE),true)
3959ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003960-include $(CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_DEPS)
3961endif
nnoble69ac39f2014-12-12 15:43:38 -08003962endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003963
3964clean_census_statistics_multiple_writers_test:
3965 $(E) "[CLEAN] Cleaning census_statistics_multiple_writers_test files"
3966 $(Q) $(RM) $(CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_OBJS)
3967 $(Q) $(RM) $(CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08003968 $(Q) $(RM) bins/$(TGTDIR)/census_statistics_multiple_writers_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003969
3970
3971CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_SRC = \
3972 test/core/statistics/multiple_writers_circular_buffer_test.c \
3973
ctiller09cb6d52014-12-19 17:38:22 -08003974CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_SRC))))
3975CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003976
nnoble69ac39f2014-12-12 15:43:38 -08003977ifeq ($(NO_SECURE),true)
3978
ctiller09cb6d52014-12-19 17:38:22 -08003979bins/$(TGTDIR)/census_statistics_multiple_writers_circular_buffer_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08003980
3981else
3982
ctiller09cb6d52014-12-19 17:38:22 -08003983bins/$(TGTDIR)/census_statistics_multiple_writers_circular_buffer_test: $(CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003984 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08003985 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08003986 $(Q) $(LD) $(LDFLAGS) $(CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/census_statistics_multiple_writers_circular_buffer_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003987
nnoble69ac39f2014-12-12 15:43:38 -08003988endif
3989
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003990deps_census_statistics_multiple_writers_circular_buffer_test: $(CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_DEPS)
3991
nnoble69ac39f2014-12-12 15:43:38 -08003992ifneq ($(NO_SECURE),true)
3993ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003994-include $(CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_DEPS)
3995endif
nnoble69ac39f2014-12-12 15:43:38 -08003996endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003997
3998clean_census_statistics_multiple_writers_circular_buffer_test:
3999 $(E) "[CLEAN] Cleaning census_statistics_multiple_writers_circular_buffer_test files"
4000 $(Q) $(RM) $(CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_OBJS)
4001 $(Q) $(RM) $(CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004002 $(Q) $(RM) bins/$(TGTDIR)/census_statistics_multiple_writers_circular_buffer_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004003
4004
4005CENSUS_STUB_TEST_SRC = \
4006 test/core/statistics/census_stub_test.c \
4007
ctiller09cb6d52014-12-19 17:38:22 -08004008CENSUS_STUB_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CENSUS_STUB_TEST_SRC))))
4009CENSUS_STUB_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CENSUS_STUB_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004010
nnoble69ac39f2014-12-12 15:43:38 -08004011ifeq ($(NO_SECURE),true)
4012
ctiller09cb6d52014-12-19 17:38:22 -08004013bins/$(TGTDIR)/census_stub_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004014
4015else
4016
ctiller09cb6d52014-12-19 17:38:22 -08004017bins/$(TGTDIR)/census_stub_test: $(CENSUS_STUB_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004018 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004019 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004020 $(Q) $(LD) $(LDFLAGS) $(CENSUS_STUB_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/census_stub_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004021
nnoble69ac39f2014-12-12 15:43:38 -08004022endif
4023
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004024deps_census_stub_test: $(CENSUS_STUB_TEST_DEPS)
4025
nnoble69ac39f2014-12-12 15:43:38 -08004026ifneq ($(NO_SECURE),true)
4027ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004028-include $(CENSUS_STUB_TEST_DEPS)
4029endif
nnoble69ac39f2014-12-12 15:43:38 -08004030endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004031
4032clean_census_stub_test:
4033 $(E) "[CLEAN] Cleaning census_stub_test files"
4034 $(Q) $(RM) $(CENSUS_STUB_TEST_OBJS)
4035 $(Q) $(RM) $(CENSUS_STUB_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004036 $(Q) $(RM) bins/$(TGTDIR)/census_stub_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004037
4038
4039CENSUS_HASH_TABLE_TEST_SRC = \
4040 test/core/statistics/hash_table_test.c \
4041
ctiller09cb6d52014-12-19 17:38:22 -08004042CENSUS_HASH_TABLE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CENSUS_HASH_TABLE_TEST_SRC))))
4043CENSUS_HASH_TABLE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CENSUS_HASH_TABLE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004044
nnoble69ac39f2014-12-12 15:43:38 -08004045ifeq ($(NO_SECURE),true)
4046
ctiller09cb6d52014-12-19 17:38:22 -08004047bins/$(TGTDIR)/census_hash_table_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004048
4049else
4050
ctiller09cb6d52014-12-19 17:38:22 -08004051bins/$(TGTDIR)/census_hash_table_test: $(CENSUS_HASH_TABLE_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004052 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004053 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004054 $(Q) $(LD) $(LDFLAGS) $(CENSUS_HASH_TABLE_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/census_hash_table_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004055
nnoble69ac39f2014-12-12 15:43:38 -08004056endif
4057
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004058deps_census_hash_table_test: $(CENSUS_HASH_TABLE_TEST_DEPS)
4059
nnoble69ac39f2014-12-12 15:43:38 -08004060ifneq ($(NO_SECURE),true)
4061ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004062-include $(CENSUS_HASH_TABLE_TEST_DEPS)
4063endif
nnoble69ac39f2014-12-12 15:43:38 -08004064endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004065
4066clean_census_hash_table_test:
4067 $(E) "[CLEAN] Cleaning census_hash_table_test files"
4068 $(Q) $(RM) $(CENSUS_HASH_TABLE_TEST_OBJS)
4069 $(Q) $(RM) $(CENSUS_HASH_TABLE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004070 $(Q) $(RM) bins/$(TGTDIR)/census_hash_table_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004071
4072
4073FLING_SERVER_SRC = \
4074 test/core/fling/server.c \
4075
ctiller09cb6d52014-12-19 17:38:22 -08004076FLING_SERVER_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(FLING_SERVER_SRC))))
4077FLING_SERVER_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(FLING_SERVER_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004078
nnoble69ac39f2014-12-12 15:43:38 -08004079ifeq ($(NO_SECURE),true)
4080
ctiller09cb6d52014-12-19 17:38:22 -08004081bins/$(TGTDIR)/fling_server: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004082
4083else
4084
ctiller09cb6d52014-12-19 17:38:22 -08004085bins/$(TGTDIR)/fling_server: $(FLING_SERVER_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004086 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004087 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004088 $(Q) $(LD) $(LDFLAGS) $(FLING_SERVER_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/fling_server
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004089
nnoble69ac39f2014-12-12 15:43:38 -08004090endif
4091
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004092deps_fling_server: $(FLING_SERVER_DEPS)
4093
nnoble69ac39f2014-12-12 15:43:38 -08004094ifneq ($(NO_SECURE),true)
4095ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004096-include $(FLING_SERVER_DEPS)
4097endif
nnoble69ac39f2014-12-12 15:43:38 -08004098endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004099
4100clean_fling_server:
4101 $(E) "[CLEAN] Cleaning fling_server files"
4102 $(Q) $(RM) $(FLING_SERVER_OBJS)
4103 $(Q) $(RM) $(FLING_SERVER_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004104 $(Q) $(RM) bins/$(TGTDIR)/fling_server
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004105
4106
4107FLING_CLIENT_SRC = \
4108 test/core/fling/client.c \
4109
ctiller09cb6d52014-12-19 17:38:22 -08004110FLING_CLIENT_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(FLING_CLIENT_SRC))))
4111FLING_CLIENT_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(FLING_CLIENT_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004112
nnoble69ac39f2014-12-12 15:43:38 -08004113ifeq ($(NO_SECURE),true)
4114
ctiller09cb6d52014-12-19 17:38:22 -08004115bins/$(TGTDIR)/fling_client: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004116
4117else
4118
ctiller09cb6d52014-12-19 17:38:22 -08004119bins/$(TGTDIR)/fling_client: $(FLING_CLIENT_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004120 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004121 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004122 $(Q) $(LD) $(LDFLAGS) $(FLING_CLIENT_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/fling_client
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004123
nnoble69ac39f2014-12-12 15:43:38 -08004124endif
4125
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004126deps_fling_client: $(FLING_CLIENT_DEPS)
4127
nnoble69ac39f2014-12-12 15:43:38 -08004128ifneq ($(NO_SECURE),true)
4129ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004130-include $(FLING_CLIENT_DEPS)
4131endif
nnoble69ac39f2014-12-12 15:43:38 -08004132endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004133
4134clean_fling_client:
4135 $(E) "[CLEAN] Cleaning fling_client files"
4136 $(Q) $(RM) $(FLING_CLIENT_OBJS)
4137 $(Q) $(RM) $(FLING_CLIENT_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004138 $(Q) $(RM) bins/$(TGTDIR)/fling_client
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004139
4140
4141FLING_TEST_SRC = \
4142 test/core/fling/fling_test.c \
4143
ctiller09cb6d52014-12-19 17:38:22 -08004144FLING_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(FLING_TEST_SRC))))
4145FLING_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(FLING_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004146
nnoble69ac39f2014-12-12 15:43:38 -08004147ifeq ($(NO_SECURE),true)
4148
ctiller09cb6d52014-12-19 17:38:22 -08004149bins/$(TGTDIR)/fling_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004150
4151else
4152
ctiller09cb6d52014-12-19 17:38:22 -08004153bins/$(TGTDIR)/fling_test: $(FLING_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004154 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004155 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004156 $(Q) $(LD) $(LDFLAGS) $(FLING_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/fling_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004157
nnoble69ac39f2014-12-12 15:43:38 -08004158endif
4159
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004160deps_fling_test: $(FLING_TEST_DEPS)
4161
nnoble69ac39f2014-12-12 15:43:38 -08004162ifneq ($(NO_SECURE),true)
4163ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004164-include $(FLING_TEST_DEPS)
4165endif
nnoble69ac39f2014-12-12 15:43:38 -08004166endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004167
4168clean_fling_test:
4169 $(E) "[CLEAN] Cleaning fling_test files"
4170 $(Q) $(RM) $(FLING_TEST_OBJS)
4171 $(Q) $(RM) $(FLING_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004172 $(Q) $(RM) bins/$(TGTDIR)/fling_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004173
4174
4175ECHO_SERVER_SRC = \
4176 test/core/echo/server.c \
4177
ctiller09cb6d52014-12-19 17:38:22 -08004178ECHO_SERVER_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(ECHO_SERVER_SRC))))
4179ECHO_SERVER_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(ECHO_SERVER_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004180
nnoble69ac39f2014-12-12 15:43:38 -08004181ifeq ($(NO_SECURE),true)
4182
ctiller09cb6d52014-12-19 17:38:22 -08004183bins/$(TGTDIR)/echo_server: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004184
4185else
4186
ctiller09cb6d52014-12-19 17:38:22 -08004187bins/$(TGTDIR)/echo_server: $(ECHO_SERVER_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004188 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004189 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004190 $(Q) $(LD) $(LDFLAGS) $(ECHO_SERVER_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/echo_server
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004191
nnoble69ac39f2014-12-12 15:43:38 -08004192endif
4193
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004194deps_echo_server: $(ECHO_SERVER_DEPS)
4195
nnoble69ac39f2014-12-12 15:43:38 -08004196ifneq ($(NO_SECURE),true)
4197ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004198-include $(ECHO_SERVER_DEPS)
4199endif
nnoble69ac39f2014-12-12 15:43:38 -08004200endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004201
4202clean_echo_server:
4203 $(E) "[CLEAN] Cleaning echo_server files"
4204 $(Q) $(RM) $(ECHO_SERVER_OBJS)
4205 $(Q) $(RM) $(ECHO_SERVER_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004206 $(Q) $(RM) bins/$(TGTDIR)/echo_server
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004207
4208
4209ECHO_CLIENT_SRC = \
4210 test/core/echo/client.c \
4211
ctiller09cb6d52014-12-19 17:38:22 -08004212ECHO_CLIENT_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(ECHO_CLIENT_SRC))))
4213ECHO_CLIENT_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(ECHO_CLIENT_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004214
nnoble69ac39f2014-12-12 15:43:38 -08004215ifeq ($(NO_SECURE),true)
4216
ctiller09cb6d52014-12-19 17:38:22 -08004217bins/$(TGTDIR)/echo_client: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004218
4219else
4220
ctiller09cb6d52014-12-19 17:38:22 -08004221bins/$(TGTDIR)/echo_client: $(ECHO_CLIENT_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004222 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004223 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004224 $(Q) $(LD) $(LDFLAGS) $(ECHO_CLIENT_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/echo_client
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004225
nnoble69ac39f2014-12-12 15:43:38 -08004226endif
4227
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004228deps_echo_client: $(ECHO_CLIENT_DEPS)
4229
nnoble69ac39f2014-12-12 15:43:38 -08004230ifneq ($(NO_SECURE),true)
4231ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004232-include $(ECHO_CLIENT_DEPS)
4233endif
nnoble69ac39f2014-12-12 15:43:38 -08004234endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004235
4236clean_echo_client:
4237 $(E) "[CLEAN] Cleaning echo_client files"
4238 $(Q) $(RM) $(ECHO_CLIENT_OBJS)
4239 $(Q) $(RM) $(ECHO_CLIENT_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004240 $(Q) $(RM) bins/$(TGTDIR)/echo_client
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004241
4242
4243ECHO_TEST_SRC = \
4244 test/core/echo/echo_test.c \
4245
ctiller09cb6d52014-12-19 17:38:22 -08004246ECHO_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(ECHO_TEST_SRC))))
4247ECHO_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(ECHO_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004248
nnoble69ac39f2014-12-12 15:43:38 -08004249ifeq ($(NO_SECURE),true)
4250
ctiller09cb6d52014-12-19 17:38:22 -08004251bins/$(TGTDIR)/echo_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004252
4253else
4254
ctiller09cb6d52014-12-19 17:38:22 -08004255bins/$(TGTDIR)/echo_test: $(ECHO_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004256 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004257 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004258 $(Q) $(LD) $(LDFLAGS) $(ECHO_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/echo_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004259
nnoble69ac39f2014-12-12 15:43:38 -08004260endif
4261
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004262deps_echo_test: $(ECHO_TEST_DEPS)
4263
nnoble69ac39f2014-12-12 15:43:38 -08004264ifneq ($(NO_SECURE),true)
4265ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004266-include $(ECHO_TEST_DEPS)
4267endif
nnoble69ac39f2014-12-12 15:43:38 -08004268endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004269
4270clean_echo_test:
4271 $(E) "[CLEAN] Cleaning echo_test files"
4272 $(Q) $(RM) $(ECHO_TEST_OBJS)
4273 $(Q) $(RM) $(ECHO_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004274 $(Q) $(RM) bins/$(TGTDIR)/echo_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004275
4276
4277LOW_LEVEL_PING_PONG_BENCHMARK_SRC = \
4278 test/core/network_benchmarks/low_level_ping_pong.c \
4279
ctiller09cb6d52014-12-19 17:38:22 -08004280LOW_LEVEL_PING_PONG_BENCHMARK_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LOW_LEVEL_PING_PONG_BENCHMARK_SRC))))
4281LOW_LEVEL_PING_PONG_BENCHMARK_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LOW_LEVEL_PING_PONG_BENCHMARK_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004282
nnoble69ac39f2014-12-12 15:43:38 -08004283ifeq ($(NO_SECURE),true)
4284
ctiller09cb6d52014-12-19 17:38:22 -08004285bins/$(TGTDIR)/low_level_ping_pong_benchmark: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004286
4287else
4288
ctiller09cb6d52014-12-19 17:38:22 -08004289bins/$(TGTDIR)/low_level_ping_pong_benchmark: $(LOW_LEVEL_PING_PONG_BENCHMARK_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004290 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004291 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004292 $(Q) $(LD) $(LDFLAGS) $(LOW_LEVEL_PING_PONG_BENCHMARK_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/low_level_ping_pong_benchmark
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004293
nnoble69ac39f2014-12-12 15:43:38 -08004294endif
4295
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004296deps_low_level_ping_pong_benchmark: $(LOW_LEVEL_PING_PONG_BENCHMARK_DEPS)
4297
nnoble69ac39f2014-12-12 15:43:38 -08004298ifneq ($(NO_SECURE),true)
4299ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004300-include $(LOW_LEVEL_PING_PONG_BENCHMARK_DEPS)
4301endif
nnoble69ac39f2014-12-12 15:43:38 -08004302endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004303
4304clean_low_level_ping_pong_benchmark:
4305 $(E) "[CLEAN] Cleaning low_level_ping_pong_benchmark files"
4306 $(Q) $(RM) $(LOW_LEVEL_PING_PONG_BENCHMARK_OBJS)
4307 $(Q) $(RM) $(LOW_LEVEL_PING_PONG_BENCHMARK_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004308 $(Q) $(RM) bins/$(TGTDIR)/low_level_ping_pong_benchmark
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004309
4310
4311MESSAGE_COMPRESS_TEST_SRC = \
4312 test/core/compression/message_compress_test.c \
4313
ctiller09cb6d52014-12-19 17:38:22 -08004314MESSAGE_COMPRESS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(MESSAGE_COMPRESS_TEST_SRC))))
4315MESSAGE_COMPRESS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(MESSAGE_COMPRESS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004316
nnoble69ac39f2014-12-12 15:43:38 -08004317ifeq ($(NO_SECURE),true)
4318
ctiller09cb6d52014-12-19 17:38:22 -08004319bins/$(TGTDIR)/message_compress_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004320
4321else
4322
ctiller09cb6d52014-12-19 17:38:22 -08004323bins/$(TGTDIR)/message_compress_test: $(MESSAGE_COMPRESS_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004324 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004325 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004326 $(Q) $(LD) $(LDFLAGS) $(MESSAGE_COMPRESS_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/message_compress_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004327
nnoble69ac39f2014-12-12 15:43:38 -08004328endif
4329
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004330deps_message_compress_test: $(MESSAGE_COMPRESS_TEST_DEPS)
4331
nnoble69ac39f2014-12-12 15:43:38 -08004332ifneq ($(NO_SECURE),true)
4333ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004334-include $(MESSAGE_COMPRESS_TEST_DEPS)
4335endif
nnoble69ac39f2014-12-12 15:43:38 -08004336endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004337
4338clean_message_compress_test:
4339 $(E) "[CLEAN] Cleaning message_compress_test files"
4340 $(Q) $(RM) $(MESSAGE_COMPRESS_TEST_OBJS)
4341 $(Q) $(RM) $(MESSAGE_COMPRESS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004342 $(Q) $(RM) bins/$(TGTDIR)/message_compress_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004343
4344
nnoble0c475f02014-12-05 15:37:39 -08004345BIN_ENCODER_TEST_SRC = \
4346 test/core/transport/chttp2/bin_encoder_test.c \
4347
ctiller09cb6d52014-12-19 17:38:22 -08004348BIN_ENCODER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(BIN_ENCODER_TEST_SRC))))
4349BIN_ENCODER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(BIN_ENCODER_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08004350
nnoble69ac39f2014-12-12 15:43:38 -08004351ifeq ($(NO_SECURE),true)
4352
ctiller09cb6d52014-12-19 17:38:22 -08004353bins/$(TGTDIR)/bin_encoder_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004354
4355else
4356
ctiller09cb6d52014-12-19 17:38:22 -08004357bins/$(TGTDIR)/bin_encoder_test: $(BIN_ENCODER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08004358 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004359 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004360 $(Q) $(LD) $(LDFLAGS) $(BIN_ENCODER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/bin_encoder_test
nnoble0c475f02014-12-05 15:37:39 -08004361
nnoble69ac39f2014-12-12 15:43:38 -08004362endif
4363
nnoble0c475f02014-12-05 15:37:39 -08004364deps_bin_encoder_test: $(BIN_ENCODER_TEST_DEPS)
4365
nnoble69ac39f2014-12-12 15:43:38 -08004366ifneq ($(NO_SECURE),true)
4367ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08004368-include $(BIN_ENCODER_TEST_DEPS)
4369endif
nnoble69ac39f2014-12-12 15:43:38 -08004370endif
nnoble0c475f02014-12-05 15:37:39 -08004371
4372clean_bin_encoder_test:
4373 $(E) "[CLEAN] Cleaning bin_encoder_test files"
4374 $(Q) $(RM) $(BIN_ENCODER_TEST_OBJS)
4375 $(Q) $(RM) $(BIN_ENCODER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004376 $(Q) $(RM) bins/$(TGTDIR)/bin_encoder_test
nnoble0c475f02014-12-05 15:37:39 -08004377
4378
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004379SECURE_ENDPOINT_TEST_SRC = \
ctiller2bbb6c42014-12-17 09:44:44 -08004380 test/core/security/secure_endpoint_test.c \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004381
ctiller09cb6d52014-12-19 17:38:22 -08004382SECURE_ENDPOINT_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(SECURE_ENDPOINT_TEST_SRC))))
4383SECURE_ENDPOINT_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(SECURE_ENDPOINT_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004384
nnoble69ac39f2014-12-12 15:43:38 -08004385ifeq ($(NO_SECURE),true)
4386
ctiller09cb6d52014-12-19 17:38:22 -08004387bins/$(TGTDIR)/secure_endpoint_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004388
4389else
4390
ctiller09cb6d52014-12-19 17:38:22 -08004391bins/$(TGTDIR)/secure_endpoint_test: $(SECURE_ENDPOINT_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004392 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004393 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004394 $(Q) $(LD) $(LDFLAGS) $(SECURE_ENDPOINT_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/secure_endpoint_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004395
nnoble69ac39f2014-12-12 15:43:38 -08004396endif
4397
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004398deps_secure_endpoint_test: $(SECURE_ENDPOINT_TEST_DEPS)
4399
nnoble69ac39f2014-12-12 15:43:38 -08004400ifneq ($(NO_SECURE),true)
4401ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004402-include $(SECURE_ENDPOINT_TEST_DEPS)
4403endif
nnoble69ac39f2014-12-12 15:43:38 -08004404endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004405
4406clean_secure_endpoint_test:
4407 $(E) "[CLEAN] Cleaning secure_endpoint_test files"
4408 $(Q) $(RM) $(SECURE_ENDPOINT_TEST_OBJS)
4409 $(Q) $(RM) $(SECURE_ENDPOINT_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004410 $(Q) $(RM) bins/$(TGTDIR)/secure_endpoint_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004411
4412
4413HTTPCLI_FORMAT_REQUEST_TEST_SRC = \
4414 test/core/httpcli/format_request_test.c \
4415
ctiller09cb6d52014-12-19 17:38:22 -08004416HTTPCLI_FORMAT_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(HTTPCLI_FORMAT_REQUEST_TEST_SRC))))
4417HTTPCLI_FORMAT_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(HTTPCLI_FORMAT_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004418
nnoble69ac39f2014-12-12 15:43:38 -08004419ifeq ($(NO_SECURE),true)
4420
ctiller09cb6d52014-12-19 17:38:22 -08004421bins/$(TGTDIR)/httpcli_format_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004422
4423else
4424
ctiller09cb6d52014-12-19 17:38:22 -08004425bins/$(TGTDIR)/httpcli_format_request_test: $(HTTPCLI_FORMAT_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004426 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004427 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004428 $(Q) $(LD) $(LDFLAGS) $(HTTPCLI_FORMAT_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/httpcli_format_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004429
nnoble69ac39f2014-12-12 15:43:38 -08004430endif
4431
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004432deps_httpcli_format_request_test: $(HTTPCLI_FORMAT_REQUEST_TEST_DEPS)
4433
nnoble69ac39f2014-12-12 15:43:38 -08004434ifneq ($(NO_SECURE),true)
4435ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004436-include $(HTTPCLI_FORMAT_REQUEST_TEST_DEPS)
4437endif
nnoble69ac39f2014-12-12 15:43:38 -08004438endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004439
4440clean_httpcli_format_request_test:
4441 $(E) "[CLEAN] Cleaning httpcli_format_request_test files"
4442 $(Q) $(RM) $(HTTPCLI_FORMAT_REQUEST_TEST_OBJS)
4443 $(Q) $(RM) $(HTTPCLI_FORMAT_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004444 $(Q) $(RM) bins/$(TGTDIR)/httpcli_format_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004445
4446
4447HTTPCLI_PARSER_TEST_SRC = \
4448 test/core/httpcli/parser_test.c \
4449
ctiller09cb6d52014-12-19 17:38:22 -08004450HTTPCLI_PARSER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(HTTPCLI_PARSER_TEST_SRC))))
4451HTTPCLI_PARSER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(HTTPCLI_PARSER_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004452
nnoble69ac39f2014-12-12 15:43:38 -08004453ifeq ($(NO_SECURE),true)
4454
ctiller09cb6d52014-12-19 17:38:22 -08004455bins/$(TGTDIR)/httpcli_parser_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004456
4457else
4458
ctiller09cb6d52014-12-19 17:38:22 -08004459bins/$(TGTDIR)/httpcli_parser_test: $(HTTPCLI_PARSER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004460 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004461 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004462 $(Q) $(LD) $(LDFLAGS) $(HTTPCLI_PARSER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/httpcli_parser_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004463
nnoble69ac39f2014-12-12 15:43:38 -08004464endif
4465
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004466deps_httpcli_parser_test: $(HTTPCLI_PARSER_TEST_DEPS)
4467
nnoble69ac39f2014-12-12 15:43:38 -08004468ifneq ($(NO_SECURE),true)
4469ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004470-include $(HTTPCLI_PARSER_TEST_DEPS)
4471endif
nnoble69ac39f2014-12-12 15:43:38 -08004472endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004473
4474clean_httpcli_parser_test:
4475 $(E) "[CLEAN] Cleaning httpcli_parser_test files"
4476 $(Q) $(RM) $(HTTPCLI_PARSER_TEST_OBJS)
4477 $(Q) $(RM) $(HTTPCLI_PARSER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004478 $(Q) $(RM) bins/$(TGTDIR)/httpcli_parser_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004479
4480
4481HTTPCLI_TEST_SRC = \
4482 test/core/httpcli/httpcli_test.c \
4483
ctiller09cb6d52014-12-19 17:38:22 -08004484HTTPCLI_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(HTTPCLI_TEST_SRC))))
4485HTTPCLI_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(HTTPCLI_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004486
nnoble69ac39f2014-12-12 15:43:38 -08004487ifeq ($(NO_SECURE),true)
4488
ctiller09cb6d52014-12-19 17:38:22 -08004489bins/$(TGTDIR)/httpcli_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004490
4491else
4492
ctiller09cb6d52014-12-19 17:38:22 -08004493bins/$(TGTDIR)/httpcli_test: $(HTTPCLI_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004494 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004495 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004496 $(Q) $(LD) $(LDFLAGS) $(HTTPCLI_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/httpcli_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004497
nnoble69ac39f2014-12-12 15:43:38 -08004498endif
4499
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004500deps_httpcli_test: $(HTTPCLI_TEST_DEPS)
4501
nnoble69ac39f2014-12-12 15:43:38 -08004502ifneq ($(NO_SECURE),true)
4503ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004504-include $(HTTPCLI_TEST_DEPS)
4505endif
nnoble69ac39f2014-12-12 15:43:38 -08004506endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004507
4508clean_httpcli_test:
4509 $(E) "[CLEAN] Cleaning httpcli_test files"
4510 $(Q) $(RM) $(HTTPCLI_TEST_OBJS)
4511 $(Q) $(RM) $(HTTPCLI_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004512 $(Q) $(RM) bins/$(TGTDIR)/httpcli_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004513
4514
4515GRPC_CREDENTIALS_TEST_SRC = \
4516 test/core/security/credentials_test.c \
4517
ctiller09cb6d52014-12-19 17:38:22 -08004518GRPC_CREDENTIALS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GRPC_CREDENTIALS_TEST_SRC))))
4519GRPC_CREDENTIALS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GRPC_CREDENTIALS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004520
nnoble69ac39f2014-12-12 15:43:38 -08004521ifeq ($(NO_SECURE),true)
4522
ctiller09cb6d52014-12-19 17:38:22 -08004523bins/$(TGTDIR)/grpc_credentials_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004524
4525else
4526
ctiller09cb6d52014-12-19 17:38:22 -08004527bins/$(TGTDIR)/grpc_credentials_test: $(GRPC_CREDENTIALS_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004528 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004529 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004530 $(Q) $(LD) $(LDFLAGS) $(GRPC_CREDENTIALS_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/grpc_credentials_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004531
nnoble69ac39f2014-12-12 15:43:38 -08004532endif
4533
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004534deps_grpc_credentials_test: $(GRPC_CREDENTIALS_TEST_DEPS)
4535
nnoble69ac39f2014-12-12 15:43:38 -08004536ifneq ($(NO_SECURE),true)
4537ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004538-include $(GRPC_CREDENTIALS_TEST_DEPS)
4539endif
nnoble69ac39f2014-12-12 15:43:38 -08004540endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004541
4542clean_grpc_credentials_test:
4543 $(E) "[CLEAN] Cleaning grpc_credentials_test files"
4544 $(Q) $(RM) $(GRPC_CREDENTIALS_TEST_OBJS)
4545 $(Q) $(RM) $(GRPC_CREDENTIALS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004546 $(Q) $(RM) bins/$(TGTDIR)/grpc_credentials_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004547
4548
jboeuf1a809c02014-12-19 15:44:30 -08004549GRPC_FETCH_OAUTH2_SRC = \
4550 test/core/security/fetch_oauth2.c \
4551
ctiller09cb6d52014-12-19 17:38:22 -08004552GRPC_FETCH_OAUTH2_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GRPC_FETCH_OAUTH2_SRC))))
4553GRPC_FETCH_OAUTH2_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GRPC_FETCH_OAUTH2_SRC))))
jboeuf1a809c02014-12-19 15:44:30 -08004554
4555ifeq ($(NO_SECURE),true)
4556
ctiller09cb6d52014-12-19 17:38:22 -08004557bins/$(TGTDIR)/grpc_fetch_oauth2: openssl_dep_error
jboeuf1a809c02014-12-19 15:44:30 -08004558
4559else
4560
ctiller09cb6d52014-12-19 17:38:22 -08004561bins/$(TGTDIR)/grpc_fetch_oauth2: $(GRPC_FETCH_OAUTH2_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
jboeuf1a809c02014-12-19 15:44:30 -08004562 $(E) "[LD] Linking $@"
4563 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004564 $(Q) $(LD) $(LDFLAGS) $(GRPC_FETCH_OAUTH2_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/grpc_fetch_oauth2
jboeuf1a809c02014-12-19 15:44:30 -08004565
4566endif
4567
4568deps_grpc_fetch_oauth2: $(GRPC_FETCH_OAUTH2_DEPS)
4569
4570ifneq ($(NO_SECURE),true)
4571ifneq ($(NO_DEPS),true)
4572-include $(GRPC_FETCH_OAUTH2_DEPS)
4573endif
4574endif
4575
4576clean_grpc_fetch_oauth2:
4577 $(E) "[CLEAN] Cleaning grpc_fetch_oauth2 files"
4578 $(Q) $(RM) $(GRPC_FETCH_OAUTH2_OBJS)
4579 $(Q) $(RM) $(GRPC_FETCH_OAUTH2_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004580 $(Q) $(RM) bins/$(TGTDIR)/grpc_fetch_oauth2
jboeuf1a809c02014-12-19 15:44:30 -08004581
4582
jboeufbefd2652014-12-12 15:39:47 -08004583GRPC_BASE64_TEST_SRC = \
4584 test/core/security/base64_test.c \
4585
ctiller09cb6d52014-12-19 17:38:22 -08004586GRPC_BASE64_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GRPC_BASE64_TEST_SRC))))
4587GRPC_BASE64_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GRPC_BASE64_TEST_SRC))))
jboeufbefd2652014-12-12 15:39:47 -08004588
nnoble69ac39f2014-12-12 15:43:38 -08004589ifeq ($(NO_SECURE),true)
4590
ctiller09cb6d52014-12-19 17:38:22 -08004591bins/$(TGTDIR)/grpc_base64_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004592
4593else
4594
ctiller09cb6d52014-12-19 17:38:22 -08004595bins/$(TGTDIR)/grpc_base64_test: $(GRPC_BASE64_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
jboeufbefd2652014-12-12 15:39:47 -08004596 $(E) "[LD] Linking $@"
4597 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004598 $(Q) $(LD) $(LDFLAGS) $(GRPC_BASE64_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/grpc_base64_test
jboeufbefd2652014-12-12 15:39:47 -08004599
nnoble69ac39f2014-12-12 15:43:38 -08004600endif
4601
jboeufbefd2652014-12-12 15:39:47 -08004602deps_grpc_base64_test: $(GRPC_BASE64_TEST_DEPS)
4603
nnoble69ac39f2014-12-12 15:43:38 -08004604ifneq ($(NO_SECURE),true)
4605ifneq ($(NO_DEPS),true)
jboeufbefd2652014-12-12 15:39:47 -08004606-include $(GRPC_BASE64_TEST_DEPS)
4607endif
nnoble69ac39f2014-12-12 15:43:38 -08004608endif
jboeufbefd2652014-12-12 15:39:47 -08004609
4610clean_grpc_base64_test:
4611 $(E) "[CLEAN] Cleaning grpc_base64_test files"
4612 $(Q) $(RM) $(GRPC_BASE64_TEST_OBJS)
4613 $(Q) $(RM) $(GRPC_BASE64_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004614 $(Q) $(RM) bins/$(TGTDIR)/grpc_base64_test
jboeufbefd2652014-12-12 15:39:47 -08004615
4616
4617GRPC_JSON_TOKEN_TEST_SRC = \
4618 test/core/security/json_token_test.c \
4619
ctiller09cb6d52014-12-19 17:38:22 -08004620GRPC_JSON_TOKEN_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(GRPC_JSON_TOKEN_TEST_SRC))))
4621GRPC_JSON_TOKEN_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(GRPC_JSON_TOKEN_TEST_SRC))))
jboeufbefd2652014-12-12 15:39:47 -08004622
nnoble69ac39f2014-12-12 15:43:38 -08004623ifeq ($(NO_SECURE),true)
4624
ctiller09cb6d52014-12-19 17:38:22 -08004625bins/$(TGTDIR)/grpc_json_token_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004626
4627else
4628
ctiller09cb6d52014-12-19 17:38:22 -08004629bins/$(TGTDIR)/grpc_json_token_test: $(GRPC_JSON_TOKEN_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
jboeufbefd2652014-12-12 15:39:47 -08004630 $(E) "[LD] Linking $@"
4631 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004632 $(Q) $(LD) $(LDFLAGS) $(GRPC_JSON_TOKEN_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/grpc_json_token_test
jboeufbefd2652014-12-12 15:39:47 -08004633
nnoble69ac39f2014-12-12 15:43:38 -08004634endif
4635
jboeufbefd2652014-12-12 15:39:47 -08004636deps_grpc_json_token_test: $(GRPC_JSON_TOKEN_TEST_DEPS)
4637
nnoble69ac39f2014-12-12 15:43:38 -08004638ifneq ($(NO_SECURE),true)
4639ifneq ($(NO_DEPS),true)
jboeufbefd2652014-12-12 15:39:47 -08004640-include $(GRPC_JSON_TOKEN_TEST_DEPS)
4641endif
nnoble69ac39f2014-12-12 15:43:38 -08004642endif
jboeufbefd2652014-12-12 15:39:47 -08004643
4644clean_grpc_json_token_test:
4645 $(E) "[CLEAN] Cleaning grpc_json_token_test files"
4646 $(Q) $(RM) $(GRPC_JSON_TOKEN_TEST_OBJS)
4647 $(Q) $(RM) $(GRPC_JSON_TOKEN_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004648 $(Q) $(RM) bins/$(TGTDIR)/grpc_json_token_test
jboeufbefd2652014-12-12 15:39:47 -08004649
4650
ctiller8919f602014-12-10 10:19:42 -08004651TIMEOUT_ENCODING_TEST_SRC = \
4652 test/core/transport/chttp2/timeout_encoding_test.c \
4653
ctiller09cb6d52014-12-19 17:38:22 -08004654TIMEOUT_ENCODING_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(TIMEOUT_ENCODING_TEST_SRC))))
4655TIMEOUT_ENCODING_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(TIMEOUT_ENCODING_TEST_SRC))))
ctiller8919f602014-12-10 10:19:42 -08004656
nnoble69ac39f2014-12-12 15:43:38 -08004657ifeq ($(NO_SECURE),true)
4658
ctiller09cb6d52014-12-19 17:38:22 -08004659bins/$(TGTDIR)/timeout_encoding_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004660
4661else
4662
ctiller09cb6d52014-12-19 17:38:22 -08004663bins/$(TGTDIR)/timeout_encoding_test: $(TIMEOUT_ENCODING_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller8919f602014-12-10 10:19:42 -08004664 $(E) "[LD] Linking $@"
4665 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004666 $(Q) $(LD) $(LDFLAGS) $(TIMEOUT_ENCODING_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/timeout_encoding_test
ctiller8919f602014-12-10 10:19:42 -08004667
nnoble69ac39f2014-12-12 15:43:38 -08004668endif
4669
ctiller8919f602014-12-10 10:19:42 -08004670deps_timeout_encoding_test: $(TIMEOUT_ENCODING_TEST_DEPS)
4671
nnoble69ac39f2014-12-12 15:43:38 -08004672ifneq ($(NO_SECURE),true)
4673ifneq ($(NO_DEPS),true)
ctiller8919f602014-12-10 10:19:42 -08004674-include $(TIMEOUT_ENCODING_TEST_DEPS)
4675endif
nnoble69ac39f2014-12-12 15:43:38 -08004676endif
ctiller8919f602014-12-10 10:19:42 -08004677
4678clean_timeout_encoding_test:
4679 $(E) "[CLEAN] Cleaning timeout_encoding_test files"
4680 $(Q) $(RM) $(TIMEOUT_ENCODING_TEST_OBJS)
4681 $(Q) $(RM) $(TIMEOUT_ENCODING_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004682 $(Q) $(RM) bins/$(TGTDIR)/timeout_encoding_test
ctiller8919f602014-12-10 10:19:42 -08004683
4684
4685FD_POSIX_TEST_SRC = \
4686 test/core/iomgr/fd_posix_test.c \
4687
ctiller09cb6d52014-12-19 17:38:22 -08004688FD_POSIX_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(FD_POSIX_TEST_SRC))))
4689FD_POSIX_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(FD_POSIX_TEST_SRC))))
ctiller8919f602014-12-10 10:19:42 -08004690
nnoble69ac39f2014-12-12 15:43:38 -08004691ifeq ($(NO_SECURE),true)
4692
ctiller09cb6d52014-12-19 17:38:22 -08004693bins/$(TGTDIR)/fd_posix_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004694
4695else
4696
ctiller09cb6d52014-12-19 17:38:22 -08004697bins/$(TGTDIR)/fd_posix_test: $(FD_POSIX_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller8919f602014-12-10 10:19:42 -08004698 $(E) "[LD] Linking $@"
4699 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004700 $(Q) $(LD) $(LDFLAGS) $(FD_POSIX_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/fd_posix_test
ctiller8919f602014-12-10 10:19:42 -08004701
nnoble69ac39f2014-12-12 15:43:38 -08004702endif
4703
ctiller8919f602014-12-10 10:19:42 -08004704deps_fd_posix_test: $(FD_POSIX_TEST_DEPS)
4705
nnoble69ac39f2014-12-12 15:43:38 -08004706ifneq ($(NO_SECURE),true)
4707ifneq ($(NO_DEPS),true)
ctiller8919f602014-12-10 10:19:42 -08004708-include $(FD_POSIX_TEST_DEPS)
4709endif
nnoble69ac39f2014-12-12 15:43:38 -08004710endif
ctiller8919f602014-12-10 10:19:42 -08004711
4712clean_fd_posix_test:
4713 $(E) "[CLEAN] Cleaning fd_posix_test files"
4714 $(Q) $(RM) $(FD_POSIX_TEST_OBJS)
4715 $(Q) $(RM) $(FD_POSIX_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004716 $(Q) $(RM) bins/$(TGTDIR)/fd_posix_test
ctiller8919f602014-12-10 10:19:42 -08004717
4718
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004719FLING_STREAM_TEST_SRC = \
4720 test/core/fling/fling_stream_test.c \
4721
ctiller09cb6d52014-12-19 17:38:22 -08004722FLING_STREAM_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(FLING_STREAM_TEST_SRC))))
4723FLING_STREAM_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(FLING_STREAM_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004724
nnoble69ac39f2014-12-12 15:43:38 -08004725ifeq ($(NO_SECURE),true)
4726
ctiller09cb6d52014-12-19 17:38:22 -08004727bins/$(TGTDIR)/fling_stream_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004728
4729else
4730
ctiller09cb6d52014-12-19 17:38:22 -08004731bins/$(TGTDIR)/fling_stream_test: $(FLING_STREAM_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004732 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004733 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004734 $(Q) $(LD) $(LDFLAGS) $(FLING_STREAM_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/fling_stream_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004735
nnoble69ac39f2014-12-12 15:43:38 -08004736endif
4737
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004738deps_fling_stream_test: $(FLING_STREAM_TEST_DEPS)
4739
nnoble69ac39f2014-12-12 15:43:38 -08004740ifneq ($(NO_SECURE),true)
4741ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004742-include $(FLING_STREAM_TEST_DEPS)
4743endif
nnoble69ac39f2014-12-12 15:43:38 -08004744endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004745
4746clean_fling_stream_test:
4747 $(E) "[CLEAN] Cleaning fling_stream_test files"
4748 $(Q) $(RM) $(FLING_STREAM_TEST_OBJS)
4749 $(Q) $(RM) $(FLING_STREAM_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004750 $(Q) $(RM) bins/$(TGTDIR)/fling_stream_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004751
4752
4753LAME_CLIENT_TEST_SRC = \
4754 test/core/surface/lame_client_test.c \
4755
ctiller09cb6d52014-12-19 17:38:22 -08004756LAME_CLIENT_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(LAME_CLIENT_TEST_SRC))))
4757LAME_CLIENT_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(LAME_CLIENT_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004758
nnoble69ac39f2014-12-12 15:43:38 -08004759ifeq ($(NO_SECURE),true)
4760
ctiller09cb6d52014-12-19 17:38:22 -08004761bins/$(TGTDIR)/lame_client_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004762
4763else
4764
ctiller09cb6d52014-12-19 17:38:22 -08004765bins/$(TGTDIR)/lame_client_test: $(LAME_CLIENT_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004766 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004767 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004768 $(Q) $(LD) $(LDFLAGS) $(LAME_CLIENT_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/lame_client_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004769
nnoble69ac39f2014-12-12 15:43:38 -08004770endif
4771
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004772deps_lame_client_test: $(LAME_CLIENT_TEST_DEPS)
4773
nnoble69ac39f2014-12-12 15:43:38 -08004774ifneq ($(NO_SECURE),true)
4775ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004776-include $(LAME_CLIENT_TEST_DEPS)
4777endif
nnoble69ac39f2014-12-12 15:43:38 -08004778endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004779
4780clean_lame_client_test:
4781 $(E) "[CLEAN] Cleaning lame_client_test files"
4782 $(Q) $(RM) $(LAME_CLIENT_TEST_OBJS)
4783 $(Q) $(RM) $(LAME_CLIENT_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004784 $(Q) $(RM) bins/$(TGTDIR)/lame_client_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004785
4786
4787THREAD_POOL_TEST_SRC = \
4788 test/cpp/server/thread_pool_test.cc \
4789
ctiller09cb6d52014-12-19 17:38:22 -08004790THREAD_POOL_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(THREAD_POOL_TEST_SRC))))
4791THREAD_POOL_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(THREAD_POOL_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004792
nnoble69ac39f2014-12-12 15:43:38 -08004793ifeq ($(NO_SECURE),true)
4794
ctiller09cb6d52014-12-19 17:38:22 -08004795bins/$(TGTDIR)/thread_pool_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004796
4797else
4798
ctiller09cb6d52014-12-19 17:38:22 -08004799bins/$(TGTDIR)/thread_pool_test: $(THREAD_POOL_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004800 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004801 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004802 $(Q) $(LDXX) $(LDFLAGS) $(THREAD_POOL_TEST_OBJS) $(GTEST_LIB) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/thread_pool_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004803
nnoble69ac39f2014-12-12 15:43:38 -08004804endif
4805
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004806deps_thread_pool_test: $(THREAD_POOL_TEST_DEPS)
4807
nnoble69ac39f2014-12-12 15:43:38 -08004808ifneq ($(NO_SECURE),true)
4809ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004810-include $(THREAD_POOL_TEST_DEPS)
4811endif
nnoble69ac39f2014-12-12 15:43:38 -08004812endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004813
4814clean_thread_pool_test:
4815 $(E) "[CLEAN] Cleaning thread_pool_test files"
4816 $(Q) $(RM) $(THREAD_POOL_TEST_OBJS)
4817 $(Q) $(RM) $(THREAD_POOL_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004818 $(Q) $(RM) bins/$(TGTDIR)/thread_pool_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004819
4820
4821STATUS_TEST_SRC = \
4822 test/cpp/util/status_test.cc \
4823
ctiller09cb6d52014-12-19 17:38:22 -08004824STATUS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(STATUS_TEST_SRC))))
4825STATUS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(STATUS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004826
nnoble69ac39f2014-12-12 15:43:38 -08004827ifeq ($(NO_SECURE),true)
4828
ctiller09cb6d52014-12-19 17:38:22 -08004829bins/$(TGTDIR)/status_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004830
4831else
4832
ctiller09cb6d52014-12-19 17:38:22 -08004833bins/$(TGTDIR)/status_test: $(STATUS_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004834 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08004835 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004836 $(Q) $(LDXX) $(LDFLAGS) $(STATUS_TEST_OBJS) $(GTEST_LIB) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/status_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004837
nnoble69ac39f2014-12-12 15:43:38 -08004838endif
4839
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004840deps_status_test: $(STATUS_TEST_DEPS)
4841
nnoble69ac39f2014-12-12 15:43:38 -08004842ifneq ($(NO_SECURE),true)
4843ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004844-include $(STATUS_TEST_DEPS)
4845endif
nnoble69ac39f2014-12-12 15:43:38 -08004846endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004847
4848clean_status_test:
4849 $(E) "[CLEAN] Cleaning status_test files"
4850 $(Q) $(RM) $(STATUS_TEST_OBJS)
4851 $(Q) $(RM) $(STATUS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004852 $(Q) $(RM) bins/$(TGTDIR)/status_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004853
4854
ctiller8919f602014-12-10 10:19:42 -08004855SYNC_CLIENT_ASYNC_SERVER_TEST_SRC = \
4856 test/cpp/end2end/sync_client_async_server_test.cc \
4857
ctiller09cb6d52014-12-19 17:38:22 -08004858SYNC_CLIENT_ASYNC_SERVER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(SYNC_CLIENT_ASYNC_SERVER_TEST_SRC))))
4859SYNC_CLIENT_ASYNC_SERVER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(SYNC_CLIENT_ASYNC_SERVER_TEST_SRC))))
ctiller8919f602014-12-10 10:19:42 -08004860
nnoble69ac39f2014-12-12 15:43:38 -08004861ifeq ($(NO_SECURE),true)
4862
ctiller09cb6d52014-12-19 17:38:22 -08004863bins/$(TGTDIR)/sync_client_async_server_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004864
4865else
4866
ctiller09cb6d52014-12-19 17:38:22 -08004867bins/$(TGTDIR)/sync_client_async_server_test: $(SYNC_CLIENT_ASYNC_SERVER_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller8919f602014-12-10 10:19:42 -08004868 $(E) "[LD] Linking $@"
4869 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004870 $(Q) $(LDXX) $(LDFLAGS) $(SYNC_CLIENT_ASYNC_SERVER_TEST_OBJS) $(GTEST_LIB) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/sync_client_async_server_test
ctiller8919f602014-12-10 10:19:42 -08004871
nnoble69ac39f2014-12-12 15:43:38 -08004872endif
4873
ctiller8919f602014-12-10 10:19:42 -08004874deps_sync_client_async_server_test: $(SYNC_CLIENT_ASYNC_SERVER_TEST_DEPS)
4875
nnoble69ac39f2014-12-12 15:43:38 -08004876ifneq ($(NO_SECURE),true)
4877ifneq ($(NO_DEPS),true)
ctiller8919f602014-12-10 10:19:42 -08004878-include $(SYNC_CLIENT_ASYNC_SERVER_TEST_DEPS)
4879endif
nnoble69ac39f2014-12-12 15:43:38 -08004880endif
ctiller8919f602014-12-10 10:19:42 -08004881
4882clean_sync_client_async_server_test:
4883 $(E) "[CLEAN] Cleaning sync_client_async_server_test files"
4884 $(Q) $(RM) $(SYNC_CLIENT_ASYNC_SERVER_TEST_OBJS)
4885 $(Q) $(RM) $(SYNC_CLIENT_ASYNC_SERVER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004886 $(Q) $(RM) bins/$(TGTDIR)/sync_client_async_server_test
ctiller8919f602014-12-10 10:19:42 -08004887
4888
4889QPS_CLIENT_SRC = \
vpai80b6d012014-12-17 11:47:32 -08004890 gens/test/cpp/interop/empty.pb.cc \
4891 gens/test/cpp/interop/messages.pb.cc \
4892 gens/test/cpp/interop/test.pb.cc \
4893 test/cpp/qps/client.cc \
ctiller8919f602014-12-10 10:19:42 -08004894
ctiller09cb6d52014-12-19 17:38:22 -08004895QPS_CLIENT_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(QPS_CLIENT_SRC))))
4896QPS_CLIENT_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(QPS_CLIENT_SRC))))
ctiller8919f602014-12-10 10:19:42 -08004897
nnoble69ac39f2014-12-12 15:43:38 -08004898ifeq ($(NO_SECURE),true)
4899
ctiller09cb6d52014-12-19 17:38:22 -08004900bins/$(TGTDIR)/qps_client: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004901
4902else
4903
ctiller09cb6d52014-12-19 17:38:22 -08004904bins/$(TGTDIR)/qps_client: $(QPS_CLIENT_OBJS) libs/$(TGTDIR)/libgrpc++_test_util.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller8919f602014-12-10 10:19:42 -08004905 $(E) "[LD] Linking $@"
4906 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004907 $(Q) $(LDXX) $(LDFLAGS) $(QPS_CLIENT_OBJS) $(GTEST_LIB) libs/$(TGTDIR)/libgrpc++_test_util.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/qps_client
ctiller8919f602014-12-10 10:19:42 -08004908
nnoble69ac39f2014-12-12 15:43:38 -08004909endif
4910
ctiller8919f602014-12-10 10:19:42 -08004911deps_qps_client: $(QPS_CLIENT_DEPS)
4912
nnoble69ac39f2014-12-12 15:43:38 -08004913ifneq ($(NO_SECURE),true)
4914ifneq ($(NO_DEPS),true)
ctiller8919f602014-12-10 10:19:42 -08004915-include $(QPS_CLIENT_DEPS)
4916endif
nnoble69ac39f2014-12-12 15:43:38 -08004917endif
ctiller8919f602014-12-10 10:19:42 -08004918
4919clean_qps_client:
4920 $(E) "[CLEAN] Cleaning qps_client files"
4921 $(Q) $(RM) $(QPS_CLIENT_OBJS)
4922 $(Q) $(RM) $(QPS_CLIENT_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004923 $(Q) $(RM) bins/$(TGTDIR)/qps_client
ctiller8919f602014-12-10 10:19:42 -08004924
4925
4926QPS_SERVER_SRC = \
vpai80b6d012014-12-17 11:47:32 -08004927 gens/test/cpp/interop/empty.pb.cc \
4928 gens/test/cpp/interop/messages.pb.cc \
4929 gens/test/cpp/interop/test.pb.cc \
4930 test/cpp/qps/server.cc \
ctiller8919f602014-12-10 10:19:42 -08004931
ctiller09cb6d52014-12-19 17:38:22 -08004932QPS_SERVER_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(QPS_SERVER_SRC))))
4933QPS_SERVER_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(QPS_SERVER_SRC))))
ctiller8919f602014-12-10 10:19:42 -08004934
nnoble69ac39f2014-12-12 15:43:38 -08004935ifeq ($(NO_SECURE),true)
4936
ctiller09cb6d52014-12-19 17:38:22 -08004937bins/$(TGTDIR)/qps_server: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004938
4939else
4940
ctiller09cb6d52014-12-19 17:38:22 -08004941bins/$(TGTDIR)/qps_server: $(QPS_SERVER_OBJS) libs/$(TGTDIR)/libgrpc++_test_util.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller8919f602014-12-10 10:19:42 -08004942 $(E) "[LD] Linking $@"
4943 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004944 $(Q) $(LDXX) $(LDFLAGS) $(QPS_SERVER_OBJS) $(GTEST_LIB) libs/$(TGTDIR)/libgrpc++_test_util.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/qps_server
ctiller8919f602014-12-10 10:19:42 -08004945
nnoble69ac39f2014-12-12 15:43:38 -08004946endif
4947
ctiller8919f602014-12-10 10:19:42 -08004948deps_qps_server: $(QPS_SERVER_DEPS)
4949
nnoble69ac39f2014-12-12 15:43:38 -08004950ifneq ($(NO_SECURE),true)
4951ifneq ($(NO_DEPS),true)
ctiller8919f602014-12-10 10:19:42 -08004952-include $(QPS_SERVER_DEPS)
4953endif
nnoble69ac39f2014-12-12 15:43:38 -08004954endif
ctiller8919f602014-12-10 10:19:42 -08004955
4956clean_qps_server:
4957 $(E) "[CLEAN] Cleaning qps_server files"
4958 $(Q) $(RM) $(QPS_SERVER_OBJS)
4959 $(Q) $(RM) $(QPS_SERVER_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004960 $(Q) $(RM) bins/$(TGTDIR)/qps_server
ctiller8919f602014-12-10 10:19:42 -08004961
4962
4963INTEROP_SERVER_SRC = \
nnoble72309c62014-12-12 11:42:26 -08004964 gens/test/cpp/interop/empty.pb.cc \
4965 gens/test/cpp/interop/messages.pb.cc \
4966 gens/test/cpp/interop/test.pb.cc \
ctiller8919f602014-12-10 10:19:42 -08004967 test/cpp/interop/server.cc \
4968
ctiller09cb6d52014-12-19 17:38:22 -08004969INTEROP_SERVER_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(INTEROP_SERVER_SRC))))
4970INTEROP_SERVER_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(INTEROP_SERVER_SRC))))
ctiller8919f602014-12-10 10:19:42 -08004971
nnoble69ac39f2014-12-12 15:43:38 -08004972ifeq ($(NO_SECURE),true)
4973
ctiller09cb6d52014-12-19 17:38:22 -08004974bins/$(TGTDIR)/interop_server: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08004975
4976else
4977
ctiller09cb6d52014-12-19 17:38:22 -08004978bins/$(TGTDIR)/interop_server: $(INTEROP_SERVER_OBJS) libs/$(TGTDIR)/libgrpc++_test_util.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller8919f602014-12-10 10:19:42 -08004979 $(E) "[LD] Linking $@"
4980 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08004981 $(Q) $(LDXX) $(LDFLAGS) $(INTEROP_SERVER_OBJS) $(GTEST_LIB) libs/$(TGTDIR)/libgrpc++_test_util.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/interop_server
ctiller8919f602014-12-10 10:19:42 -08004982
nnoble69ac39f2014-12-12 15:43:38 -08004983endif
4984
ctiller8919f602014-12-10 10:19:42 -08004985deps_interop_server: $(INTEROP_SERVER_DEPS)
4986
nnoble69ac39f2014-12-12 15:43:38 -08004987ifneq ($(NO_SECURE),true)
4988ifneq ($(NO_DEPS),true)
ctiller8919f602014-12-10 10:19:42 -08004989-include $(INTEROP_SERVER_DEPS)
4990endif
nnoble69ac39f2014-12-12 15:43:38 -08004991endif
ctiller8919f602014-12-10 10:19:42 -08004992
4993clean_interop_server:
4994 $(E) "[CLEAN] Cleaning interop_server files"
4995 $(Q) $(RM) $(INTEROP_SERVER_OBJS)
4996 $(Q) $(RM) $(INTEROP_SERVER_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08004997 $(Q) $(RM) bins/$(TGTDIR)/interop_server
ctiller8919f602014-12-10 10:19:42 -08004998
4999
5000INTEROP_CLIENT_SRC = \
nnoble72309c62014-12-12 11:42:26 -08005001 gens/test/cpp/interop/empty.pb.cc \
5002 gens/test/cpp/interop/messages.pb.cc \
5003 gens/test/cpp/interop/test.pb.cc \
ctiller8919f602014-12-10 10:19:42 -08005004 test/cpp/interop/client.cc \
5005
ctiller09cb6d52014-12-19 17:38:22 -08005006INTEROP_CLIENT_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(INTEROP_CLIENT_SRC))))
5007INTEROP_CLIENT_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(INTEROP_CLIENT_SRC))))
ctiller8919f602014-12-10 10:19:42 -08005008
nnoble69ac39f2014-12-12 15:43:38 -08005009ifeq ($(NO_SECURE),true)
5010
ctiller09cb6d52014-12-19 17:38:22 -08005011bins/$(TGTDIR)/interop_client: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005012
5013else
5014
ctiller09cb6d52014-12-19 17:38:22 -08005015bins/$(TGTDIR)/interop_client: $(INTEROP_CLIENT_OBJS) libs/$(TGTDIR)/libgrpc++_test_util.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller8919f602014-12-10 10:19:42 -08005016 $(E) "[LD] Linking $@"
5017 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005018 $(Q) $(LDXX) $(LDFLAGS) $(INTEROP_CLIENT_OBJS) $(GTEST_LIB) libs/$(TGTDIR)/libgrpc++_test_util.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/interop_client
ctiller8919f602014-12-10 10:19:42 -08005019
nnoble69ac39f2014-12-12 15:43:38 -08005020endif
5021
ctiller8919f602014-12-10 10:19:42 -08005022deps_interop_client: $(INTEROP_CLIENT_DEPS)
5023
nnoble69ac39f2014-12-12 15:43:38 -08005024ifneq ($(NO_SECURE),true)
5025ifneq ($(NO_DEPS),true)
ctiller8919f602014-12-10 10:19:42 -08005026-include $(INTEROP_CLIENT_DEPS)
5027endif
nnoble69ac39f2014-12-12 15:43:38 -08005028endif
ctiller8919f602014-12-10 10:19:42 -08005029
5030clean_interop_client:
5031 $(E) "[CLEAN] Cleaning interop_client files"
5032 $(Q) $(RM) $(INTEROP_CLIENT_OBJS)
5033 $(Q) $(RM) $(INTEROP_CLIENT_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005034 $(Q) $(RM) bins/$(TGTDIR)/interop_client
ctiller8919f602014-12-10 10:19:42 -08005035
5036
5037END2END_TEST_SRC = \
5038 test/cpp/end2end/end2end_test.cc \
5039
ctiller09cb6d52014-12-19 17:38:22 -08005040END2END_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(END2END_TEST_SRC))))
5041END2END_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(END2END_TEST_SRC))))
ctiller8919f602014-12-10 10:19:42 -08005042
nnoble69ac39f2014-12-12 15:43:38 -08005043ifeq ($(NO_SECURE),true)
5044
ctiller09cb6d52014-12-19 17:38:22 -08005045bins/$(TGTDIR)/end2end_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005046
5047else
5048
ctiller09cb6d52014-12-19 17:38:22 -08005049bins/$(TGTDIR)/end2end_test: $(END2END_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller8919f602014-12-10 10:19:42 -08005050 $(E) "[LD] Linking $@"
5051 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005052 $(Q) $(LDXX) $(LDFLAGS) $(END2END_TEST_OBJS) $(GTEST_LIB) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/end2end_test
ctiller8919f602014-12-10 10:19:42 -08005053
nnoble69ac39f2014-12-12 15:43:38 -08005054endif
5055
ctiller8919f602014-12-10 10:19:42 -08005056deps_end2end_test: $(END2END_TEST_DEPS)
5057
nnoble69ac39f2014-12-12 15:43:38 -08005058ifneq ($(NO_SECURE),true)
5059ifneq ($(NO_DEPS),true)
ctiller8919f602014-12-10 10:19:42 -08005060-include $(END2END_TEST_DEPS)
5061endif
nnoble69ac39f2014-12-12 15:43:38 -08005062endif
ctiller8919f602014-12-10 10:19:42 -08005063
5064clean_end2end_test:
5065 $(E) "[CLEAN] Cleaning end2end_test files"
5066 $(Q) $(RM) $(END2END_TEST_OBJS)
5067 $(Q) $(RM) $(END2END_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005068 $(Q) $(RM) bins/$(TGTDIR)/end2end_test
ctiller8919f602014-12-10 10:19:42 -08005069
5070
yangg59dfc902014-12-19 14:00:14 -08005071CHANNEL_ARGUMENTS_TEST_SRC = \
5072 test/cpp/client/channel_arguments_test.cc \
5073
ctiller09cb6d52014-12-19 17:38:22 -08005074CHANNEL_ARGUMENTS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHANNEL_ARGUMENTS_TEST_SRC))))
5075CHANNEL_ARGUMENTS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHANNEL_ARGUMENTS_TEST_SRC))))
yangg59dfc902014-12-19 14:00:14 -08005076
5077ifeq ($(NO_SECURE),true)
5078
ctiller09cb6d52014-12-19 17:38:22 -08005079bins/$(TGTDIR)/channel_arguments_test: openssl_dep_error
yangg59dfc902014-12-19 14:00:14 -08005080
5081else
5082
ctiller09cb6d52014-12-19 17:38:22 -08005083bins/$(TGTDIR)/channel_arguments_test: $(CHANNEL_ARGUMENTS_TEST_OBJS) libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a
yangg59dfc902014-12-19 14:00:14 -08005084 $(E) "[LD] Linking $@"
5085 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005086 $(Q) $(LDXX) $(LDFLAGS) $(CHANNEL_ARGUMENTS_TEST_OBJS) $(GTEST_LIB) libs/$(TGTDIR)/libgrpc++.a libs/$(TGTDIR)/libgrpc.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/channel_arguments_test
yangg59dfc902014-12-19 14:00:14 -08005087
5088endif
5089
5090deps_channel_arguments_test: $(CHANNEL_ARGUMENTS_TEST_DEPS)
5091
5092ifneq ($(NO_SECURE),true)
5093ifneq ($(NO_DEPS),true)
5094-include $(CHANNEL_ARGUMENTS_TEST_DEPS)
5095endif
5096endif
5097
5098clean_channel_arguments_test:
5099 $(E) "[CLEAN] Cleaning channel_arguments_test files"
5100 $(Q) $(RM) $(CHANNEL_ARGUMENTS_TEST_OBJS)
5101 $(Q) $(RM) $(CHANNEL_ARGUMENTS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005102 $(Q) $(RM) bins/$(TGTDIR)/channel_arguments_test
yangg59dfc902014-12-19 14:00:14 -08005103
5104
ctiller8919f602014-12-10 10:19:42 -08005105ALARM_TEST_SRC = \
5106 test/core/iomgr/alarm_test.c \
5107
ctiller09cb6d52014-12-19 17:38:22 -08005108ALARM_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(ALARM_TEST_SRC))))
5109ALARM_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(ALARM_TEST_SRC))))
ctiller8919f602014-12-10 10:19:42 -08005110
nnoble69ac39f2014-12-12 15:43:38 -08005111ifeq ($(NO_SECURE),true)
5112
ctiller09cb6d52014-12-19 17:38:22 -08005113bins/$(TGTDIR)/alarm_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005114
5115else
5116
ctiller09cb6d52014-12-19 17:38:22 -08005117bins/$(TGTDIR)/alarm_test: $(ALARM_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller8919f602014-12-10 10:19:42 -08005118 $(E) "[LD] Linking $@"
5119 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005120 $(Q) $(LD) $(LDFLAGS) $(ALARM_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/alarm_test
ctiller8919f602014-12-10 10:19:42 -08005121
nnoble69ac39f2014-12-12 15:43:38 -08005122endif
5123
ctiller8919f602014-12-10 10:19:42 -08005124deps_alarm_test: $(ALARM_TEST_DEPS)
5125
nnoble69ac39f2014-12-12 15:43:38 -08005126ifneq ($(NO_SECURE),true)
5127ifneq ($(NO_DEPS),true)
ctiller8919f602014-12-10 10:19:42 -08005128-include $(ALARM_TEST_DEPS)
5129endif
nnoble69ac39f2014-12-12 15:43:38 -08005130endif
ctiller8919f602014-12-10 10:19:42 -08005131
5132clean_alarm_test:
5133 $(E) "[CLEAN] Cleaning alarm_test files"
5134 $(Q) $(RM) $(ALARM_TEST_OBJS)
5135 $(Q) $(RM) $(ALARM_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005136 $(Q) $(RM) bins/$(TGTDIR)/alarm_test
ctiller8919f602014-12-10 10:19:42 -08005137
5138
ctiller3bf466f2014-12-19 16:21:57 -08005139ALARM_LIST_TEST_SRC = \
5140 test/core/iomgr/alarm_list_test.c \
5141
ctiller09cb6d52014-12-19 17:38:22 -08005142ALARM_LIST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(ALARM_LIST_TEST_SRC))))
5143ALARM_LIST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(ALARM_LIST_TEST_SRC))))
ctiller3bf466f2014-12-19 16:21:57 -08005144
5145ifeq ($(NO_SECURE),true)
5146
ctiller09cb6d52014-12-19 17:38:22 -08005147bins/$(TGTDIR)/alarm_list_test: openssl_dep_error
ctiller3bf466f2014-12-19 16:21:57 -08005148
5149else
5150
ctiller09cb6d52014-12-19 17:38:22 -08005151bins/$(TGTDIR)/alarm_list_test: $(ALARM_LIST_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller3bf466f2014-12-19 16:21:57 -08005152 $(E) "[LD] Linking $@"
5153 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005154 $(Q) $(LD) $(LDFLAGS) $(ALARM_LIST_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/alarm_list_test
ctiller3bf466f2014-12-19 16:21:57 -08005155
5156endif
5157
5158deps_alarm_list_test: $(ALARM_LIST_TEST_DEPS)
5159
5160ifneq ($(NO_SECURE),true)
5161ifneq ($(NO_DEPS),true)
5162-include $(ALARM_LIST_TEST_DEPS)
5163endif
5164endif
5165
5166clean_alarm_list_test:
5167 $(E) "[CLEAN] Cleaning alarm_list_test files"
5168 $(Q) $(RM) $(ALARM_LIST_TEST_OBJS)
5169 $(Q) $(RM) $(ALARM_LIST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005170 $(Q) $(RM) bins/$(TGTDIR)/alarm_list_test
ctiller3bf466f2014-12-19 16:21:57 -08005171
5172
5173ALARM_HEAP_TEST_SRC = \
5174 test/core/iomgr/alarm_heap_test.c \
5175
ctiller09cb6d52014-12-19 17:38:22 -08005176ALARM_HEAP_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(ALARM_HEAP_TEST_SRC))))
5177ALARM_HEAP_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(ALARM_HEAP_TEST_SRC))))
ctiller3bf466f2014-12-19 16:21:57 -08005178
5179ifeq ($(NO_SECURE),true)
5180
ctiller09cb6d52014-12-19 17:38:22 -08005181bins/$(TGTDIR)/alarm_heap_test: openssl_dep_error
ctiller3bf466f2014-12-19 16:21:57 -08005182
5183else
5184
ctiller09cb6d52014-12-19 17:38:22 -08005185bins/$(TGTDIR)/alarm_heap_test: $(ALARM_HEAP_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller3bf466f2014-12-19 16:21:57 -08005186 $(E) "[LD] Linking $@"
5187 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005188 $(Q) $(LD) $(LDFLAGS) $(ALARM_HEAP_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/alarm_heap_test
ctiller3bf466f2014-12-19 16:21:57 -08005189
5190endif
5191
5192deps_alarm_heap_test: $(ALARM_HEAP_TEST_DEPS)
5193
5194ifneq ($(NO_SECURE),true)
5195ifneq ($(NO_DEPS),true)
5196-include $(ALARM_HEAP_TEST_DEPS)
5197endif
5198endif
5199
5200clean_alarm_heap_test:
5201 $(E) "[CLEAN] Cleaning alarm_heap_test files"
5202 $(Q) $(RM) $(ALARM_HEAP_TEST_OBJS)
5203 $(Q) $(RM) $(ALARM_HEAP_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005204 $(Q) $(RM) bins/$(TGTDIR)/alarm_heap_test
ctiller3bf466f2014-12-19 16:21:57 -08005205
5206
ctiller8919f602014-12-10 10:19:42 -08005207TIME_TEST_SRC = \
5208 test/core/support/time_test.c \
5209
ctiller09cb6d52014-12-19 17:38:22 -08005210TIME_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(TIME_TEST_SRC))))
5211TIME_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(TIME_TEST_SRC))))
ctiller8919f602014-12-10 10:19:42 -08005212
nnoble69ac39f2014-12-12 15:43:38 -08005213ifeq ($(NO_SECURE),true)
5214
ctiller09cb6d52014-12-19 17:38:22 -08005215bins/$(TGTDIR)/time_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005216
5217else
5218
ctiller09cb6d52014-12-19 17:38:22 -08005219bins/$(TGTDIR)/time_test: $(TIME_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller8919f602014-12-10 10:19:42 -08005220 $(E) "[LD] Linking $@"
5221 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005222 $(Q) $(LD) $(LDFLAGS) $(TIME_TEST_OBJS) libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/time_test
ctiller8919f602014-12-10 10:19:42 -08005223
nnoble69ac39f2014-12-12 15:43:38 -08005224endif
5225
ctiller8919f602014-12-10 10:19:42 -08005226deps_time_test: $(TIME_TEST_DEPS)
5227
nnoble69ac39f2014-12-12 15:43:38 -08005228ifneq ($(NO_SECURE),true)
5229ifneq ($(NO_DEPS),true)
ctiller8919f602014-12-10 10:19:42 -08005230-include $(TIME_TEST_DEPS)
5231endif
nnoble69ac39f2014-12-12 15:43:38 -08005232endif
ctiller8919f602014-12-10 10:19:42 -08005233
5234clean_time_test:
5235 $(E) "[CLEAN] Cleaning time_test files"
5236 $(Q) $(RM) $(TIME_TEST_OBJS)
5237 $(Q) $(RM) $(TIME_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005238 $(Q) $(RM) bins/$(TGTDIR)/time_test
ctiller8919f602014-12-10 10:19:42 -08005239
5240
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005241CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_SRC = \
5242
ctiller09cb6d52014-12-19 17:38:22 -08005243CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_SRC))))
5244CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005245
nnoble69ac39f2014-12-12 15:43:38 -08005246ifeq ($(NO_SECURE),true)
5247
ctiller09cb6d52014-12-19 17:38:22 -08005248bins/$(TGTDIR)/chttp2_fake_security_cancel_after_accept_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005249
5250else
5251
ctiller09cb6d52014-12-19 17:38:22 -08005252bins/$(TGTDIR)/chttp2_fake_security_cancel_after_accept_test: $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005253 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005254 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005255 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_cancel_after_accept_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005256
nnoble69ac39f2014-12-12 15:43:38 -08005257endif
5258
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005259deps_chttp2_fake_security_cancel_after_accept_test: $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_DEPS)
5260
nnoble69ac39f2014-12-12 15:43:38 -08005261ifneq ($(NO_SECURE),true)
5262ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005263-include $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_DEPS)
5264endif
nnoble69ac39f2014-12-12 15:43:38 -08005265endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005266
5267clean_chttp2_fake_security_cancel_after_accept_test:
5268 $(E) "[CLEAN] Cleaning chttp2_fake_security_cancel_after_accept_test files"
5269 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_OBJS)
5270 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005271 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_cancel_after_accept_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005272
5273
5274CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC = \
5275
ctiller09cb6d52014-12-19 17:38:22 -08005276CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC))))
5277CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005278
nnoble69ac39f2014-12-12 15:43:38 -08005279ifeq ($(NO_SECURE),true)
5280
ctiller09cb6d52014-12-19 17:38:22 -08005281bins/$(TGTDIR)/chttp2_fake_security_cancel_after_accept_and_writes_closed_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005282
5283else
5284
ctiller09cb6d52014-12-19 17:38:22 -08005285bins/$(TGTDIR)/chttp2_fake_security_cancel_after_accept_and_writes_closed_test: $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005286 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005287 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005288 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_cancel_after_accept_and_writes_closed_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005289
nnoble69ac39f2014-12-12 15:43:38 -08005290endif
5291
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005292deps_chttp2_fake_security_cancel_after_accept_and_writes_closed_test: $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
5293
nnoble69ac39f2014-12-12 15:43:38 -08005294ifneq ($(NO_SECURE),true)
5295ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005296-include $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
5297endif
nnoble69ac39f2014-12-12 15:43:38 -08005298endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005299
5300clean_chttp2_fake_security_cancel_after_accept_and_writes_closed_test:
5301 $(E) "[CLEAN] Cleaning chttp2_fake_security_cancel_after_accept_and_writes_closed_test files"
5302 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS)
5303 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005304 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_cancel_after_accept_and_writes_closed_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005305
5306
5307CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_SRC = \
5308
ctiller09cb6d52014-12-19 17:38:22 -08005309CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_SRC))))
5310CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005311
nnoble69ac39f2014-12-12 15:43:38 -08005312ifeq ($(NO_SECURE),true)
5313
ctiller09cb6d52014-12-19 17:38:22 -08005314bins/$(TGTDIR)/chttp2_fake_security_cancel_after_invoke_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005315
5316else
5317
ctiller09cb6d52014-12-19 17:38:22 -08005318bins/$(TGTDIR)/chttp2_fake_security_cancel_after_invoke_test: $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005319 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005320 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005321 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_cancel_after_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005322
nnoble69ac39f2014-12-12 15:43:38 -08005323endif
5324
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005325deps_chttp2_fake_security_cancel_after_invoke_test: $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_DEPS)
5326
nnoble69ac39f2014-12-12 15:43:38 -08005327ifneq ($(NO_SECURE),true)
5328ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005329-include $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_DEPS)
5330endif
nnoble69ac39f2014-12-12 15:43:38 -08005331endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005332
5333clean_chttp2_fake_security_cancel_after_invoke_test:
5334 $(E) "[CLEAN] Cleaning chttp2_fake_security_cancel_after_invoke_test files"
5335 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_OBJS)
5336 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005337 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_cancel_after_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005338
5339
5340CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_SRC = \
5341
ctiller09cb6d52014-12-19 17:38:22 -08005342CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_SRC))))
5343CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005344
nnoble69ac39f2014-12-12 15:43:38 -08005345ifeq ($(NO_SECURE),true)
5346
ctiller09cb6d52014-12-19 17:38:22 -08005347bins/$(TGTDIR)/chttp2_fake_security_cancel_before_invoke_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005348
5349else
5350
ctiller09cb6d52014-12-19 17:38:22 -08005351bins/$(TGTDIR)/chttp2_fake_security_cancel_before_invoke_test: $(CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005352 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005353 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005354 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_cancel_before_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005355
nnoble69ac39f2014-12-12 15:43:38 -08005356endif
5357
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005358deps_chttp2_fake_security_cancel_before_invoke_test: $(CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_DEPS)
5359
nnoble69ac39f2014-12-12 15:43:38 -08005360ifneq ($(NO_SECURE),true)
5361ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005362-include $(CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_DEPS)
5363endif
nnoble69ac39f2014-12-12 15:43:38 -08005364endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005365
5366clean_chttp2_fake_security_cancel_before_invoke_test:
5367 $(E) "[CLEAN] Cleaning chttp2_fake_security_cancel_before_invoke_test files"
5368 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_OBJS)
5369 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005370 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_cancel_before_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005371
5372
5373CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_SRC = \
5374
ctiller09cb6d52014-12-19 17:38:22 -08005375CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_SRC))))
5376CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005377
nnoble69ac39f2014-12-12 15:43:38 -08005378ifeq ($(NO_SECURE),true)
5379
ctiller09cb6d52014-12-19 17:38:22 -08005380bins/$(TGTDIR)/chttp2_fake_security_cancel_in_a_vacuum_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005381
5382else
5383
ctiller09cb6d52014-12-19 17:38:22 -08005384bins/$(TGTDIR)/chttp2_fake_security_cancel_in_a_vacuum_test: $(CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005385 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005386 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005387 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_cancel_in_a_vacuum_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005388
nnoble69ac39f2014-12-12 15:43:38 -08005389endif
5390
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005391deps_chttp2_fake_security_cancel_in_a_vacuum_test: $(CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_DEPS)
5392
nnoble69ac39f2014-12-12 15:43:38 -08005393ifneq ($(NO_SECURE),true)
5394ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005395-include $(CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_DEPS)
5396endif
nnoble69ac39f2014-12-12 15:43:38 -08005397endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005398
5399clean_chttp2_fake_security_cancel_in_a_vacuum_test:
5400 $(E) "[CLEAN] Cleaning chttp2_fake_security_cancel_in_a_vacuum_test files"
5401 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_OBJS)
5402 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005403 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_cancel_in_a_vacuum_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005404
5405
ctillerc6d61c42014-12-15 14:52:08 -08005406CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_SRC = \
5407
ctiller09cb6d52014-12-19 17:38:22 -08005408CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_SRC))))
5409CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_SRC))))
ctillerc6d61c42014-12-15 14:52:08 -08005410
5411ifeq ($(NO_SECURE),true)
5412
ctiller09cb6d52014-12-19 17:38:22 -08005413bins/$(TGTDIR)/chttp2_fake_security_disappearing_server_test: openssl_dep_error
ctillerc6d61c42014-12-15 14:52:08 -08005414
5415else
5416
ctiller09cb6d52014-12-19 17:38:22 -08005417bins/$(TGTDIR)/chttp2_fake_security_disappearing_server_test: $(CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_disappearing_server.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctillerc6d61c42014-12-15 14:52:08 -08005418 $(E) "[LD] Linking $@"
5419 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005420 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_disappearing_server.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_disappearing_server_test
ctillerc6d61c42014-12-15 14:52:08 -08005421
5422endif
5423
5424deps_chttp2_fake_security_disappearing_server_test: $(CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_DEPS)
5425
5426ifneq ($(NO_SECURE),true)
5427ifneq ($(NO_DEPS),true)
5428-include $(CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_DEPS)
5429endif
5430endif
5431
5432clean_chttp2_fake_security_disappearing_server_test:
5433 $(E) "[CLEAN] Cleaning chttp2_fake_security_disappearing_server_test files"
5434 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_OBJS)
5435 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005436 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_disappearing_server_test
ctillerc6d61c42014-12-15 14:52:08 -08005437
5438
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005439CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC = \
5440
ctiller09cb6d52014-12-19 17:38:22 -08005441CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC))))
5442CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005443
nnoble69ac39f2014-12-12 15:43:38 -08005444ifeq ($(NO_SECURE),true)
5445
ctiller09cb6d52014-12-19 17:38:22 -08005446bins/$(TGTDIR)/chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005447
5448else
5449
ctiller09cb6d52014-12-19 17:38:22 -08005450bins/$(TGTDIR)/chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005451 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005452 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005453 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005454
nnoble69ac39f2014-12-12 15:43:38 -08005455endif
5456
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005457deps_chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
5458
nnoble69ac39f2014-12-12 15:43:38 -08005459ifneq ($(NO_SECURE),true)
5460ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005461-include $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
5462endif
nnoble69ac39f2014-12-12 15:43:38 -08005463endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005464
5465clean_chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test:
5466 $(E) "[CLEAN] Cleaning chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test files"
5467 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS)
5468 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005469 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005470
5471
5472CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC = \
5473
ctiller09cb6d52014-12-19 17:38:22 -08005474CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC))))
5475CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005476
nnoble69ac39f2014-12-12 15:43:38 -08005477ifeq ($(NO_SECURE),true)
5478
ctiller09cb6d52014-12-19 17:38:22 -08005479bins/$(TGTDIR)/chttp2_fake_security_early_server_shutdown_finishes_tags_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005480
5481else
5482
ctiller09cb6d52014-12-19 17:38:22 -08005483bins/$(TGTDIR)/chttp2_fake_security_early_server_shutdown_finishes_tags_test: $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005484 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005485 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005486 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_early_server_shutdown_finishes_tags_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005487
nnoble69ac39f2014-12-12 15:43:38 -08005488endif
5489
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005490deps_chttp2_fake_security_early_server_shutdown_finishes_tags_test: $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
5491
nnoble69ac39f2014-12-12 15:43:38 -08005492ifneq ($(NO_SECURE),true)
5493ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005494-include $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
5495endif
nnoble69ac39f2014-12-12 15:43:38 -08005496endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005497
5498clean_chttp2_fake_security_early_server_shutdown_finishes_tags_test:
5499 $(E) "[CLEAN] Cleaning chttp2_fake_security_early_server_shutdown_finishes_tags_test files"
5500 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS)
5501 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005502 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_early_server_shutdown_finishes_tags_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005503
5504
5505CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_SRC = \
5506
ctiller09cb6d52014-12-19 17:38:22 -08005507CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_SRC))))
5508CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005509
nnoble69ac39f2014-12-12 15:43:38 -08005510ifeq ($(NO_SECURE),true)
5511
ctiller09cb6d52014-12-19 17:38:22 -08005512bins/$(TGTDIR)/chttp2_fake_security_invoke_large_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005513
5514else
5515
ctiller09cb6d52014-12-19 17:38:22 -08005516bins/$(TGTDIR)/chttp2_fake_security_invoke_large_request_test: $(CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_invoke_large_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005517 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005518 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005519 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_invoke_large_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_invoke_large_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005520
nnoble69ac39f2014-12-12 15:43:38 -08005521endif
5522
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005523deps_chttp2_fake_security_invoke_large_request_test: $(CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_DEPS)
5524
nnoble69ac39f2014-12-12 15:43:38 -08005525ifneq ($(NO_SECURE),true)
5526ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005527-include $(CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_DEPS)
5528endif
nnoble69ac39f2014-12-12 15:43:38 -08005529endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005530
5531clean_chttp2_fake_security_invoke_large_request_test:
5532 $(E) "[CLEAN] Cleaning chttp2_fake_security_invoke_large_request_test files"
5533 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_OBJS)
5534 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005535 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_invoke_large_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005536
5537
5538CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_SRC = \
5539
ctiller09cb6d52014-12-19 17:38:22 -08005540CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_SRC))))
5541CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005542
nnoble69ac39f2014-12-12 15:43:38 -08005543ifeq ($(NO_SECURE),true)
5544
ctiller09cb6d52014-12-19 17:38:22 -08005545bins/$(TGTDIR)/chttp2_fake_security_max_concurrent_streams_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005546
5547else
5548
ctiller09cb6d52014-12-19 17:38:22 -08005549bins/$(TGTDIR)/chttp2_fake_security_max_concurrent_streams_test: $(CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005550 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005551 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005552 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_max_concurrent_streams_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005553
nnoble69ac39f2014-12-12 15:43:38 -08005554endif
5555
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005556deps_chttp2_fake_security_max_concurrent_streams_test: $(CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_DEPS)
5557
nnoble69ac39f2014-12-12 15:43:38 -08005558ifneq ($(NO_SECURE),true)
5559ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005560-include $(CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_DEPS)
5561endif
nnoble69ac39f2014-12-12 15:43:38 -08005562endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005563
5564clean_chttp2_fake_security_max_concurrent_streams_test:
5565 $(E) "[CLEAN] Cleaning chttp2_fake_security_max_concurrent_streams_test files"
5566 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_OBJS)
5567 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005568 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_max_concurrent_streams_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005569
5570
5571CHTTP2_FAKE_SECURITY_NO_OP_TEST_SRC = \
5572
ctiller09cb6d52014-12-19 17:38:22 -08005573CHTTP2_FAKE_SECURITY_NO_OP_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_NO_OP_TEST_SRC))))
5574CHTTP2_FAKE_SECURITY_NO_OP_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_NO_OP_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005575
nnoble69ac39f2014-12-12 15:43:38 -08005576ifeq ($(NO_SECURE),true)
5577
ctiller09cb6d52014-12-19 17:38:22 -08005578bins/$(TGTDIR)/chttp2_fake_security_no_op_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005579
5580else
5581
ctiller09cb6d52014-12-19 17:38:22 -08005582bins/$(TGTDIR)/chttp2_fake_security_no_op_test: $(CHTTP2_FAKE_SECURITY_NO_OP_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_no_op.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005583 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005584 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005585 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_NO_OP_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_no_op.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_no_op_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005586
nnoble69ac39f2014-12-12 15:43:38 -08005587endif
5588
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005589deps_chttp2_fake_security_no_op_test: $(CHTTP2_FAKE_SECURITY_NO_OP_TEST_DEPS)
5590
nnoble69ac39f2014-12-12 15:43:38 -08005591ifneq ($(NO_SECURE),true)
5592ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005593-include $(CHTTP2_FAKE_SECURITY_NO_OP_TEST_DEPS)
5594endif
nnoble69ac39f2014-12-12 15:43:38 -08005595endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005596
5597clean_chttp2_fake_security_no_op_test:
5598 $(E) "[CLEAN] Cleaning chttp2_fake_security_no_op_test files"
5599 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_NO_OP_TEST_OBJS)
5600 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_NO_OP_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005601 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_no_op_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005602
5603
5604CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_SRC = \
5605
ctiller09cb6d52014-12-19 17:38:22 -08005606CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_SRC))))
5607CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005608
nnoble69ac39f2014-12-12 15:43:38 -08005609ifeq ($(NO_SECURE),true)
5610
ctiller09cb6d52014-12-19 17:38:22 -08005611bins/$(TGTDIR)/chttp2_fake_security_ping_pong_streaming_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005612
5613else
5614
ctiller09cb6d52014-12-19 17:38:22 -08005615bins/$(TGTDIR)/chttp2_fake_security_ping_pong_streaming_test: $(CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005616 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005617 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005618 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_ping_pong_streaming_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005619
nnoble69ac39f2014-12-12 15:43:38 -08005620endif
5621
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005622deps_chttp2_fake_security_ping_pong_streaming_test: $(CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_DEPS)
5623
nnoble69ac39f2014-12-12 15:43:38 -08005624ifneq ($(NO_SECURE),true)
5625ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005626-include $(CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_DEPS)
5627endif
nnoble69ac39f2014-12-12 15:43:38 -08005628endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005629
5630clean_chttp2_fake_security_ping_pong_streaming_test:
5631 $(E) "[CLEAN] Cleaning chttp2_fake_security_ping_pong_streaming_test files"
5632 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_OBJS)
5633 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005634 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_ping_pong_streaming_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005635
5636
ctiller33023c42014-12-12 16:28:33 -08005637CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC = \
5638
ctiller09cb6d52014-12-19 17:38:22 -08005639CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC))))
5640CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC))))
ctiller33023c42014-12-12 16:28:33 -08005641
5642ifeq ($(NO_SECURE),true)
5643
ctiller09cb6d52014-12-19 17:38:22 -08005644bins/$(TGTDIR)/chttp2_fake_security_request_response_with_binary_metadata_and_payload_test: openssl_dep_error
ctiller33023c42014-12-12 16:28:33 -08005645
5646else
5647
ctiller09cb6d52014-12-19 17:38:22 -08005648bins/$(TGTDIR)/chttp2_fake_security_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller33023c42014-12-12 16:28:33 -08005649 $(E) "[LD] Linking $@"
5650 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005651 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_request_response_with_binary_metadata_and_payload_test
ctiller33023c42014-12-12 16:28:33 -08005652
5653endif
5654
5655deps_chttp2_fake_security_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
5656
5657ifneq ($(NO_SECURE),true)
5658ifneq ($(NO_DEPS),true)
5659-include $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
5660endif
5661endif
5662
5663clean_chttp2_fake_security_request_response_with_binary_metadata_and_payload_test:
5664 $(E) "[CLEAN] Cleaning chttp2_fake_security_request_response_with_binary_metadata_and_payload_test files"
5665 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS)
5666 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005667 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_request_response_with_binary_metadata_and_payload_test
ctiller33023c42014-12-12 16:28:33 -08005668
5669
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005670CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC = \
5671
ctiller09cb6d52014-12-19 17:38:22 -08005672CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC))))
5673CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005674
nnoble69ac39f2014-12-12 15:43:38 -08005675ifeq ($(NO_SECURE),true)
5676
ctiller09cb6d52014-12-19 17:38:22 -08005677bins/$(TGTDIR)/chttp2_fake_security_request_response_with_metadata_and_payload_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005678
5679else
5680
ctiller09cb6d52014-12-19 17:38:22 -08005681bins/$(TGTDIR)/chttp2_fake_security_request_response_with_metadata_and_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005682 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005683 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005684 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_request_response_with_metadata_and_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005685
nnoble69ac39f2014-12-12 15:43:38 -08005686endif
5687
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005688deps_chttp2_fake_security_request_response_with_metadata_and_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
5689
nnoble69ac39f2014-12-12 15:43:38 -08005690ifneq ($(NO_SECURE),true)
5691ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005692-include $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
5693endif
nnoble69ac39f2014-12-12 15:43:38 -08005694endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005695
5696clean_chttp2_fake_security_request_response_with_metadata_and_payload_test:
5697 $(E) "[CLEAN] Cleaning chttp2_fake_security_request_response_with_metadata_and_payload_test files"
5698 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS)
5699 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005700 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_request_response_with_metadata_and_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005701
5702
5703CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC = \
5704
ctiller09cb6d52014-12-19 17:38:22 -08005705CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC))))
5706CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005707
nnoble69ac39f2014-12-12 15:43:38 -08005708ifeq ($(NO_SECURE),true)
5709
ctiller09cb6d52014-12-19 17:38:22 -08005710bins/$(TGTDIR)/chttp2_fake_security_request_response_with_payload_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005711
5712else
5713
ctiller09cb6d52014-12-19 17:38:22 -08005714bins/$(TGTDIR)/chttp2_fake_security_request_response_with_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005715 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005716 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005717 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_request_response_with_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005718
nnoble69ac39f2014-12-12 15:43:38 -08005719endif
5720
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005721deps_chttp2_fake_security_request_response_with_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
5722
nnoble69ac39f2014-12-12 15:43:38 -08005723ifneq ($(NO_SECURE),true)
5724ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005725-include $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
5726endif
nnoble69ac39f2014-12-12 15:43:38 -08005727endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005728
5729clean_chttp2_fake_security_request_response_with_payload_test:
5730 $(E) "[CLEAN] Cleaning chttp2_fake_security_request_response_with_payload_test files"
5731 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS)
5732 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005733 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_request_response_with_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005734
5735
ctiller2845cad2014-12-15 15:14:12 -08005736CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC = \
5737
ctiller09cb6d52014-12-19 17:38:22 -08005738CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC))))
5739CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC))))
ctiller2845cad2014-12-15 15:14:12 -08005740
5741ifeq ($(NO_SECURE),true)
5742
ctiller09cb6d52014-12-19 17:38:22 -08005743bins/$(TGTDIR)/chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test: openssl_dep_error
ctiller2845cad2014-12-15 15:14:12 -08005744
5745else
5746
ctiller09cb6d52014-12-19 17:38:22 -08005747bins/$(TGTDIR)/chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller2845cad2014-12-15 15:14:12 -08005748 $(E) "[LD] Linking $@"
5749 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005750 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test
ctiller2845cad2014-12-15 15:14:12 -08005751
5752endif
5753
5754deps_chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
5755
5756ifneq ($(NO_SECURE),true)
5757ifneq ($(NO_DEPS),true)
5758-include $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
5759endif
5760endif
5761
5762clean_chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test:
5763 $(E) "[CLEAN] Cleaning chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test files"
5764 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS)
5765 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005766 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test
ctiller2845cad2014-12-15 15:14:12 -08005767
5768
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005769CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_SRC = \
5770
ctiller09cb6d52014-12-19 17:38:22 -08005771CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_SRC))))
5772CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005773
nnoble69ac39f2014-12-12 15:43:38 -08005774ifeq ($(NO_SECURE),true)
5775
ctiller09cb6d52014-12-19 17:38:22 -08005776bins/$(TGTDIR)/chttp2_fake_security_simple_delayed_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005777
5778else
5779
ctiller09cb6d52014-12-19 17:38:22 -08005780bins/$(TGTDIR)/chttp2_fake_security_simple_delayed_request_test: $(CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005781 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005782 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005783 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_simple_delayed_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005784
nnoble69ac39f2014-12-12 15:43:38 -08005785endif
5786
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005787deps_chttp2_fake_security_simple_delayed_request_test: $(CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
5788
nnoble69ac39f2014-12-12 15:43:38 -08005789ifneq ($(NO_SECURE),true)
5790ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005791-include $(CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
5792endif
nnoble69ac39f2014-12-12 15:43:38 -08005793endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005794
5795clean_chttp2_fake_security_simple_delayed_request_test:
5796 $(E) "[CLEAN] Cleaning chttp2_fake_security_simple_delayed_request_test files"
5797 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_OBJS)
5798 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005799 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_simple_delayed_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005800
5801
5802CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_SRC = \
5803
ctiller09cb6d52014-12-19 17:38:22 -08005804CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_SRC))))
5805CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005806
nnoble69ac39f2014-12-12 15:43:38 -08005807ifeq ($(NO_SECURE),true)
5808
ctiller09cb6d52014-12-19 17:38:22 -08005809bins/$(TGTDIR)/chttp2_fake_security_simple_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005810
5811else
5812
ctiller09cb6d52014-12-19 17:38:22 -08005813bins/$(TGTDIR)/chttp2_fake_security_simple_request_test: $(CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_simple_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005814 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005815 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005816 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_simple_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_simple_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005817
nnoble69ac39f2014-12-12 15:43:38 -08005818endif
5819
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005820deps_chttp2_fake_security_simple_request_test: $(CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_DEPS)
5821
nnoble69ac39f2014-12-12 15:43:38 -08005822ifneq ($(NO_SECURE),true)
5823ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005824-include $(CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_DEPS)
5825endif
nnoble69ac39f2014-12-12 15:43:38 -08005826endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005827
5828clean_chttp2_fake_security_simple_request_test:
5829 $(E) "[CLEAN] Cleaning chttp2_fake_security_simple_request_test files"
5830 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_OBJS)
5831 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005832 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_simple_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005833
5834
nathaniel52878172014-12-09 10:17:19 -08005835CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_SRC = \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005836
ctiller09cb6d52014-12-19 17:38:22 -08005837CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_SRC))))
5838CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005839
nnoble69ac39f2014-12-12 15:43:38 -08005840ifeq ($(NO_SECURE),true)
5841
ctiller09cb6d52014-12-19 17:38:22 -08005842bins/$(TGTDIR)/chttp2_fake_security_thread_stress_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005843
5844else
5845
ctiller09cb6d52014-12-19 17:38:22 -08005846bins/$(TGTDIR)/chttp2_fake_security_thread_stress_test: $(CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_thread_stress.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005847 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005848 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005849 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_thread_stress.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_thread_stress_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005850
nnoble69ac39f2014-12-12 15:43:38 -08005851endif
5852
nathaniel52878172014-12-09 10:17:19 -08005853deps_chttp2_fake_security_thread_stress_test: $(CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005854
nnoble69ac39f2014-12-12 15:43:38 -08005855ifneq ($(NO_SECURE),true)
5856ifneq ($(NO_DEPS),true)
nathaniel52878172014-12-09 10:17:19 -08005857-include $(CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005858endif
nnoble69ac39f2014-12-12 15:43:38 -08005859endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005860
nathaniel52878172014-12-09 10:17:19 -08005861clean_chttp2_fake_security_thread_stress_test:
5862 $(E) "[CLEAN] Cleaning chttp2_fake_security_thread_stress_test files"
5863 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_OBJS)
5864 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005865 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_thread_stress_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005866
5867
5868CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC = \
5869
ctiller09cb6d52014-12-19 17:38:22 -08005870CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC))))
5871CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005872
nnoble69ac39f2014-12-12 15:43:38 -08005873ifeq ($(NO_SECURE),true)
5874
ctiller09cb6d52014-12-19 17:38:22 -08005875bins/$(TGTDIR)/chttp2_fake_security_writes_done_hangs_with_pending_read_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005876
5877else
5878
ctiller09cb6d52014-12-19 17:38:22 -08005879bins/$(TGTDIR)/chttp2_fake_security_writes_done_hangs_with_pending_read_test: $(CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005880 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005881 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005882 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fake_security.a libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fake_security_writes_done_hangs_with_pending_read_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005883
nnoble69ac39f2014-12-12 15:43:38 -08005884endif
5885
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005886deps_chttp2_fake_security_writes_done_hangs_with_pending_read_test: $(CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
5887
nnoble69ac39f2014-12-12 15:43:38 -08005888ifneq ($(NO_SECURE),true)
5889ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005890-include $(CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
5891endif
nnoble69ac39f2014-12-12 15:43:38 -08005892endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005893
5894clean_chttp2_fake_security_writes_done_hangs_with_pending_read_test:
5895 $(E) "[CLEAN] Cleaning chttp2_fake_security_writes_done_hangs_with_pending_read_test files"
5896 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS)
5897 $(Q) $(RM) $(CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005898 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fake_security_writes_done_hangs_with_pending_read_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005899
5900
5901CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_SRC = \
5902
ctiller09cb6d52014-12-19 17:38:22 -08005903CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_SRC))))
5904CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005905
nnoble69ac39f2014-12-12 15:43:38 -08005906ifeq ($(NO_SECURE),true)
5907
ctiller09cb6d52014-12-19 17:38:22 -08005908bins/$(TGTDIR)/chttp2_fullstack_cancel_after_accept_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005909
5910else
5911
ctiller09cb6d52014-12-19 17:38:22 -08005912bins/$(TGTDIR)/chttp2_fullstack_cancel_after_accept_test: $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005913 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005914 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005915 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_cancel_after_accept_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005916
nnoble69ac39f2014-12-12 15:43:38 -08005917endif
5918
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005919deps_chttp2_fullstack_cancel_after_accept_test: $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_DEPS)
5920
nnoble69ac39f2014-12-12 15:43:38 -08005921ifneq ($(NO_SECURE),true)
5922ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005923-include $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_DEPS)
5924endif
nnoble69ac39f2014-12-12 15:43:38 -08005925endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005926
5927clean_chttp2_fullstack_cancel_after_accept_test:
5928 $(E) "[CLEAN] Cleaning chttp2_fullstack_cancel_after_accept_test files"
5929 $(Q) $(RM) $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS)
5930 $(Q) $(RM) $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005931 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_cancel_after_accept_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005932
5933
5934CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC = \
5935
ctiller09cb6d52014-12-19 17:38:22 -08005936CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC))))
5937CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005938
nnoble69ac39f2014-12-12 15:43:38 -08005939ifeq ($(NO_SECURE),true)
5940
ctiller09cb6d52014-12-19 17:38:22 -08005941bins/$(TGTDIR)/chttp2_fullstack_cancel_after_accept_and_writes_closed_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005942
5943else
5944
ctiller09cb6d52014-12-19 17:38:22 -08005945bins/$(TGTDIR)/chttp2_fullstack_cancel_after_accept_and_writes_closed_test: $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005946 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005947 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005948 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_cancel_after_accept_and_writes_closed_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005949
nnoble69ac39f2014-12-12 15:43:38 -08005950endif
5951
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005952deps_chttp2_fullstack_cancel_after_accept_and_writes_closed_test: $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
5953
nnoble69ac39f2014-12-12 15:43:38 -08005954ifneq ($(NO_SECURE),true)
5955ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005956-include $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
5957endif
nnoble69ac39f2014-12-12 15:43:38 -08005958endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005959
5960clean_chttp2_fullstack_cancel_after_accept_and_writes_closed_test:
5961 $(E) "[CLEAN] Cleaning chttp2_fullstack_cancel_after_accept_and_writes_closed_test files"
5962 $(Q) $(RM) $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS)
5963 $(Q) $(RM) $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005964 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_cancel_after_accept_and_writes_closed_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005965
5966
5967CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_SRC = \
5968
ctiller09cb6d52014-12-19 17:38:22 -08005969CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_SRC))))
5970CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005971
nnoble69ac39f2014-12-12 15:43:38 -08005972ifeq ($(NO_SECURE),true)
5973
ctiller09cb6d52014-12-19 17:38:22 -08005974bins/$(TGTDIR)/chttp2_fullstack_cancel_after_invoke_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08005975
5976else
5977
ctiller09cb6d52014-12-19 17:38:22 -08005978bins/$(TGTDIR)/chttp2_fullstack_cancel_after_invoke_test: $(CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005979 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08005980 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08005981 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_cancel_after_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005982
nnoble69ac39f2014-12-12 15:43:38 -08005983endif
5984
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005985deps_chttp2_fullstack_cancel_after_invoke_test: $(CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_DEPS)
5986
nnoble69ac39f2014-12-12 15:43:38 -08005987ifneq ($(NO_SECURE),true)
5988ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005989-include $(CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_DEPS)
5990endif
nnoble69ac39f2014-12-12 15:43:38 -08005991endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005992
5993clean_chttp2_fullstack_cancel_after_invoke_test:
5994 $(E) "[CLEAN] Cleaning chttp2_fullstack_cancel_after_invoke_test files"
5995 $(Q) $(RM) $(CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS)
5996 $(Q) $(RM) $(CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08005997 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_cancel_after_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08005998
5999
6000CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_SRC = \
6001
ctiller09cb6d52014-12-19 17:38:22 -08006002CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_SRC))))
6003CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006004
nnoble69ac39f2014-12-12 15:43:38 -08006005ifeq ($(NO_SECURE),true)
6006
ctiller09cb6d52014-12-19 17:38:22 -08006007bins/$(TGTDIR)/chttp2_fullstack_cancel_before_invoke_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006008
6009else
6010
ctiller09cb6d52014-12-19 17:38:22 -08006011bins/$(TGTDIR)/chttp2_fullstack_cancel_before_invoke_test: $(CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006012 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006013 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006014 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_cancel_before_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006015
nnoble69ac39f2014-12-12 15:43:38 -08006016endif
6017
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006018deps_chttp2_fullstack_cancel_before_invoke_test: $(CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_DEPS)
6019
nnoble69ac39f2014-12-12 15:43:38 -08006020ifneq ($(NO_SECURE),true)
6021ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006022-include $(CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_DEPS)
6023endif
nnoble69ac39f2014-12-12 15:43:38 -08006024endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006025
6026clean_chttp2_fullstack_cancel_before_invoke_test:
6027 $(E) "[CLEAN] Cleaning chttp2_fullstack_cancel_before_invoke_test files"
6028 $(Q) $(RM) $(CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS)
6029 $(Q) $(RM) $(CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006030 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_cancel_before_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006031
6032
6033CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_SRC = \
6034
ctiller09cb6d52014-12-19 17:38:22 -08006035CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_SRC))))
6036CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006037
nnoble69ac39f2014-12-12 15:43:38 -08006038ifeq ($(NO_SECURE),true)
6039
ctiller09cb6d52014-12-19 17:38:22 -08006040bins/$(TGTDIR)/chttp2_fullstack_cancel_in_a_vacuum_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006041
6042else
6043
ctiller09cb6d52014-12-19 17:38:22 -08006044bins/$(TGTDIR)/chttp2_fullstack_cancel_in_a_vacuum_test: $(CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006045 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006046 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006047 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_cancel_in_a_vacuum_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006048
nnoble69ac39f2014-12-12 15:43:38 -08006049endif
6050
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006051deps_chttp2_fullstack_cancel_in_a_vacuum_test: $(CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_DEPS)
6052
nnoble69ac39f2014-12-12 15:43:38 -08006053ifneq ($(NO_SECURE),true)
6054ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006055-include $(CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_DEPS)
6056endif
nnoble69ac39f2014-12-12 15:43:38 -08006057endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006058
6059clean_chttp2_fullstack_cancel_in_a_vacuum_test:
6060 $(E) "[CLEAN] Cleaning chttp2_fullstack_cancel_in_a_vacuum_test files"
6061 $(Q) $(RM) $(CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS)
6062 $(Q) $(RM) $(CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006063 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_cancel_in_a_vacuum_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006064
6065
ctillerc6d61c42014-12-15 14:52:08 -08006066CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_SRC = \
6067
ctiller09cb6d52014-12-19 17:38:22 -08006068CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_SRC))))
6069CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_SRC))))
ctillerc6d61c42014-12-15 14:52:08 -08006070
6071ifeq ($(NO_SECURE),true)
6072
ctiller09cb6d52014-12-19 17:38:22 -08006073bins/$(TGTDIR)/chttp2_fullstack_disappearing_server_test: openssl_dep_error
ctillerc6d61c42014-12-15 14:52:08 -08006074
6075else
6076
ctiller09cb6d52014-12-19 17:38:22 -08006077bins/$(TGTDIR)/chttp2_fullstack_disappearing_server_test: $(CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_disappearing_server.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctillerc6d61c42014-12-15 14:52:08 -08006078 $(E) "[LD] Linking $@"
6079 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006080 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_disappearing_server.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_disappearing_server_test
ctillerc6d61c42014-12-15 14:52:08 -08006081
6082endif
6083
6084deps_chttp2_fullstack_disappearing_server_test: $(CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_DEPS)
6085
6086ifneq ($(NO_SECURE),true)
6087ifneq ($(NO_DEPS),true)
6088-include $(CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_DEPS)
6089endif
6090endif
6091
6092clean_chttp2_fullstack_disappearing_server_test:
6093 $(E) "[CLEAN] Cleaning chttp2_fullstack_disappearing_server_test files"
6094 $(Q) $(RM) $(CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS)
6095 $(Q) $(RM) $(CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006096 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_disappearing_server_test
ctillerc6d61c42014-12-15 14:52:08 -08006097
6098
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006099CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC = \
6100
ctiller09cb6d52014-12-19 17:38:22 -08006101CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC))))
6102CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006103
nnoble69ac39f2014-12-12 15:43:38 -08006104ifeq ($(NO_SECURE),true)
6105
ctiller09cb6d52014-12-19 17:38:22 -08006106bins/$(TGTDIR)/chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006107
6108else
6109
ctiller09cb6d52014-12-19 17:38:22 -08006110bins/$(TGTDIR)/chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006111 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006112 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006113 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006114
nnoble69ac39f2014-12-12 15:43:38 -08006115endif
6116
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006117deps_chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
6118
nnoble69ac39f2014-12-12 15:43:38 -08006119ifneq ($(NO_SECURE),true)
6120ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006121-include $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
6122endif
nnoble69ac39f2014-12-12 15:43:38 -08006123endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006124
6125clean_chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test:
6126 $(E) "[CLEAN] Cleaning chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test files"
6127 $(Q) $(RM) $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS)
6128 $(Q) $(RM) $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006129 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006130
6131
6132CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC = \
6133
ctiller09cb6d52014-12-19 17:38:22 -08006134CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC))))
6135CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006136
nnoble69ac39f2014-12-12 15:43:38 -08006137ifeq ($(NO_SECURE),true)
6138
ctiller09cb6d52014-12-19 17:38:22 -08006139bins/$(TGTDIR)/chttp2_fullstack_early_server_shutdown_finishes_tags_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006140
6141else
6142
ctiller09cb6d52014-12-19 17:38:22 -08006143bins/$(TGTDIR)/chttp2_fullstack_early_server_shutdown_finishes_tags_test: $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006144 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006145 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006146 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_early_server_shutdown_finishes_tags_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006147
nnoble69ac39f2014-12-12 15:43:38 -08006148endif
6149
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006150deps_chttp2_fullstack_early_server_shutdown_finishes_tags_test: $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
6151
nnoble69ac39f2014-12-12 15:43:38 -08006152ifneq ($(NO_SECURE),true)
6153ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006154-include $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
6155endif
nnoble69ac39f2014-12-12 15:43:38 -08006156endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006157
6158clean_chttp2_fullstack_early_server_shutdown_finishes_tags_test:
6159 $(E) "[CLEAN] Cleaning chttp2_fullstack_early_server_shutdown_finishes_tags_test files"
6160 $(Q) $(RM) $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS)
6161 $(Q) $(RM) $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006162 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_early_server_shutdown_finishes_tags_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006163
6164
6165CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_SRC = \
6166
ctiller09cb6d52014-12-19 17:38:22 -08006167CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_SRC))))
6168CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006169
nnoble69ac39f2014-12-12 15:43:38 -08006170ifeq ($(NO_SECURE),true)
6171
ctiller09cb6d52014-12-19 17:38:22 -08006172bins/$(TGTDIR)/chttp2_fullstack_invoke_large_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006173
6174else
6175
ctiller09cb6d52014-12-19 17:38:22 -08006176bins/$(TGTDIR)/chttp2_fullstack_invoke_large_request_test: $(CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_invoke_large_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006177 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006178 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006179 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_invoke_large_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_invoke_large_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006180
nnoble69ac39f2014-12-12 15:43:38 -08006181endif
6182
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006183deps_chttp2_fullstack_invoke_large_request_test: $(CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_DEPS)
6184
nnoble69ac39f2014-12-12 15:43:38 -08006185ifneq ($(NO_SECURE),true)
6186ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006187-include $(CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_DEPS)
6188endif
nnoble69ac39f2014-12-12 15:43:38 -08006189endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006190
6191clean_chttp2_fullstack_invoke_large_request_test:
6192 $(E) "[CLEAN] Cleaning chttp2_fullstack_invoke_large_request_test files"
6193 $(Q) $(RM) $(CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS)
6194 $(Q) $(RM) $(CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006195 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_invoke_large_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006196
6197
6198CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_SRC = \
6199
ctiller09cb6d52014-12-19 17:38:22 -08006200CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_SRC))))
6201CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006202
nnoble69ac39f2014-12-12 15:43:38 -08006203ifeq ($(NO_SECURE),true)
6204
ctiller09cb6d52014-12-19 17:38:22 -08006205bins/$(TGTDIR)/chttp2_fullstack_max_concurrent_streams_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006206
6207else
6208
ctiller09cb6d52014-12-19 17:38:22 -08006209bins/$(TGTDIR)/chttp2_fullstack_max_concurrent_streams_test: $(CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006210 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006211 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006212 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_max_concurrent_streams_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006213
nnoble69ac39f2014-12-12 15:43:38 -08006214endif
6215
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006216deps_chttp2_fullstack_max_concurrent_streams_test: $(CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_DEPS)
6217
nnoble69ac39f2014-12-12 15:43:38 -08006218ifneq ($(NO_SECURE),true)
6219ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006220-include $(CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_DEPS)
6221endif
nnoble69ac39f2014-12-12 15:43:38 -08006222endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006223
6224clean_chttp2_fullstack_max_concurrent_streams_test:
6225 $(E) "[CLEAN] Cleaning chttp2_fullstack_max_concurrent_streams_test files"
6226 $(Q) $(RM) $(CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS)
6227 $(Q) $(RM) $(CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006228 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_max_concurrent_streams_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006229
6230
6231CHTTP2_FULLSTACK_NO_OP_TEST_SRC = \
6232
ctiller09cb6d52014-12-19 17:38:22 -08006233CHTTP2_FULLSTACK_NO_OP_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_NO_OP_TEST_SRC))))
6234CHTTP2_FULLSTACK_NO_OP_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_NO_OP_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006235
nnoble69ac39f2014-12-12 15:43:38 -08006236ifeq ($(NO_SECURE),true)
6237
ctiller09cb6d52014-12-19 17:38:22 -08006238bins/$(TGTDIR)/chttp2_fullstack_no_op_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006239
6240else
6241
ctiller09cb6d52014-12-19 17:38:22 -08006242bins/$(TGTDIR)/chttp2_fullstack_no_op_test: $(CHTTP2_FULLSTACK_NO_OP_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_no_op.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006243 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006244 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006245 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_NO_OP_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_no_op.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_no_op_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006246
nnoble69ac39f2014-12-12 15:43:38 -08006247endif
6248
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006249deps_chttp2_fullstack_no_op_test: $(CHTTP2_FULLSTACK_NO_OP_TEST_DEPS)
6250
nnoble69ac39f2014-12-12 15:43:38 -08006251ifneq ($(NO_SECURE),true)
6252ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006253-include $(CHTTP2_FULLSTACK_NO_OP_TEST_DEPS)
6254endif
nnoble69ac39f2014-12-12 15:43:38 -08006255endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006256
6257clean_chttp2_fullstack_no_op_test:
6258 $(E) "[CLEAN] Cleaning chttp2_fullstack_no_op_test files"
6259 $(Q) $(RM) $(CHTTP2_FULLSTACK_NO_OP_TEST_OBJS)
6260 $(Q) $(RM) $(CHTTP2_FULLSTACK_NO_OP_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006261 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_no_op_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006262
6263
6264CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_SRC = \
6265
ctiller09cb6d52014-12-19 17:38:22 -08006266CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_SRC))))
6267CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006268
nnoble69ac39f2014-12-12 15:43:38 -08006269ifeq ($(NO_SECURE),true)
6270
ctiller09cb6d52014-12-19 17:38:22 -08006271bins/$(TGTDIR)/chttp2_fullstack_ping_pong_streaming_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006272
6273else
6274
ctiller09cb6d52014-12-19 17:38:22 -08006275bins/$(TGTDIR)/chttp2_fullstack_ping_pong_streaming_test: $(CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006276 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006277 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006278 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_ping_pong_streaming_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006279
nnoble69ac39f2014-12-12 15:43:38 -08006280endif
6281
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006282deps_chttp2_fullstack_ping_pong_streaming_test: $(CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_DEPS)
6283
nnoble69ac39f2014-12-12 15:43:38 -08006284ifneq ($(NO_SECURE),true)
6285ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006286-include $(CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_DEPS)
6287endif
nnoble69ac39f2014-12-12 15:43:38 -08006288endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006289
6290clean_chttp2_fullstack_ping_pong_streaming_test:
6291 $(E) "[CLEAN] Cleaning chttp2_fullstack_ping_pong_streaming_test files"
6292 $(Q) $(RM) $(CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS)
6293 $(Q) $(RM) $(CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006294 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_ping_pong_streaming_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006295
6296
ctiller33023c42014-12-12 16:28:33 -08006297CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC = \
6298
ctiller09cb6d52014-12-19 17:38:22 -08006299CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC))))
6300CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC))))
ctiller33023c42014-12-12 16:28:33 -08006301
6302ifeq ($(NO_SECURE),true)
6303
ctiller09cb6d52014-12-19 17:38:22 -08006304bins/$(TGTDIR)/chttp2_fullstack_request_response_with_binary_metadata_and_payload_test: openssl_dep_error
ctiller33023c42014-12-12 16:28:33 -08006305
6306else
6307
ctiller09cb6d52014-12-19 17:38:22 -08006308bins/$(TGTDIR)/chttp2_fullstack_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller33023c42014-12-12 16:28:33 -08006309 $(E) "[LD] Linking $@"
6310 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006311 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_request_response_with_binary_metadata_and_payload_test
ctiller33023c42014-12-12 16:28:33 -08006312
6313endif
6314
6315deps_chttp2_fullstack_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
6316
6317ifneq ($(NO_SECURE),true)
6318ifneq ($(NO_DEPS),true)
6319-include $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
6320endif
6321endif
6322
6323clean_chttp2_fullstack_request_response_with_binary_metadata_and_payload_test:
6324 $(E) "[CLEAN] Cleaning chttp2_fullstack_request_response_with_binary_metadata_and_payload_test files"
6325 $(Q) $(RM) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS)
6326 $(Q) $(RM) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006327 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_request_response_with_binary_metadata_and_payload_test
ctiller33023c42014-12-12 16:28:33 -08006328
6329
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006330CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC = \
6331
ctiller09cb6d52014-12-19 17:38:22 -08006332CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC))))
6333CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006334
nnoble69ac39f2014-12-12 15:43:38 -08006335ifeq ($(NO_SECURE),true)
6336
ctiller09cb6d52014-12-19 17:38:22 -08006337bins/$(TGTDIR)/chttp2_fullstack_request_response_with_metadata_and_payload_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006338
6339else
6340
ctiller09cb6d52014-12-19 17:38:22 -08006341bins/$(TGTDIR)/chttp2_fullstack_request_response_with_metadata_and_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006342 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006343 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006344 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_request_response_with_metadata_and_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006345
nnoble69ac39f2014-12-12 15:43:38 -08006346endif
6347
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006348deps_chttp2_fullstack_request_response_with_metadata_and_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
6349
nnoble69ac39f2014-12-12 15:43:38 -08006350ifneq ($(NO_SECURE),true)
6351ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006352-include $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
6353endif
nnoble69ac39f2014-12-12 15:43:38 -08006354endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006355
6356clean_chttp2_fullstack_request_response_with_metadata_and_payload_test:
6357 $(E) "[CLEAN] Cleaning chttp2_fullstack_request_response_with_metadata_and_payload_test files"
6358 $(Q) $(RM) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS)
6359 $(Q) $(RM) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006360 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_request_response_with_metadata_and_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006361
6362
6363CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC = \
6364
ctiller09cb6d52014-12-19 17:38:22 -08006365CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC))))
6366CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006367
nnoble69ac39f2014-12-12 15:43:38 -08006368ifeq ($(NO_SECURE),true)
6369
ctiller09cb6d52014-12-19 17:38:22 -08006370bins/$(TGTDIR)/chttp2_fullstack_request_response_with_payload_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006371
6372else
6373
ctiller09cb6d52014-12-19 17:38:22 -08006374bins/$(TGTDIR)/chttp2_fullstack_request_response_with_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006375 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006376 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006377 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_request_response_with_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006378
nnoble69ac39f2014-12-12 15:43:38 -08006379endif
6380
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006381deps_chttp2_fullstack_request_response_with_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
6382
nnoble69ac39f2014-12-12 15:43:38 -08006383ifneq ($(NO_SECURE),true)
6384ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006385-include $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
6386endif
nnoble69ac39f2014-12-12 15:43:38 -08006387endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006388
6389clean_chttp2_fullstack_request_response_with_payload_test:
6390 $(E) "[CLEAN] Cleaning chttp2_fullstack_request_response_with_payload_test files"
6391 $(Q) $(RM) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS)
6392 $(Q) $(RM) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006393 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_request_response_with_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006394
6395
ctiller2845cad2014-12-15 15:14:12 -08006396CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC = \
6397
ctiller09cb6d52014-12-19 17:38:22 -08006398CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC))))
6399CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC))))
ctiller2845cad2014-12-15 15:14:12 -08006400
6401ifeq ($(NO_SECURE),true)
6402
ctiller09cb6d52014-12-19 17:38:22 -08006403bins/$(TGTDIR)/chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test: openssl_dep_error
ctiller2845cad2014-12-15 15:14:12 -08006404
6405else
6406
ctiller09cb6d52014-12-19 17:38:22 -08006407bins/$(TGTDIR)/chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller2845cad2014-12-15 15:14:12 -08006408 $(E) "[LD] Linking $@"
6409 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006410 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test
ctiller2845cad2014-12-15 15:14:12 -08006411
6412endif
6413
6414deps_chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
6415
6416ifneq ($(NO_SECURE),true)
6417ifneq ($(NO_DEPS),true)
6418-include $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
6419endif
6420endif
6421
6422clean_chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test:
6423 $(E) "[CLEAN] Cleaning chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test files"
6424 $(Q) $(RM) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS)
6425 $(Q) $(RM) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006426 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test
ctiller2845cad2014-12-15 15:14:12 -08006427
6428
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006429CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_SRC = \
6430
ctiller09cb6d52014-12-19 17:38:22 -08006431CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_SRC))))
6432CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006433
nnoble69ac39f2014-12-12 15:43:38 -08006434ifeq ($(NO_SECURE),true)
6435
ctiller09cb6d52014-12-19 17:38:22 -08006436bins/$(TGTDIR)/chttp2_fullstack_simple_delayed_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006437
6438else
6439
ctiller09cb6d52014-12-19 17:38:22 -08006440bins/$(TGTDIR)/chttp2_fullstack_simple_delayed_request_test: $(CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006441 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006442 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006443 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_simple_delayed_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006444
nnoble69ac39f2014-12-12 15:43:38 -08006445endif
6446
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006447deps_chttp2_fullstack_simple_delayed_request_test: $(CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
6448
nnoble69ac39f2014-12-12 15:43:38 -08006449ifneq ($(NO_SECURE),true)
6450ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006451-include $(CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
6452endif
nnoble69ac39f2014-12-12 15:43:38 -08006453endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006454
6455clean_chttp2_fullstack_simple_delayed_request_test:
6456 $(E) "[CLEAN] Cleaning chttp2_fullstack_simple_delayed_request_test files"
6457 $(Q) $(RM) $(CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS)
6458 $(Q) $(RM) $(CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006459 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_simple_delayed_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006460
6461
6462CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_SRC = \
6463
ctiller09cb6d52014-12-19 17:38:22 -08006464CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_SRC))))
6465CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006466
nnoble69ac39f2014-12-12 15:43:38 -08006467ifeq ($(NO_SECURE),true)
6468
ctiller09cb6d52014-12-19 17:38:22 -08006469bins/$(TGTDIR)/chttp2_fullstack_simple_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006470
6471else
6472
ctiller09cb6d52014-12-19 17:38:22 -08006473bins/$(TGTDIR)/chttp2_fullstack_simple_request_test: $(CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_simple_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006474 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006475 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006476 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_simple_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_simple_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006477
nnoble69ac39f2014-12-12 15:43:38 -08006478endif
6479
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006480deps_chttp2_fullstack_simple_request_test: $(CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_DEPS)
6481
nnoble69ac39f2014-12-12 15:43:38 -08006482ifneq ($(NO_SECURE),true)
6483ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006484-include $(CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_DEPS)
6485endif
nnoble69ac39f2014-12-12 15:43:38 -08006486endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006487
6488clean_chttp2_fullstack_simple_request_test:
6489 $(E) "[CLEAN] Cleaning chttp2_fullstack_simple_request_test files"
6490 $(Q) $(RM) $(CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS)
6491 $(Q) $(RM) $(CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006492 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_simple_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006493
6494
nathaniel52878172014-12-09 10:17:19 -08006495CHTTP2_FULLSTACK_THREAD_STRESS_TEST_SRC = \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006496
ctiller09cb6d52014-12-19 17:38:22 -08006497CHTTP2_FULLSTACK_THREAD_STRESS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_THREAD_STRESS_TEST_SRC))))
6498CHTTP2_FULLSTACK_THREAD_STRESS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_THREAD_STRESS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006499
nnoble69ac39f2014-12-12 15:43:38 -08006500ifeq ($(NO_SECURE),true)
6501
ctiller09cb6d52014-12-19 17:38:22 -08006502bins/$(TGTDIR)/chttp2_fullstack_thread_stress_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006503
6504else
6505
ctiller09cb6d52014-12-19 17:38:22 -08006506bins/$(TGTDIR)/chttp2_fullstack_thread_stress_test: $(CHTTP2_FULLSTACK_THREAD_STRESS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_thread_stress.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006507 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006508 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006509 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_THREAD_STRESS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_thread_stress.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_thread_stress_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006510
nnoble69ac39f2014-12-12 15:43:38 -08006511endif
6512
nathaniel52878172014-12-09 10:17:19 -08006513deps_chttp2_fullstack_thread_stress_test: $(CHTTP2_FULLSTACK_THREAD_STRESS_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006514
nnoble69ac39f2014-12-12 15:43:38 -08006515ifneq ($(NO_SECURE),true)
6516ifneq ($(NO_DEPS),true)
nathaniel52878172014-12-09 10:17:19 -08006517-include $(CHTTP2_FULLSTACK_THREAD_STRESS_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006518endif
nnoble69ac39f2014-12-12 15:43:38 -08006519endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006520
nathaniel52878172014-12-09 10:17:19 -08006521clean_chttp2_fullstack_thread_stress_test:
6522 $(E) "[CLEAN] Cleaning chttp2_fullstack_thread_stress_test files"
6523 $(Q) $(RM) $(CHTTP2_FULLSTACK_THREAD_STRESS_TEST_OBJS)
6524 $(Q) $(RM) $(CHTTP2_FULLSTACK_THREAD_STRESS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006525 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_thread_stress_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006526
6527
6528CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC = \
6529
ctiller09cb6d52014-12-19 17:38:22 -08006530CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC))))
6531CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006532
nnoble69ac39f2014-12-12 15:43:38 -08006533ifeq ($(NO_SECURE),true)
6534
ctiller09cb6d52014-12-19 17:38:22 -08006535bins/$(TGTDIR)/chttp2_fullstack_writes_done_hangs_with_pending_read_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006536
6537else
6538
ctiller09cb6d52014-12-19 17:38:22 -08006539bins/$(TGTDIR)/chttp2_fullstack_writes_done_hangs_with_pending_read_test: $(CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006540 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006541 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006542 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_fullstack.a libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_fullstack_writes_done_hangs_with_pending_read_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006543
nnoble69ac39f2014-12-12 15:43:38 -08006544endif
6545
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006546deps_chttp2_fullstack_writes_done_hangs_with_pending_read_test: $(CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
6547
nnoble69ac39f2014-12-12 15:43:38 -08006548ifneq ($(NO_SECURE),true)
6549ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006550-include $(CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
6551endif
nnoble69ac39f2014-12-12 15:43:38 -08006552endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006553
6554clean_chttp2_fullstack_writes_done_hangs_with_pending_read_test:
6555 $(E) "[CLEAN] Cleaning chttp2_fullstack_writes_done_hangs_with_pending_read_test files"
6556 $(Q) $(RM) $(CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS)
6557 $(Q) $(RM) $(CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006558 $(Q) $(RM) bins/$(TGTDIR)/chttp2_fullstack_writes_done_hangs_with_pending_read_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006559
6560
6561CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_SRC = \
6562
ctiller09cb6d52014-12-19 17:38:22 -08006563CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_SRC))))
6564CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006565
nnoble69ac39f2014-12-12 15:43:38 -08006566ifeq ($(NO_SECURE),true)
6567
ctiller09cb6d52014-12-19 17:38:22 -08006568bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_accept_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006569
6570else
6571
ctiller09cb6d52014-12-19 17:38:22 -08006572bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_accept_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006573 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006574 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006575 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_accept_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006576
nnoble69ac39f2014-12-12 15:43:38 -08006577endif
6578
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006579deps_chttp2_simple_ssl_fullstack_cancel_after_accept_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_DEPS)
6580
nnoble69ac39f2014-12-12 15:43:38 -08006581ifneq ($(NO_SECURE),true)
6582ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006583-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_DEPS)
6584endif
nnoble69ac39f2014-12-12 15:43:38 -08006585endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006586
6587clean_chttp2_simple_ssl_fullstack_cancel_after_accept_test:
6588 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_cancel_after_accept_test files"
6589 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS)
6590 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006591 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_accept_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006592
6593
6594CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC = \
6595
ctiller09cb6d52014-12-19 17:38:22 -08006596CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC))))
6597CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006598
nnoble69ac39f2014-12-12 15:43:38 -08006599ifeq ($(NO_SECURE),true)
6600
ctiller09cb6d52014-12-19 17:38:22 -08006601bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006602
6603else
6604
ctiller09cb6d52014-12-19 17:38:22 -08006605bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006606 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006607 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006608 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006609
nnoble69ac39f2014-12-12 15:43:38 -08006610endif
6611
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006612deps_chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
6613
nnoble69ac39f2014-12-12 15:43:38 -08006614ifneq ($(NO_SECURE),true)
6615ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006616-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
6617endif
nnoble69ac39f2014-12-12 15:43:38 -08006618endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006619
6620clean_chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test:
6621 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test files"
6622 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS)
6623 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006624 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006625
6626
6627CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_SRC = \
6628
ctiller09cb6d52014-12-19 17:38:22 -08006629CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_SRC))))
6630CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006631
nnoble69ac39f2014-12-12 15:43:38 -08006632ifeq ($(NO_SECURE),true)
6633
ctiller09cb6d52014-12-19 17:38:22 -08006634bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_invoke_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006635
6636else
6637
ctiller09cb6d52014-12-19 17:38:22 -08006638bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_invoke_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006639 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006640 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006641 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006642
nnoble69ac39f2014-12-12 15:43:38 -08006643endif
6644
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006645deps_chttp2_simple_ssl_fullstack_cancel_after_invoke_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_DEPS)
6646
nnoble69ac39f2014-12-12 15:43:38 -08006647ifneq ($(NO_SECURE),true)
6648ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006649-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_DEPS)
6650endif
nnoble69ac39f2014-12-12 15:43:38 -08006651endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006652
6653clean_chttp2_simple_ssl_fullstack_cancel_after_invoke_test:
6654 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_cancel_after_invoke_test files"
6655 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS)
6656 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006657 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_after_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006658
6659
6660CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_SRC = \
6661
ctiller09cb6d52014-12-19 17:38:22 -08006662CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_SRC))))
6663CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006664
nnoble69ac39f2014-12-12 15:43:38 -08006665ifeq ($(NO_SECURE),true)
6666
ctiller09cb6d52014-12-19 17:38:22 -08006667bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_before_invoke_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006668
6669else
6670
ctiller09cb6d52014-12-19 17:38:22 -08006671bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_before_invoke_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006672 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006673 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006674 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_before_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006675
nnoble69ac39f2014-12-12 15:43:38 -08006676endif
6677
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006678deps_chttp2_simple_ssl_fullstack_cancel_before_invoke_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_DEPS)
6679
nnoble69ac39f2014-12-12 15:43:38 -08006680ifneq ($(NO_SECURE),true)
6681ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006682-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_DEPS)
6683endif
nnoble69ac39f2014-12-12 15:43:38 -08006684endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006685
6686clean_chttp2_simple_ssl_fullstack_cancel_before_invoke_test:
6687 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_cancel_before_invoke_test files"
6688 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS)
6689 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006690 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_before_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006691
6692
6693CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_SRC = \
6694
ctiller09cb6d52014-12-19 17:38:22 -08006695CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_SRC))))
6696CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006697
nnoble69ac39f2014-12-12 15:43:38 -08006698ifeq ($(NO_SECURE),true)
6699
ctiller09cb6d52014-12-19 17:38:22 -08006700bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006701
6702else
6703
ctiller09cb6d52014-12-19 17:38:22 -08006704bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006705 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006706 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006707 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006708
nnoble69ac39f2014-12-12 15:43:38 -08006709endif
6710
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006711deps_chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_DEPS)
6712
nnoble69ac39f2014-12-12 15:43:38 -08006713ifneq ($(NO_SECURE),true)
6714ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006715-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_DEPS)
6716endif
nnoble69ac39f2014-12-12 15:43:38 -08006717endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006718
6719clean_chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test:
6720 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test files"
6721 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS)
6722 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006723 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006724
6725
ctillerc6d61c42014-12-15 14:52:08 -08006726CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_SRC = \
6727
ctiller09cb6d52014-12-19 17:38:22 -08006728CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_SRC))))
6729CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_SRC))))
ctillerc6d61c42014-12-15 14:52:08 -08006730
6731ifeq ($(NO_SECURE),true)
6732
ctiller09cb6d52014-12-19 17:38:22 -08006733bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_disappearing_server_test: openssl_dep_error
ctillerc6d61c42014-12-15 14:52:08 -08006734
6735else
6736
ctiller09cb6d52014-12-19 17:38:22 -08006737bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_disappearing_server_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_disappearing_server.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctillerc6d61c42014-12-15 14:52:08 -08006738 $(E) "[LD] Linking $@"
6739 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006740 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_disappearing_server.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_disappearing_server_test
ctillerc6d61c42014-12-15 14:52:08 -08006741
6742endif
6743
6744deps_chttp2_simple_ssl_fullstack_disappearing_server_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_DEPS)
6745
6746ifneq ($(NO_SECURE),true)
6747ifneq ($(NO_DEPS),true)
6748-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_DEPS)
6749endif
6750endif
6751
6752clean_chttp2_simple_ssl_fullstack_disappearing_server_test:
6753 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_disappearing_server_test files"
6754 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS)
6755 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006756 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_disappearing_server_test
ctillerc6d61c42014-12-15 14:52:08 -08006757
6758
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006759CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC = \
6760
ctiller09cb6d52014-12-19 17:38:22 -08006761CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC))))
6762CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006763
nnoble69ac39f2014-12-12 15:43:38 -08006764ifeq ($(NO_SECURE),true)
6765
ctiller09cb6d52014-12-19 17:38:22 -08006766bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006767
6768else
6769
ctiller09cb6d52014-12-19 17:38:22 -08006770bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006771 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006772 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006773 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006774
nnoble69ac39f2014-12-12 15:43:38 -08006775endif
6776
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006777deps_chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
6778
nnoble69ac39f2014-12-12 15:43:38 -08006779ifneq ($(NO_SECURE),true)
6780ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006781-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
6782endif
nnoble69ac39f2014-12-12 15:43:38 -08006783endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006784
6785clean_chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test:
6786 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test files"
6787 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS)
6788 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006789 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006790
6791
6792CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC = \
6793
ctiller09cb6d52014-12-19 17:38:22 -08006794CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC))))
6795CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006796
nnoble69ac39f2014-12-12 15:43:38 -08006797ifeq ($(NO_SECURE),true)
6798
ctiller09cb6d52014-12-19 17:38:22 -08006799bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006800
6801else
6802
ctiller09cb6d52014-12-19 17:38:22 -08006803bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006804 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006805 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006806 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006807
nnoble69ac39f2014-12-12 15:43:38 -08006808endif
6809
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006810deps_chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
6811
nnoble69ac39f2014-12-12 15:43:38 -08006812ifneq ($(NO_SECURE),true)
6813ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006814-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
6815endif
nnoble69ac39f2014-12-12 15:43:38 -08006816endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006817
6818clean_chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test:
6819 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test files"
6820 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS)
6821 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006822 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006823
6824
6825CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_SRC = \
6826
ctiller09cb6d52014-12-19 17:38:22 -08006827CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_SRC))))
6828CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006829
nnoble69ac39f2014-12-12 15:43:38 -08006830ifeq ($(NO_SECURE),true)
6831
ctiller09cb6d52014-12-19 17:38:22 -08006832bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_invoke_large_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006833
6834else
6835
ctiller09cb6d52014-12-19 17:38:22 -08006836bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_invoke_large_request_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_invoke_large_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006837 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006838 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006839 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_invoke_large_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_invoke_large_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006840
nnoble69ac39f2014-12-12 15:43:38 -08006841endif
6842
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006843deps_chttp2_simple_ssl_fullstack_invoke_large_request_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_DEPS)
6844
nnoble69ac39f2014-12-12 15:43:38 -08006845ifneq ($(NO_SECURE),true)
6846ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006847-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_DEPS)
6848endif
nnoble69ac39f2014-12-12 15:43:38 -08006849endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006850
6851clean_chttp2_simple_ssl_fullstack_invoke_large_request_test:
6852 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_invoke_large_request_test files"
6853 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS)
6854 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006855 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_invoke_large_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006856
6857
6858CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_SRC = \
6859
ctiller09cb6d52014-12-19 17:38:22 -08006860CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_SRC))))
6861CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006862
nnoble69ac39f2014-12-12 15:43:38 -08006863ifeq ($(NO_SECURE),true)
6864
ctiller09cb6d52014-12-19 17:38:22 -08006865bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_max_concurrent_streams_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006866
6867else
6868
ctiller09cb6d52014-12-19 17:38:22 -08006869bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_max_concurrent_streams_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006870 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006871 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006872 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_max_concurrent_streams_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006873
nnoble69ac39f2014-12-12 15:43:38 -08006874endif
6875
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006876deps_chttp2_simple_ssl_fullstack_max_concurrent_streams_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_DEPS)
6877
nnoble69ac39f2014-12-12 15:43:38 -08006878ifneq ($(NO_SECURE),true)
6879ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006880-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_DEPS)
6881endif
nnoble69ac39f2014-12-12 15:43:38 -08006882endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006883
6884clean_chttp2_simple_ssl_fullstack_max_concurrent_streams_test:
6885 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_max_concurrent_streams_test files"
6886 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS)
6887 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006888 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_max_concurrent_streams_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006889
6890
6891CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_SRC = \
6892
ctiller09cb6d52014-12-19 17:38:22 -08006893CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_SRC))))
6894CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006895
nnoble69ac39f2014-12-12 15:43:38 -08006896ifeq ($(NO_SECURE),true)
6897
ctiller09cb6d52014-12-19 17:38:22 -08006898bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_no_op_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006899
6900else
6901
ctiller09cb6d52014-12-19 17:38:22 -08006902bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_no_op_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_no_op.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006903 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006904 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006905 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_no_op.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_no_op_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006906
nnoble69ac39f2014-12-12 15:43:38 -08006907endif
6908
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006909deps_chttp2_simple_ssl_fullstack_no_op_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_DEPS)
6910
nnoble69ac39f2014-12-12 15:43:38 -08006911ifneq ($(NO_SECURE),true)
6912ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006913-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_DEPS)
6914endif
nnoble69ac39f2014-12-12 15:43:38 -08006915endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006916
6917clean_chttp2_simple_ssl_fullstack_no_op_test:
6918 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_no_op_test files"
6919 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_OBJS)
6920 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006921 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_no_op_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006922
6923
6924CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_SRC = \
6925
ctiller09cb6d52014-12-19 17:38:22 -08006926CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_SRC))))
6927CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006928
nnoble69ac39f2014-12-12 15:43:38 -08006929ifeq ($(NO_SECURE),true)
6930
ctiller09cb6d52014-12-19 17:38:22 -08006931bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_ping_pong_streaming_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006932
6933else
6934
ctiller09cb6d52014-12-19 17:38:22 -08006935bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_ping_pong_streaming_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006936 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08006937 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006938 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_ping_pong_streaming_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006939
nnoble69ac39f2014-12-12 15:43:38 -08006940endif
6941
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006942deps_chttp2_simple_ssl_fullstack_ping_pong_streaming_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_DEPS)
6943
nnoble69ac39f2014-12-12 15:43:38 -08006944ifneq ($(NO_SECURE),true)
6945ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006946-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_DEPS)
6947endif
nnoble69ac39f2014-12-12 15:43:38 -08006948endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006949
6950clean_chttp2_simple_ssl_fullstack_ping_pong_streaming_test:
6951 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_ping_pong_streaming_test files"
6952 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS)
6953 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006954 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_ping_pong_streaming_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006955
6956
ctiller33023c42014-12-12 16:28:33 -08006957CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC = \
6958
ctiller09cb6d52014-12-19 17:38:22 -08006959CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC))))
6960CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC))))
ctiller33023c42014-12-12 16:28:33 -08006961
6962ifeq ($(NO_SECURE),true)
6963
ctiller09cb6d52014-12-19 17:38:22 -08006964bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test: openssl_dep_error
ctiller33023c42014-12-12 16:28:33 -08006965
6966else
6967
ctiller09cb6d52014-12-19 17:38:22 -08006968bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller33023c42014-12-12 16:28:33 -08006969 $(E) "[LD] Linking $@"
6970 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08006971 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test
ctiller33023c42014-12-12 16:28:33 -08006972
6973endif
6974
6975deps_chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
6976
6977ifneq ($(NO_SECURE),true)
6978ifneq ($(NO_DEPS),true)
6979-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
6980endif
6981endif
6982
6983clean_chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test:
6984 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test files"
6985 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS)
6986 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08006987 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test
ctiller33023c42014-12-12 16:28:33 -08006988
6989
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006990CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC = \
6991
ctiller09cb6d52014-12-19 17:38:22 -08006992CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC))))
6993CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08006994
nnoble69ac39f2014-12-12 15:43:38 -08006995ifeq ($(NO_SECURE),true)
6996
ctiller09cb6d52014-12-19 17:38:22 -08006997bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08006998
6999else
7000
ctiller09cb6d52014-12-19 17:38:22 -08007001bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007002 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007003 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007004 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007005
nnoble69ac39f2014-12-12 15:43:38 -08007006endif
7007
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007008deps_chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
7009
nnoble69ac39f2014-12-12 15:43:38 -08007010ifneq ($(NO_SECURE),true)
7011ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007012-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
7013endif
nnoble69ac39f2014-12-12 15:43:38 -08007014endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007015
7016clean_chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test:
7017 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test files"
7018 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS)
7019 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007020 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007021
7022
7023CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC = \
7024
ctiller09cb6d52014-12-19 17:38:22 -08007025CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC))))
7026CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007027
nnoble69ac39f2014-12-12 15:43:38 -08007028ifeq ($(NO_SECURE),true)
7029
ctiller09cb6d52014-12-19 17:38:22 -08007030bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_payload_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007031
7032else
7033
ctiller09cb6d52014-12-19 17:38:22 -08007034bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_payload_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007035 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007036 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007037 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007038
nnoble69ac39f2014-12-12 15:43:38 -08007039endif
7040
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007041deps_chttp2_simple_ssl_fullstack_request_response_with_payload_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
7042
nnoble69ac39f2014-12-12 15:43:38 -08007043ifneq ($(NO_SECURE),true)
7044ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007045-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
7046endif
nnoble69ac39f2014-12-12 15:43:38 -08007047endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007048
7049clean_chttp2_simple_ssl_fullstack_request_response_with_payload_test:
7050 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_request_response_with_payload_test files"
7051 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS)
7052 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007053 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007054
7055
ctiller2845cad2014-12-15 15:14:12 -08007056CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC = \
7057
ctiller09cb6d52014-12-19 17:38:22 -08007058CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC))))
7059CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC))))
ctiller2845cad2014-12-15 15:14:12 -08007060
7061ifeq ($(NO_SECURE),true)
7062
ctiller09cb6d52014-12-19 17:38:22 -08007063bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test: openssl_dep_error
ctiller2845cad2014-12-15 15:14:12 -08007064
7065else
7066
ctiller09cb6d52014-12-19 17:38:22 -08007067bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller2845cad2014-12-15 15:14:12 -08007068 $(E) "[LD] Linking $@"
7069 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007070 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test
ctiller2845cad2014-12-15 15:14:12 -08007071
7072endif
7073
7074deps_chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
7075
7076ifneq ($(NO_SECURE),true)
7077ifneq ($(NO_DEPS),true)
7078-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
7079endif
7080endif
7081
7082clean_chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test:
7083 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test files"
7084 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS)
7085 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007086 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test
ctiller2845cad2014-12-15 15:14:12 -08007087
7088
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007089CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_SRC = \
7090
ctiller09cb6d52014-12-19 17:38:22 -08007091CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_SRC))))
7092CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007093
nnoble69ac39f2014-12-12 15:43:38 -08007094ifeq ($(NO_SECURE),true)
7095
ctiller09cb6d52014-12-19 17:38:22 -08007096bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_simple_delayed_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007097
7098else
7099
ctiller09cb6d52014-12-19 17:38:22 -08007100bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_simple_delayed_request_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007101 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007102 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007103 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_simple_delayed_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007104
nnoble69ac39f2014-12-12 15:43:38 -08007105endif
7106
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007107deps_chttp2_simple_ssl_fullstack_simple_delayed_request_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
7108
nnoble69ac39f2014-12-12 15:43:38 -08007109ifneq ($(NO_SECURE),true)
7110ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007111-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
7112endif
nnoble69ac39f2014-12-12 15:43:38 -08007113endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007114
7115clean_chttp2_simple_ssl_fullstack_simple_delayed_request_test:
7116 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_simple_delayed_request_test files"
7117 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS)
7118 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007119 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_simple_delayed_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007120
7121
7122CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_SRC = \
7123
ctiller09cb6d52014-12-19 17:38:22 -08007124CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_SRC))))
7125CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007126
nnoble69ac39f2014-12-12 15:43:38 -08007127ifeq ($(NO_SECURE),true)
7128
ctiller09cb6d52014-12-19 17:38:22 -08007129bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_simple_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007130
7131else
7132
ctiller09cb6d52014-12-19 17:38:22 -08007133bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_simple_request_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_simple_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007134 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007135 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007136 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_simple_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_simple_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007137
nnoble69ac39f2014-12-12 15:43:38 -08007138endif
7139
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007140deps_chttp2_simple_ssl_fullstack_simple_request_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_DEPS)
7141
nnoble69ac39f2014-12-12 15:43:38 -08007142ifneq ($(NO_SECURE),true)
7143ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007144-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_DEPS)
7145endif
nnoble69ac39f2014-12-12 15:43:38 -08007146endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007147
7148clean_chttp2_simple_ssl_fullstack_simple_request_test:
7149 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_simple_request_test files"
7150 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS)
7151 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007152 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_simple_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007153
7154
nathaniel52878172014-12-09 10:17:19 -08007155CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_SRC = \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007156
ctiller09cb6d52014-12-19 17:38:22 -08007157CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_SRC))))
7158CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007159
nnoble69ac39f2014-12-12 15:43:38 -08007160ifeq ($(NO_SECURE),true)
7161
ctiller09cb6d52014-12-19 17:38:22 -08007162bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_thread_stress_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007163
7164else
7165
ctiller09cb6d52014-12-19 17:38:22 -08007166bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_thread_stress_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_thread_stress.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007167 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007168 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007169 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_thread_stress.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_thread_stress_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007170
nnoble69ac39f2014-12-12 15:43:38 -08007171endif
7172
nathaniel52878172014-12-09 10:17:19 -08007173deps_chttp2_simple_ssl_fullstack_thread_stress_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007174
nnoble69ac39f2014-12-12 15:43:38 -08007175ifneq ($(NO_SECURE),true)
7176ifneq ($(NO_DEPS),true)
nathaniel52878172014-12-09 10:17:19 -08007177-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007178endif
nnoble69ac39f2014-12-12 15:43:38 -08007179endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007180
nathaniel52878172014-12-09 10:17:19 -08007181clean_chttp2_simple_ssl_fullstack_thread_stress_test:
7182 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_thread_stress_test files"
7183 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_OBJS)
7184 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007185 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_thread_stress_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007186
7187
7188CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC = \
7189
ctiller09cb6d52014-12-19 17:38:22 -08007190CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC))))
7191CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007192
nnoble69ac39f2014-12-12 15:43:38 -08007193ifeq ($(NO_SECURE),true)
7194
ctiller09cb6d52014-12-19 17:38:22 -08007195bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007196
7197else
7198
ctiller09cb6d52014-12-19 17:38:22 -08007199bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007200 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007201 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007202 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007203
nnoble69ac39f2014-12-12 15:43:38 -08007204endif
7205
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007206deps_chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
7207
nnoble69ac39f2014-12-12 15:43:38 -08007208ifneq ($(NO_SECURE),true)
7209ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007210-include $(CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
7211endif
nnoble69ac39f2014-12-12 15:43:38 -08007212endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007213
7214clean_chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test:
7215 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test files"
7216 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS)
7217 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007218 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007219
7220
7221CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_SRC = \
7222
ctiller09cb6d52014-12-19 17:38:22 -08007223CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_SRC))))
7224CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007225
nnoble69ac39f2014-12-12 15:43:38 -08007226ifeq ($(NO_SECURE),true)
7227
ctiller09cb6d52014-12-19 17:38:22 -08007228bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007229
7230else
7231
ctiller09cb6d52014-12-19 17:38:22 -08007232bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007233 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007234 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007235 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007236
nnoble69ac39f2014-12-12 15:43:38 -08007237endif
7238
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007239deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_DEPS)
7240
nnoble69ac39f2014-12-12 15:43:38 -08007241ifneq ($(NO_SECURE),true)
7242ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007243-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_DEPS)
7244endif
nnoble69ac39f2014-12-12 15:43:38 -08007245endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007246
7247clean_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test:
7248 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test files"
7249 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS)
7250 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007251 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007252
7253
7254CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC = \
7255
ctiller09cb6d52014-12-19 17:38:22 -08007256CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC))))
7257CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007258
nnoble69ac39f2014-12-12 15:43:38 -08007259ifeq ($(NO_SECURE),true)
7260
ctiller09cb6d52014-12-19 17:38:22 -08007261bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007262
7263else
7264
ctiller09cb6d52014-12-19 17:38:22 -08007265bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007266 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007267 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007268 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007269
nnoble69ac39f2014-12-12 15:43:38 -08007270endif
7271
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007272deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
7273
nnoble69ac39f2014-12-12 15:43:38 -08007274ifneq ($(NO_SECURE),true)
7275ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007276-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
7277endif
nnoble69ac39f2014-12-12 15:43:38 -08007278endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007279
7280clean_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test:
7281 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test files"
7282 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS)
7283 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007284 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007285
7286
7287CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_SRC = \
7288
ctiller09cb6d52014-12-19 17:38:22 -08007289CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_SRC))))
7290CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007291
nnoble69ac39f2014-12-12 15:43:38 -08007292ifeq ($(NO_SECURE),true)
7293
ctiller09cb6d52014-12-19 17:38:22 -08007294bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007295
7296else
7297
ctiller09cb6d52014-12-19 17:38:22 -08007298bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007299 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007300 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007301 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007302
nnoble69ac39f2014-12-12 15:43:38 -08007303endif
7304
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007305deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_DEPS)
7306
nnoble69ac39f2014-12-12 15:43:38 -08007307ifneq ($(NO_SECURE),true)
7308ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007309-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_DEPS)
7310endif
nnoble69ac39f2014-12-12 15:43:38 -08007311endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007312
7313clean_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test:
7314 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test files"
7315 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS)
7316 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007317 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007318
7319
7320CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_SRC = \
7321
ctiller09cb6d52014-12-19 17:38:22 -08007322CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_SRC))))
7323CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007324
nnoble69ac39f2014-12-12 15:43:38 -08007325ifeq ($(NO_SECURE),true)
7326
ctiller09cb6d52014-12-19 17:38:22 -08007327bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007328
7329else
7330
ctiller09cb6d52014-12-19 17:38:22 -08007331bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007332 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007333 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007334 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007335
nnoble69ac39f2014-12-12 15:43:38 -08007336endif
7337
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007338deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_DEPS)
7339
nnoble69ac39f2014-12-12 15:43:38 -08007340ifneq ($(NO_SECURE),true)
7341ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007342-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_DEPS)
7343endif
nnoble69ac39f2014-12-12 15:43:38 -08007344endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007345
7346clean_chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test:
7347 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test files"
7348 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS)
7349 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007350 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007351
7352
7353CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_SRC = \
7354
ctiller09cb6d52014-12-19 17:38:22 -08007355CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_SRC))))
7356CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007357
nnoble69ac39f2014-12-12 15:43:38 -08007358ifeq ($(NO_SECURE),true)
7359
ctiller09cb6d52014-12-19 17:38:22 -08007360bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007361
7362else
7363
ctiller09cb6d52014-12-19 17:38:22 -08007364bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007365 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007366 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007367 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007368
nnoble69ac39f2014-12-12 15:43:38 -08007369endif
7370
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007371deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_DEPS)
7372
nnoble69ac39f2014-12-12 15:43:38 -08007373ifneq ($(NO_SECURE),true)
7374ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007375-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_DEPS)
7376endif
nnoble69ac39f2014-12-12 15:43:38 -08007377endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007378
7379clean_chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test:
7380 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test files"
7381 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS)
7382 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007383 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007384
7385
ctillerc6d61c42014-12-15 14:52:08 -08007386CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_SRC = \
7387
ctiller09cb6d52014-12-19 17:38:22 -08007388CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_SRC))))
7389CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_SRC))))
ctillerc6d61c42014-12-15 14:52:08 -08007390
7391ifeq ($(NO_SECURE),true)
7392
ctiller09cb6d52014-12-19 17:38:22 -08007393bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test: openssl_dep_error
ctillerc6d61c42014-12-15 14:52:08 -08007394
7395else
7396
ctiller09cb6d52014-12-19 17:38:22 -08007397bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_disappearing_server.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctillerc6d61c42014-12-15 14:52:08 -08007398 $(E) "[LD] Linking $@"
7399 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007400 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_disappearing_server.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test
ctillerc6d61c42014-12-15 14:52:08 -08007401
7402endif
7403
7404deps_chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_DEPS)
7405
7406ifneq ($(NO_SECURE),true)
7407ifneq ($(NO_DEPS),true)
7408-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_DEPS)
7409endif
7410endif
7411
7412clean_chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test:
7413 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test files"
7414 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS)
7415 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007416 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test
ctillerc6d61c42014-12-15 14:52:08 -08007417
7418
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007419CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC = \
7420
ctiller09cb6d52014-12-19 17:38:22 -08007421CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC))))
7422CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007423
nnoble69ac39f2014-12-12 15:43:38 -08007424ifeq ($(NO_SECURE),true)
7425
ctiller09cb6d52014-12-19 17:38:22 -08007426bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007427
7428else
7429
ctiller09cb6d52014-12-19 17:38:22 -08007430bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007431 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007432 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007433 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007434
nnoble69ac39f2014-12-12 15:43:38 -08007435endif
7436
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007437deps_chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
7438
nnoble69ac39f2014-12-12 15:43:38 -08007439ifneq ($(NO_SECURE),true)
7440ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007441-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
7442endif
nnoble69ac39f2014-12-12 15:43:38 -08007443endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007444
7445clean_chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test:
7446 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test files"
7447 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS)
7448 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007449 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007450
7451
7452CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC = \
7453
ctiller09cb6d52014-12-19 17:38:22 -08007454CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC))))
7455CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007456
nnoble69ac39f2014-12-12 15:43:38 -08007457ifeq ($(NO_SECURE),true)
7458
ctiller09cb6d52014-12-19 17:38:22 -08007459bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007460
7461else
7462
ctiller09cb6d52014-12-19 17:38:22 -08007463bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007464 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007465 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007466 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007467
nnoble69ac39f2014-12-12 15:43:38 -08007468endif
7469
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007470deps_chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
7471
nnoble69ac39f2014-12-12 15:43:38 -08007472ifneq ($(NO_SECURE),true)
7473ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007474-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
7475endif
nnoble69ac39f2014-12-12 15:43:38 -08007476endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007477
7478clean_chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test:
7479 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test files"
7480 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS)
7481 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007482 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007483
7484
7485CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_SRC = \
7486
ctiller09cb6d52014-12-19 17:38:22 -08007487CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_SRC))))
7488CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007489
nnoble69ac39f2014-12-12 15:43:38 -08007490ifeq ($(NO_SECURE),true)
7491
ctiller09cb6d52014-12-19 17:38:22 -08007492bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007493
7494else
7495
ctiller09cb6d52014-12-19 17:38:22 -08007496bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_invoke_large_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007497 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007498 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007499 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_invoke_large_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007500
nnoble69ac39f2014-12-12 15:43:38 -08007501endif
7502
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007503deps_chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_DEPS)
7504
nnoble69ac39f2014-12-12 15:43:38 -08007505ifneq ($(NO_SECURE),true)
7506ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007507-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_DEPS)
7508endif
nnoble69ac39f2014-12-12 15:43:38 -08007509endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007510
7511clean_chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test:
7512 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test files"
7513 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS)
7514 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007515 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007516
7517
7518CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_SRC = \
7519
ctiller09cb6d52014-12-19 17:38:22 -08007520CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_SRC))))
7521CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007522
nnoble69ac39f2014-12-12 15:43:38 -08007523ifeq ($(NO_SECURE),true)
7524
ctiller09cb6d52014-12-19 17:38:22 -08007525bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007526
7527else
7528
ctiller09cb6d52014-12-19 17:38:22 -08007529bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007530 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007531 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007532 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007533
nnoble69ac39f2014-12-12 15:43:38 -08007534endif
7535
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007536deps_chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_DEPS)
7537
nnoble69ac39f2014-12-12 15:43:38 -08007538ifneq ($(NO_SECURE),true)
7539ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007540-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_DEPS)
7541endif
nnoble69ac39f2014-12-12 15:43:38 -08007542endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007543
7544clean_chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test:
7545 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test files"
7546 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS)
7547 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007548 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007549
7550
7551CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_SRC = \
7552
ctiller09cb6d52014-12-19 17:38:22 -08007553CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_SRC))))
7554CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007555
nnoble69ac39f2014-12-12 15:43:38 -08007556ifeq ($(NO_SECURE),true)
7557
ctiller09cb6d52014-12-19 17:38:22 -08007558bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_no_op_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007559
7560else
7561
ctiller09cb6d52014-12-19 17:38:22 -08007562bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_no_op_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_no_op.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007563 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007564 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007565 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_no_op.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_no_op_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007566
nnoble69ac39f2014-12-12 15:43:38 -08007567endif
7568
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007569deps_chttp2_simple_ssl_with_oauth2_fullstack_no_op_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_DEPS)
7570
nnoble69ac39f2014-12-12 15:43:38 -08007571ifneq ($(NO_SECURE),true)
7572ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007573-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_DEPS)
7574endif
nnoble69ac39f2014-12-12 15:43:38 -08007575endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007576
7577clean_chttp2_simple_ssl_with_oauth2_fullstack_no_op_test:
7578 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_no_op_test files"
7579 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_OBJS)
7580 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007581 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_no_op_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007582
7583
7584CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_SRC = \
7585
ctiller09cb6d52014-12-19 17:38:22 -08007586CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_SRC))))
7587CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007588
nnoble69ac39f2014-12-12 15:43:38 -08007589ifeq ($(NO_SECURE),true)
7590
ctiller09cb6d52014-12-19 17:38:22 -08007591bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007592
7593else
7594
ctiller09cb6d52014-12-19 17:38:22 -08007595bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007596 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007597 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007598 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007599
nnoble69ac39f2014-12-12 15:43:38 -08007600endif
7601
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007602deps_chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_DEPS)
7603
nnoble69ac39f2014-12-12 15:43:38 -08007604ifneq ($(NO_SECURE),true)
7605ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007606-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_DEPS)
7607endif
nnoble69ac39f2014-12-12 15:43:38 -08007608endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007609
7610clean_chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test:
7611 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test files"
7612 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS)
7613 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007614 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007615
7616
ctiller33023c42014-12-12 16:28:33 -08007617CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC = \
7618
ctiller09cb6d52014-12-19 17:38:22 -08007619CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC))))
7620CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC))))
ctiller33023c42014-12-12 16:28:33 -08007621
7622ifeq ($(NO_SECURE),true)
7623
ctiller09cb6d52014-12-19 17:38:22 -08007624bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test: openssl_dep_error
ctiller33023c42014-12-12 16:28:33 -08007625
7626else
7627
ctiller09cb6d52014-12-19 17:38:22 -08007628bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller33023c42014-12-12 16:28:33 -08007629 $(E) "[LD] Linking $@"
7630 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007631 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test
ctiller33023c42014-12-12 16:28:33 -08007632
7633endif
7634
7635deps_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
7636
7637ifneq ($(NO_SECURE),true)
7638ifneq ($(NO_DEPS),true)
7639-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
7640endif
7641endif
7642
7643clean_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test:
7644 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test files"
7645 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS)
7646 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007647 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test
ctiller33023c42014-12-12 16:28:33 -08007648
7649
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007650CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC = \
7651
ctiller09cb6d52014-12-19 17:38:22 -08007652CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC))))
7653CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007654
nnoble69ac39f2014-12-12 15:43:38 -08007655ifeq ($(NO_SECURE),true)
7656
ctiller09cb6d52014-12-19 17:38:22 -08007657bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007658
7659else
7660
ctiller09cb6d52014-12-19 17:38:22 -08007661bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007662 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007663 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007664 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007665
nnoble69ac39f2014-12-12 15:43:38 -08007666endif
7667
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007668deps_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
7669
nnoble69ac39f2014-12-12 15:43:38 -08007670ifneq ($(NO_SECURE),true)
7671ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007672-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
7673endif
nnoble69ac39f2014-12-12 15:43:38 -08007674endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007675
7676clean_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test:
7677 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test files"
7678 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS)
7679 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007680 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007681
7682
7683CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC = \
7684
ctiller09cb6d52014-12-19 17:38:22 -08007685CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC))))
7686CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007687
nnoble69ac39f2014-12-12 15:43:38 -08007688ifeq ($(NO_SECURE),true)
7689
ctiller09cb6d52014-12-19 17:38:22 -08007690bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007691
7692else
7693
ctiller09cb6d52014-12-19 17:38:22 -08007694bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007695 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007696 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007697 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007698
nnoble69ac39f2014-12-12 15:43:38 -08007699endif
7700
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007701deps_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
7702
nnoble69ac39f2014-12-12 15:43:38 -08007703ifneq ($(NO_SECURE),true)
7704ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007705-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
7706endif
nnoble69ac39f2014-12-12 15:43:38 -08007707endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007708
7709clean_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test:
7710 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test files"
7711 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS)
7712 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007713 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007714
7715
ctiller2845cad2014-12-15 15:14:12 -08007716CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC = \
7717
ctiller09cb6d52014-12-19 17:38:22 -08007718CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC))))
7719CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC))))
ctiller2845cad2014-12-15 15:14:12 -08007720
7721ifeq ($(NO_SECURE),true)
7722
ctiller09cb6d52014-12-19 17:38:22 -08007723bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test: openssl_dep_error
ctiller2845cad2014-12-15 15:14:12 -08007724
7725else
7726
ctiller09cb6d52014-12-19 17:38:22 -08007727bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller2845cad2014-12-15 15:14:12 -08007728 $(E) "[LD] Linking $@"
7729 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007730 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test
ctiller2845cad2014-12-15 15:14:12 -08007731
7732endif
7733
7734deps_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
7735
7736ifneq ($(NO_SECURE),true)
7737ifneq ($(NO_DEPS),true)
7738-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
7739endif
7740endif
7741
7742clean_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test:
7743 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test files"
7744 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS)
7745 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007746 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test
ctiller2845cad2014-12-15 15:14:12 -08007747
7748
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007749CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_SRC = \
7750
ctiller09cb6d52014-12-19 17:38:22 -08007751CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_SRC))))
7752CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007753
nnoble69ac39f2014-12-12 15:43:38 -08007754ifeq ($(NO_SECURE),true)
7755
ctiller09cb6d52014-12-19 17:38:22 -08007756bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007757
7758else
7759
ctiller09cb6d52014-12-19 17:38:22 -08007760bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007761 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007762 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007763 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007764
nnoble69ac39f2014-12-12 15:43:38 -08007765endif
7766
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007767deps_chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
7768
nnoble69ac39f2014-12-12 15:43:38 -08007769ifneq ($(NO_SECURE),true)
7770ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007771-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
7772endif
nnoble69ac39f2014-12-12 15:43:38 -08007773endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007774
7775clean_chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test:
7776 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test files"
7777 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS)
7778 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007779 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007780
7781
7782CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_SRC = \
7783
ctiller09cb6d52014-12-19 17:38:22 -08007784CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_SRC))))
7785CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007786
nnoble69ac39f2014-12-12 15:43:38 -08007787ifeq ($(NO_SECURE),true)
7788
ctiller09cb6d52014-12-19 17:38:22 -08007789bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007790
7791else
7792
ctiller09cb6d52014-12-19 17:38:22 -08007793bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_simple_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007794 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007795 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007796 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_simple_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007797
nnoble69ac39f2014-12-12 15:43:38 -08007798endif
7799
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007800deps_chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_DEPS)
7801
nnoble69ac39f2014-12-12 15:43:38 -08007802ifneq ($(NO_SECURE),true)
7803ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007804-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_DEPS)
7805endif
nnoble69ac39f2014-12-12 15:43:38 -08007806endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007807
7808clean_chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test:
7809 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test files"
7810 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS)
7811 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007812 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007813
7814
nathaniel52878172014-12-09 10:17:19 -08007815CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_SRC = \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007816
ctiller09cb6d52014-12-19 17:38:22 -08007817CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_SRC))))
7818CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007819
nnoble69ac39f2014-12-12 15:43:38 -08007820ifeq ($(NO_SECURE),true)
7821
ctiller09cb6d52014-12-19 17:38:22 -08007822bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007823
7824else
7825
ctiller09cb6d52014-12-19 17:38:22 -08007826bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_thread_stress.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007827 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007828 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007829 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_thread_stress.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007830
nnoble69ac39f2014-12-12 15:43:38 -08007831endif
7832
nathaniel52878172014-12-09 10:17:19 -08007833deps_chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007834
nnoble69ac39f2014-12-12 15:43:38 -08007835ifneq ($(NO_SECURE),true)
7836ifneq ($(NO_DEPS),true)
nathaniel52878172014-12-09 10:17:19 -08007837-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007838endif
nnoble69ac39f2014-12-12 15:43:38 -08007839endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007840
nathaniel52878172014-12-09 10:17:19 -08007841clean_chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test:
7842 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test files"
7843 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_OBJS)
7844 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007845 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007846
7847
7848CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC = \
7849
ctiller09cb6d52014-12-19 17:38:22 -08007850CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC))))
7851CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007852
nnoble69ac39f2014-12-12 15:43:38 -08007853ifeq ($(NO_SECURE),true)
7854
ctiller09cb6d52014-12-19 17:38:22 -08007855bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007856
7857else
7858
ctiller09cb6d52014-12-19 17:38:22 -08007859bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007860 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007861 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007862 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007863
nnoble69ac39f2014-12-12 15:43:38 -08007864endif
7865
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007866deps_chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
7867
nnoble69ac39f2014-12-12 15:43:38 -08007868ifneq ($(NO_SECURE),true)
7869ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007870-include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
7871endif
nnoble69ac39f2014-12-12 15:43:38 -08007872endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007873
7874clean_chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test:
7875 $(E) "[CLEAN] Cleaning chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test files"
7876 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS)
7877 $(Q) $(RM) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007878 $(Q) $(RM) bins/$(TGTDIR)/chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007879
7880
7881CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_SRC = \
7882
ctiller09cb6d52014-12-19 17:38:22 -08007883CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_SRC))))
7884CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007885
nnoble69ac39f2014-12-12 15:43:38 -08007886ifeq ($(NO_SECURE),true)
7887
ctiller09cb6d52014-12-19 17:38:22 -08007888bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_accept_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007889
7890else
7891
ctiller09cb6d52014-12-19 17:38:22 -08007892bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_accept_test: $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007893 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007894 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007895 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_accept_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007896
nnoble69ac39f2014-12-12 15:43:38 -08007897endif
7898
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007899deps_chttp2_socket_pair_cancel_after_accept_test: $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_DEPS)
7900
nnoble69ac39f2014-12-12 15:43:38 -08007901ifneq ($(NO_SECURE),true)
7902ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007903-include $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_DEPS)
7904endif
nnoble69ac39f2014-12-12 15:43:38 -08007905endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007906
7907clean_chttp2_socket_pair_cancel_after_accept_test:
7908 $(E) "[CLEAN] Cleaning chttp2_socket_pair_cancel_after_accept_test files"
7909 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_OBJS)
7910 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007911 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_accept_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007912
7913
7914CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC = \
7915
ctiller09cb6d52014-12-19 17:38:22 -08007916CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC))))
7917CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007918
nnoble69ac39f2014-12-12 15:43:38 -08007919ifeq ($(NO_SECURE),true)
7920
ctiller09cb6d52014-12-19 17:38:22 -08007921bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_accept_and_writes_closed_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007922
7923else
7924
ctiller09cb6d52014-12-19 17:38:22 -08007925bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_accept_and_writes_closed_test: $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007926 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007927 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007928 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_accept_and_writes_closed_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007929
nnoble69ac39f2014-12-12 15:43:38 -08007930endif
7931
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007932deps_chttp2_socket_pair_cancel_after_accept_and_writes_closed_test: $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
7933
nnoble69ac39f2014-12-12 15:43:38 -08007934ifneq ($(NO_SECURE),true)
7935ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007936-include $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
7937endif
nnoble69ac39f2014-12-12 15:43:38 -08007938endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007939
7940clean_chttp2_socket_pair_cancel_after_accept_and_writes_closed_test:
7941 $(E) "[CLEAN] Cleaning chttp2_socket_pair_cancel_after_accept_and_writes_closed_test files"
7942 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS)
7943 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007944 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_accept_and_writes_closed_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007945
7946
7947CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_SRC = \
7948
ctiller09cb6d52014-12-19 17:38:22 -08007949CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_SRC))))
7950CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007951
nnoble69ac39f2014-12-12 15:43:38 -08007952ifeq ($(NO_SECURE),true)
7953
ctiller09cb6d52014-12-19 17:38:22 -08007954bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_invoke_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007955
7956else
7957
ctiller09cb6d52014-12-19 17:38:22 -08007958bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_invoke_test: $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007959 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007960 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007961 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007962
nnoble69ac39f2014-12-12 15:43:38 -08007963endif
7964
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007965deps_chttp2_socket_pair_cancel_after_invoke_test: $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_DEPS)
7966
nnoble69ac39f2014-12-12 15:43:38 -08007967ifneq ($(NO_SECURE),true)
7968ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007969-include $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_DEPS)
7970endif
nnoble69ac39f2014-12-12 15:43:38 -08007971endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007972
7973clean_chttp2_socket_pair_cancel_after_invoke_test:
7974 $(E) "[CLEAN] Cleaning chttp2_socket_pair_cancel_after_invoke_test files"
7975 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_OBJS)
7976 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08007977 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_cancel_after_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007978
7979
7980CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_SRC = \
7981
ctiller09cb6d52014-12-19 17:38:22 -08007982CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_SRC))))
7983CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007984
nnoble69ac39f2014-12-12 15:43:38 -08007985ifeq ($(NO_SECURE),true)
7986
ctiller09cb6d52014-12-19 17:38:22 -08007987bins/$(TGTDIR)/chttp2_socket_pair_cancel_before_invoke_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08007988
7989else
7990
ctiller09cb6d52014-12-19 17:38:22 -08007991bins/$(TGTDIR)/chttp2_socket_pair_cancel_before_invoke_test: $(CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007992 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08007993 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08007994 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_cancel_before_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007995
nnoble69ac39f2014-12-12 15:43:38 -08007996endif
7997
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08007998deps_chttp2_socket_pair_cancel_before_invoke_test: $(CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_DEPS)
7999
nnoble69ac39f2014-12-12 15:43:38 -08008000ifneq ($(NO_SECURE),true)
8001ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008002-include $(CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_DEPS)
8003endif
nnoble69ac39f2014-12-12 15:43:38 -08008004endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008005
8006clean_chttp2_socket_pair_cancel_before_invoke_test:
8007 $(E) "[CLEAN] Cleaning chttp2_socket_pair_cancel_before_invoke_test files"
8008 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_OBJS)
8009 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008010 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_cancel_before_invoke_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008011
8012
8013CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_SRC = \
8014
ctiller09cb6d52014-12-19 17:38:22 -08008015CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_SRC))))
8016CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008017
nnoble69ac39f2014-12-12 15:43:38 -08008018ifeq ($(NO_SECURE),true)
8019
ctiller09cb6d52014-12-19 17:38:22 -08008020bins/$(TGTDIR)/chttp2_socket_pair_cancel_in_a_vacuum_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008021
8022else
8023
ctiller09cb6d52014-12-19 17:38:22 -08008024bins/$(TGTDIR)/chttp2_socket_pair_cancel_in_a_vacuum_test: $(CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008025 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008026 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008027 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_cancel_in_a_vacuum_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008028
nnoble69ac39f2014-12-12 15:43:38 -08008029endif
8030
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008031deps_chttp2_socket_pair_cancel_in_a_vacuum_test: $(CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_DEPS)
8032
nnoble69ac39f2014-12-12 15:43:38 -08008033ifneq ($(NO_SECURE),true)
8034ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008035-include $(CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_DEPS)
8036endif
nnoble69ac39f2014-12-12 15:43:38 -08008037endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008038
8039clean_chttp2_socket_pair_cancel_in_a_vacuum_test:
8040 $(E) "[CLEAN] Cleaning chttp2_socket_pair_cancel_in_a_vacuum_test files"
8041 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_OBJS)
8042 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008043 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_cancel_in_a_vacuum_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008044
8045
ctillerc6d61c42014-12-15 14:52:08 -08008046CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_SRC = \
8047
ctiller09cb6d52014-12-19 17:38:22 -08008048CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_SRC))))
8049CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_SRC))))
ctillerc6d61c42014-12-15 14:52:08 -08008050
8051ifeq ($(NO_SECURE),true)
8052
ctiller09cb6d52014-12-19 17:38:22 -08008053bins/$(TGTDIR)/chttp2_socket_pair_disappearing_server_test: openssl_dep_error
ctillerc6d61c42014-12-15 14:52:08 -08008054
8055else
8056
ctiller09cb6d52014-12-19 17:38:22 -08008057bins/$(TGTDIR)/chttp2_socket_pair_disappearing_server_test: $(CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_disappearing_server.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctillerc6d61c42014-12-15 14:52:08 -08008058 $(E) "[LD] Linking $@"
8059 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008060 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_disappearing_server.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_disappearing_server_test
ctillerc6d61c42014-12-15 14:52:08 -08008061
8062endif
8063
8064deps_chttp2_socket_pair_disappearing_server_test: $(CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_DEPS)
8065
8066ifneq ($(NO_SECURE),true)
8067ifneq ($(NO_DEPS),true)
8068-include $(CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_DEPS)
8069endif
8070endif
8071
8072clean_chttp2_socket_pair_disappearing_server_test:
8073 $(E) "[CLEAN] Cleaning chttp2_socket_pair_disappearing_server_test files"
8074 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_OBJS)
8075 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008076 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_disappearing_server_test
ctillerc6d61c42014-12-15 14:52:08 -08008077
8078
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008079CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC = \
8080
ctiller09cb6d52014-12-19 17:38:22 -08008081CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC))))
8082CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008083
nnoble69ac39f2014-12-12 15:43:38 -08008084ifeq ($(NO_SECURE),true)
8085
ctiller09cb6d52014-12-19 17:38:22 -08008086bins/$(TGTDIR)/chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008087
8088else
8089
ctiller09cb6d52014-12-19 17:38:22 -08008090bins/$(TGTDIR)/chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008091 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008092 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008093 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008094
nnoble69ac39f2014-12-12 15:43:38 -08008095endif
8096
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008097deps_chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
8098
nnoble69ac39f2014-12-12 15:43:38 -08008099ifneq ($(NO_SECURE),true)
8100ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008101-include $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
8102endif
nnoble69ac39f2014-12-12 15:43:38 -08008103endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008104
8105clean_chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test:
8106 $(E) "[CLEAN] Cleaning chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test files"
8107 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS)
8108 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008109 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008110
8111
8112CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC = \
8113
ctiller09cb6d52014-12-19 17:38:22 -08008114CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC))))
8115CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008116
nnoble69ac39f2014-12-12 15:43:38 -08008117ifeq ($(NO_SECURE),true)
8118
ctiller09cb6d52014-12-19 17:38:22 -08008119bins/$(TGTDIR)/chttp2_socket_pair_early_server_shutdown_finishes_tags_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008120
8121else
8122
ctiller09cb6d52014-12-19 17:38:22 -08008123bins/$(TGTDIR)/chttp2_socket_pair_early_server_shutdown_finishes_tags_test: $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008124 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008125 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008126 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_early_server_shutdown_finishes_tags_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008127
nnoble69ac39f2014-12-12 15:43:38 -08008128endif
8129
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008130deps_chttp2_socket_pair_early_server_shutdown_finishes_tags_test: $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
8131
nnoble69ac39f2014-12-12 15:43:38 -08008132ifneq ($(NO_SECURE),true)
8133ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008134-include $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
8135endif
nnoble69ac39f2014-12-12 15:43:38 -08008136endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008137
8138clean_chttp2_socket_pair_early_server_shutdown_finishes_tags_test:
8139 $(E) "[CLEAN] Cleaning chttp2_socket_pair_early_server_shutdown_finishes_tags_test files"
8140 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS)
8141 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008142 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_early_server_shutdown_finishes_tags_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008143
8144
8145CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_SRC = \
8146
ctiller09cb6d52014-12-19 17:38:22 -08008147CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_SRC))))
8148CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008149
nnoble69ac39f2014-12-12 15:43:38 -08008150ifeq ($(NO_SECURE),true)
8151
ctiller09cb6d52014-12-19 17:38:22 -08008152bins/$(TGTDIR)/chttp2_socket_pair_invoke_large_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008153
8154else
8155
ctiller09cb6d52014-12-19 17:38:22 -08008156bins/$(TGTDIR)/chttp2_socket_pair_invoke_large_request_test: $(CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_invoke_large_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008157 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008158 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008159 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_invoke_large_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_invoke_large_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008160
nnoble69ac39f2014-12-12 15:43:38 -08008161endif
8162
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008163deps_chttp2_socket_pair_invoke_large_request_test: $(CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_DEPS)
8164
nnoble69ac39f2014-12-12 15:43:38 -08008165ifneq ($(NO_SECURE),true)
8166ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008167-include $(CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_DEPS)
8168endif
nnoble69ac39f2014-12-12 15:43:38 -08008169endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008170
8171clean_chttp2_socket_pair_invoke_large_request_test:
8172 $(E) "[CLEAN] Cleaning chttp2_socket_pair_invoke_large_request_test files"
8173 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_OBJS)
8174 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008175 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_invoke_large_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008176
8177
8178CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_SRC = \
8179
ctiller09cb6d52014-12-19 17:38:22 -08008180CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_SRC))))
8181CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008182
nnoble69ac39f2014-12-12 15:43:38 -08008183ifeq ($(NO_SECURE),true)
8184
ctiller09cb6d52014-12-19 17:38:22 -08008185bins/$(TGTDIR)/chttp2_socket_pair_max_concurrent_streams_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008186
8187else
8188
ctiller09cb6d52014-12-19 17:38:22 -08008189bins/$(TGTDIR)/chttp2_socket_pair_max_concurrent_streams_test: $(CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008190 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008191 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008192 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_max_concurrent_streams_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008193
nnoble69ac39f2014-12-12 15:43:38 -08008194endif
8195
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008196deps_chttp2_socket_pair_max_concurrent_streams_test: $(CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_DEPS)
8197
nnoble69ac39f2014-12-12 15:43:38 -08008198ifneq ($(NO_SECURE),true)
8199ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008200-include $(CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_DEPS)
8201endif
nnoble69ac39f2014-12-12 15:43:38 -08008202endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008203
8204clean_chttp2_socket_pair_max_concurrent_streams_test:
8205 $(E) "[CLEAN] Cleaning chttp2_socket_pair_max_concurrent_streams_test files"
8206 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_OBJS)
8207 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008208 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_max_concurrent_streams_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008209
8210
8211CHTTP2_SOCKET_PAIR_NO_OP_TEST_SRC = \
8212
ctiller09cb6d52014-12-19 17:38:22 -08008213CHTTP2_SOCKET_PAIR_NO_OP_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_NO_OP_TEST_SRC))))
8214CHTTP2_SOCKET_PAIR_NO_OP_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_NO_OP_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008215
nnoble69ac39f2014-12-12 15:43:38 -08008216ifeq ($(NO_SECURE),true)
8217
ctiller09cb6d52014-12-19 17:38:22 -08008218bins/$(TGTDIR)/chttp2_socket_pair_no_op_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008219
8220else
8221
ctiller09cb6d52014-12-19 17:38:22 -08008222bins/$(TGTDIR)/chttp2_socket_pair_no_op_test: $(CHTTP2_SOCKET_PAIR_NO_OP_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_no_op.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008223 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008224 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008225 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_NO_OP_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_no_op.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_no_op_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008226
nnoble69ac39f2014-12-12 15:43:38 -08008227endif
8228
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008229deps_chttp2_socket_pair_no_op_test: $(CHTTP2_SOCKET_PAIR_NO_OP_TEST_DEPS)
8230
nnoble69ac39f2014-12-12 15:43:38 -08008231ifneq ($(NO_SECURE),true)
8232ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008233-include $(CHTTP2_SOCKET_PAIR_NO_OP_TEST_DEPS)
8234endif
nnoble69ac39f2014-12-12 15:43:38 -08008235endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008236
8237clean_chttp2_socket_pair_no_op_test:
8238 $(E) "[CLEAN] Cleaning chttp2_socket_pair_no_op_test files"
8239 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_NO_OP_TEST_OBJS)
8240 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_NO_OP_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008241 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_no_op_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008242
8243
8244CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_SRC = \
8245
ctiller09cb6d52014-12-19 17:38:22 -08008246CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_SRC))))
8247CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008248
nnoble69ac39f2014-12-12 15:43:38 -08008249ifeq ($(NO_SECURE),true)
8250
ctiller09cb6d52014-12-19 17:38:22 -08008251bins/$(TGTDIR)/chttp2_socket_pair_ping_pong_streaming_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008252
8253else
8254
ctiller09cb6d52014-12-19 17:38:22 -08008255bins/$(TGTDIR)/chttp2_socket_pair_ping_pong_streaming_test: $(CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008256 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008257 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008258 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_ping_pong_streaming_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008259
nnoble69ac39f2014-12-12 15:43:38 -08008260endif
8261
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008262deps_chttp2_socket_pair_ping_pong_streaming_test: $(CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_DEPS)
8263
nnoble69ac39f2014-12-12 15:43:38 -08008264ifneq ($(NO_SECURE),true)
8265ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008266-include $(CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_DEPS)
8267endif
nnoble69ac39f2014-12-12 15:43:38 -08008268endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008269
8270clean_chttp2_socket_pair_ping_pong_streaming_test:
8271 $(E) "[CLEAN] Cleaning chttp2_socket_pair_ping_pong_streaming_test files"
8272 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_OBJS)
8273 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008274 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_ping_pong_streaming_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008275
8276
ctiller33023c42014-12-12 16:28:33 -08008277CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC = \
8278
ctiller09cb6d52014-12-19 17:38:22 -08008279CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC))))
8280CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC))))
ctiller33023c42014-12-12 16:28:33 -08008281
8282ifeq ($(NO_SECURE),true)
8283
ctiller09cb6d52014-12-19 17:38:22 -08008284bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test: openssl_dep_error
ctiller33023c42014-12-12 16:28:33 -08008285
8286else
8287
ctiller09cb6d52014-12-19 17:38:22 -08008288bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller33023c42014-12-12 16:28:33 -08008289 $(E) "[LD] Linking $@"
8290 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008291 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test
ctiller33023c42014-12-12 16:28:33 -08008292
8293endif
8294
8295deps_chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
8296
8297ifneq ($(NO_SECURE),true)
8298ifneq ($(NO_DEPS),true)
8299-include $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
8300endif
8301endif
8302
8303clean_chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test:
8304 $(E) "[CLEAN] Cleaning chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test files"
8305 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS)
8306 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008307 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test
ctiller33023c42014-12-12 16:28:33 -08008308
8309
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008310CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC = \
8311
ctiller09cb6d52014-12-19 17:38:22 -08008312CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC))))
8313CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008314
nnoble69ac39f2014-12-12 15:43:38 -08008315ifeq ($(NO_SECURE),true)
8316
ctiller09cb6d52014-12-19 17:38:22 -08008317bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_metadata_and_payload_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008318
8319else
8320
ctiller09cb6d52014-12-19 17:38:22 -08008321bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008322 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008323 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008324 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_metadata_and_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008325
nnoble69ac39f2014-12-12 15:43:38 -08008326endif
8327
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008328deps_chttp2_socket_pair_request_response_with_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
8329
nnoble69ac39f2014-12-12 15:43:38 -08008330ifneq ($(NO_SECURE),true)
8331ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008332-include $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
8333endif
nnoble69ac39f2014-12-12 15:43:38 -08008334endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008335
8336clean_chttp2_socket_pair_request_response_with_metadata_and_payload_test:
8337 $(E) "[CLEAN] Cleaning chttp2_socket_pair_request_response_with_metadata_and_payload_test files"
8338 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS)
8339 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008340 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_metadata_and_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008341
8342
8343CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC = \
8344
ctiller09cb6d52014-12-19 17:38:22 -08008345CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC))))
8346CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008347
nnoble69ac39f2014-12-12 15:43:38 -08008348ifeq ($(NO_SECURE),true)
8349
ctiller09cb6d52014-12-19 17:38:22 -08008350bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_payload_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008351
8352else
8353
ctiller09cb6d52014-12-19 17:38:22 -08008354bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008355 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008356 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008357 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008358
nnoble69ac39f2014-12-12 15:43:38 -08008359endif
8360
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008361deps_chttp2_socket_pair_request_response_with_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
8362
nnoble69ac39f2014-12-12 15:43:38 -08008363ifneq ($(NO_SECURE),true)
8364ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008365-include $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
8366endif
nnoble69ac39f2014-12-12 15:43:38 -08008367endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008368
8369clean_chttp2_socket_pair_request_response_with_payload_test:
8370 $(E) "[CLEAN] Cleaning chttp2_socket_pair_request_response_with_payload_test files"
8371 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS)
8372 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008373 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_payload_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008374
8375
ctiller2845cad2014-12-15 15:14:12 -08008376CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC = \
8377
ctiller09cb6d52014-12-19 17:38:22 -08008378CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC))))
8379CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC))))
ctiller2845cad2014-12-15 15:14:12 -08008380
8381ifeq ($(NO_SECURE),true)
8382
ctiller09cb6d52014-12-19 17:38:22 -08008383bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test: openssl_dep_error
ctiller2845cad2014-12-15 15:14:12 -08008384
8385else
8386
ctiller09cb6d52014-12-19 17:38:22 -08008387bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller2845cad2014-12-15 15:14:12 -08008388 $(E) "[LD] Linking $@"
8389 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008390 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test
ctiller2845cad2014-12-15 15:14:12 -08008391
8392endif
8393
8394deps_chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
8395
8396ifneq ($(NO_SECURE),true)
8397ifneq ($(NO_DEPS),true)
8398-include $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
8399endif
8400endif
8401
8402clean_chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test:
8403 $(E) "[CLEAN] Cleaning chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test files"
8404 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS)
8405 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008406 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test
ctiller2845cad2014-12-15 15:14:12 -08008407
8408
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008409CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_SRC = \
8410
ctiller09cb6d52014-12-19 17:38:22 -08008411CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_SRC))))
8412CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008413
nnoble69ac39f2014-12-12 15:43:38 -08008414ifeq ($(NO_SECURE),true)
8415
ctiller09cb6d52014-12-19 17:38:22 -08008416bins/$(TGTDIR)/chttp2_socket_pair_simple_delayed_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008417
8418else
8419
ctiller09cb6d52014-12-19 17:38:22 -08008420bins/$(TGTDIR)/chttp2_socket_pair_simple_delayed_request_test: $(CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008421 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008422 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008423 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_simple_delayed_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008424
nnoble69ac39f2014-12-12 15:43:38 -08008425endif
8426
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008427deps_chttp2_socket_pair_simple_delayed_request_test: $(CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
8428
nnoble69ac39f2014-12-12 15:43:38 -08008429ifneq ($(NO_SECURE),true)
8430ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008431-include $(CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
8432endif
nnoble69ac39f2014-12-12 15:43:38 -08008433endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008434
8435clean_chttp2_socket_pair_simple_delayed_request_test:
8436 $(E) "[CLEAN] Cleaning chttp2_socket_pair_simple_delayed_request_test files"
8437 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_OBJS)
8438 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008439 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_simple_delayed_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008440
8441
8442CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_SRC = \
8443
ctiller09cb6d52014-12-19 17:38:22 -08008444CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_SRC))))
8445CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008446
nnoble69ac39f2014-12-12 15:43:38 -08008447ifeq ($(NO_SECURE),true)
8448
ctiller09cb6d52014-12-19 17:38:22 -08008449bins/$(TGTDIR)/chttp2_socket_pair_simple_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008450
8451else
8452
ctiller09cb6d52014-12-19 17:38:22 -08008453bins/$(TGTDIR)/chttp2_socket_pair_simple_request_test: $(CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_simple_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008454 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008455 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008456 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_simple_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_simple_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008457
nnoble69ac39f2014-12-12 15:43:38 -08008458endif
8459
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008460deps_chttp2_socket_pair_simple_request_test: $(CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_DEPS)
8461
nnoble69ac39f2014-12-12 15:43:38 -08008462ifneq ($(NO_SECURE),true)
8463ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008464-include $(CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_DEPS)
8465endif
nnoble69ac39f2014-12-12 15:43:38 -08008466endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008467
8468clean_chttp2_socket_pair_simple_request_test:
8469 $(E) "[CLEAN] Cleaning chttp2_socket_pair_simple_request_test files"
8470 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_OBJS)
8471 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008472 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_simple_request_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008473
8474
nathaniel52878172014-12-09 10:17:19 -08008475CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_SRC = \
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008476
ctiller09cb6d52014-12-19 17:38:22 -08008477CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_SRC))))
8478CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008479
nnoble69ac39f2014-12-12 15:43:38 -08008480ifeq ($(NO_SECURE),true)
8481
ctiller09cb6d52014-12-19 17:38:22 -08008482bins/$(TGTDIR)/chttp2_socket_pair_thread_stress_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008483
8484else
8485
ctiller09cb6d52014-12-19 17:38:22 -08008486bins/$(TGTDIR)/chttp2_socket_pair_thread_stress_test: $(CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_thread_stress.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008487 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008488 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008489 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_thread_stress.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_thread_stress_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008490
nnoble69ac39f2014-12-12 15:43:38 -08008491endif
8492
nathaniel52878172014-12-09 10:17:19 -08008493deps_chttp2_socket_pair_thread_stress_test: $(CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008494
nnoble69ac39f2014-12-12 15:43:38 -08008495ifneq ($(NO_SECURE),true)
8496ifneq ($(NO_DEPS),true)
nathaniel52878172014-12-09 10:17:19 -08008497-include $(CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_DEPS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008498endif
nnoble69ac39f2014-12-12 15:43:38 -08008499endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008500
nathaniel52878172014-12-09 10:17:19 -08008501clean_chttp2_socket_pair_thread_stress_test:
8502 $(E) "[CLEAN] Cleaning chttp2_socket_pair_thread_stress_test files"
8503 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_OBJS)
8504 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008505 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_thread_stress_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008506
8507
8508CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC = \
8509
ctiller09cb6d52014-12-19 17:38:22 -08008510CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC))))
8511CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008512
nnoble69ac39f2014-12-12 15:43:38 -08008513ifeq ($(NO_SECURE),true)
8514
ctiller09cb6d52014-12-19 17:38:22 -08008515bins/$(TGTDIR)/chttp2_socket_pair_writes_done_hangs_with_pending_read_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008516
8517else
8518
ctiller09cb6d52014-12-19 17:38:22 -08008519bins/$(TGTDIR)/chttp2_socket_pair_writes_done_hangs_with_pending_read_test: $(CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008520 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008521 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008522 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair.a libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_writes_done_hangs_with_pending_read_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008523
nnoble69ac39f2014-12-12 15:43:38 -08008524endif
8525
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008526deps_chttp2_socket_pair_writes_done_hangs_with_pending_read_test: $(CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
8527
nnoble69ac39f2014-12-12 15:43:38 -08008528ifneq ($(NO_SECURE),true)
8529ifneq ($(NO_DEPS),true)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008530-include $(CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
8531endif
nnoble69ac39f2014-12-12 15:43:38 -08008532endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008533
8534clean_chttp2_socket_pair_writes_done_hangs_with_pending_read_test:
8535 $(E) "[CLEAN] Cleaning chttp2_socket_pair_writes_done_hangs_with_pending_read_test files"
8536 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS)
8537 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008538 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_writes_done_hangs_with_pending_read_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008539
8540
nnoble0c475f02014-12-05 15:37:39 -08008541CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_SRC = \
8542
ctiller09cb6d52014-12-19 17:38:22 -08008543CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_SRC))))
8544CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08008545
nnoble69ac39f2014-12-12 15:43:38 -08008546ifeq ($(NO_SECURE),true)
8547
ctiller09cb6d52014-12-19 17:38:22 -08008548bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008549
8550else
8551
ctiller09cb6d52014-12-19 17:38:22 -08008552bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08008553 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008554 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008555 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test
nnoble0c475f02014-12-05 15:37:39 -08008556
nnoble69ac39f2014-12-12 15:43:38 -08008557endif
8558
nnoble0c475f02014-12-05 15:37:39 -08008559deps_chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_DEPS)
8560
nnoble69ac39f2014-12-12 15:43:38 -08008561ifneq ($(NO_SECURE),true)
8562ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08008563-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_DEPS)
8564endif
nnoble69ac39f2014-12-12 15:43:38 -08008565endif
nnoble0c475f02014-12-05 15:37:39 -08008566
8567clean_chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test:
8568 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test files"
8569 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_OBJS)
8570 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008571 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test
nnoble0c475f02014-12-05 15:37:39 -08008572
8573
8574CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC = \
8575
ctiller09cb6d52014-12-19 17:38:22 -08008576CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC))))
8577CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08008578
nnoble69ac39f2014-12-12 15:43:38 -08008579ifeq ($(NO_SECURE),true)
8580
ctiller09cb6d52014-12-19 17:38:22 -08008581bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008582
8583else
8584
ctiller09cb6d52014-12-19 17:38:22 -08008585bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08008586 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008587 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008588 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test
nnoble0c475f02014-12-05 15:37:39 -08008589
nnoble69ac39f2014-12-12 15:43:38 -08008590endif
8591
nnoble0c475f02014-12-05 15:37:39 -08008592deps_chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
8593
nnoble69ac39f2014-12-12 15:43:38 -08008594ifneq ($(NO_SECURE),true)
8595ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08008596-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
8597endif
nnoble69ac39f2014-12-12 15:43:38 -08008598endif
nnoble0c475f02014-12-05 15:37:39 -08008599
8600clean_chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test:
8601 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test files"
8602 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS)
8603 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008604 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test
nnoble0c475f02014-12-05 15:37:39 -08008605
8606
8607CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_SRC = \
8608
ctiller09cb6d52014-12-19 17:38:22 -08008609CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_SRC))))
8610CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08008611
nnoble69ac39f2014-12-12 15:43:38 -08008612ifeq ($(NO_SECURE),true)
8613
ctiller09cb6d52014-12-19 17:38:22 -08008614bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008615
8616else
8617
ctiller09cb6d52014-12-19 17:38:22 -08008618bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08008619 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008620 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008621 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_cancel_after_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test
nnoble0c475f02014-12-05 15:37:39 -08008622
nnoble69ac39f2014-12-12 15:43:38 -08008623endif
8624
nnoble0c475f02014-12-05 15:37:39 -08008625deps_chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_DEPS)
8626
nnoble69ac39f2014-12-12 15:43:38 -08008627ifneq ($(NO_SECURE),true)
8628ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08008629-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_DEPS)
8630endif
nnoble69ac39f2014-12-12 15:43:38 -08008631endif
nnoble0c475f02014-12-05 15:37:39 -08008632
8633clean_chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test:
8634 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test files"
8635 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_OBJS)
8636 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008637 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test
nnoble0c475f02014-12-05 15:37:39 -08008638
8639
8640CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_SRC = \
8641
ctiller09cb6d52014-12-19 17:38:22 -08008642CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_SRC))))
8643CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08008644
nnoble69ac39f2014-12-12 15:43:38 -08008645ifeq ($(NO_SECURE),true)
8646
ctiller09cb6d52014-12-19 17:38:22 -08008647bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008648
8649else
8650
ctiller09cb6d52014-12-19 17:38:22 -08008651bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08008652 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008653 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008654 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_cancel_before_invoke.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test
nnoble0c475f02014-12-05 15:37:39 -08008655
nnoble69ac39f2014-12-12 15:43:38 -08008656endif
8657
nnoble0c475f02014-12-05 15:37:39 -08008658deps_chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_DEPS)
8659
nnoble69ac39f2014-12-12 15:43:38 -08008660ifneq ($(NO_SECURE),true)
8661ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08008662-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_DEPS)
8663endif
nnoble69ac39f2014-12-12 15:43:38 -08008664endif
nnoble0c475f02014-12-05 15:37:39 -08008665
8666clean_chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test:
8667 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test files"
8668 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_OBJS)
8669 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008670 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test
nnoble0c475f02014-12-05 15:37:39 -08008671
8672
8673CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_SRC = \
8674
ctiller09cb6d52014-12-19 17:38:22 -08008675CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_SRC))))
8676CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08008677
nnoble69ac39f2014-12-12 15:43:38 -08008678ifeq ($(NO_SECURE),true)
8679
ctiller09cb6d52014-12-19 17:38:22 -08008680bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008681
8682else
8683
ctiller09cb6d52014-12-19 17:38:22 -08008684bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08008685 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008686 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008687 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_cancel_in_a_vacuum.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test
nnoble0c475f02014-12-05 15:37:39 -08008688
nnoble69ac39f2014-12-12 15:43:38 -08008689endif
8690
nnoble0c475f02014-12-05 15:37:39 -08008691deps_chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_DEPS)
8692
nnoble69ac39f2014-12-12 15:43:38 -08008693ifneq ($(NO_SECURE),true)
8694ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08008695-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_DEPS)
8696endif
nnoble69ac39f2014-12-12 15:43:38 -08008697endif
nnoble0c475f02014-12-05 15:37:39 -08008698
8699clean_chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test:
8700 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test files"
8701 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_OBJS)
8702 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008703 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test
nnoble0c475f02014-12-05 15:37:39 -08008704
8705
ctillerc6d61c42014-12-15 14:52:08 -08008706CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_SRC = \
8707
ctiller09cb6d52014-12-19 17:38:22 -08008708CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_SRC))))
8709CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_SRC))))
ctillerc6d61c42014-12-15 14:52:08 -08008710
8711ifeq ($(NO_SECURE),true)
8712
ctiller09cb6d52014-12-19 17:38:22 -08008713bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test: openssl_dep_error
ctillerc6d61c42014-12-15 14:52:08 -08008714
8715else
8716
ctiller09cb6d52014-12-19 17:38:22 -08008717bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_disappearing_server.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctillerc6d61c42014-12-15 14:52:08 -08008718 $(E) "[LD] Linking $@"
8719 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008720 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_disappearing_server.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test
ctillerc6d61c42014-12-15 14:52:08 -08008721
8722endif
8723
8724deps_chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_DEPS)
8725
8726ifneq ($(NO_SECURE),true)
8727ifneq ($(NO_DEPS),true)
8728-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_DEPS)
8729endif
8730endif
8731
8732clean_chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test:
8733 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test files"
8734 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_OBJS)
8735 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008736 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test
ctillerc6d61c42014-12-15 14:52:08 -08008737
8738
nnoble0c475f02014-12-05 15:37:39 -08008739CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC = \
8740
ctiller09cb6d52014-12-19 17:38:22 -08008741CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC))))
8742CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08008743
nnoble69ac39f2014-12-12 15:43:38 -08008744ifeq ($(NO_SECURE),true)
8745
ctiller09cb6d52014-12-19 17:38:22 -08008746bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008747
8748else
8749
ctiller09cb6d52014-12-19 17:38:22 -08008750bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08008751 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008752 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008753 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test
nnoble0c475f02014-12-05 15:37:39 -08008754
nnoble69ac39f2014-12-12 15:43:38 -08008755endif
8756
nnoble0c475f02014-12-05 15:37:39 -08008757deps_chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
8758
nnoble69ac39f2014-12-12 15:43:38 -08008759ifneq ($(NO_SECURE),true)
8760ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08008761-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
8762endif
nnoble69ac39f2014-12-12 15:43:38 -08008763endif
nnoble0c475f02014-12-05 15:37:39 -08008764
8765clean_chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test:
8766 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test files"
8767 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS)
8768 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008769 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test
nnoble0c475f02014-12-05 15:37:39 -08008770
8771
8772CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC = \
8773
ctiller09cb6d52014-12-19 17:38:22 -08008774CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC))))
8775CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08008776
nnoble69ac39f2014-12-12 15:43:38 -08008777ifeq ($(NO_SECURE),true)
8778
ctiller09cb6d52014-12-19 17:38:22 -08008779bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008780
8781else
8782
ctiller09cb6d52014-12-19 17:38:22 -08008783bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08008784 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008785 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008786 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test
nnoble0c475f02014-12-05 15:37:39 -08008787
nnoble69ac39f2014-12-12 15:43:38 -08008788endif
8789
nnoble0c475f02014-12-05 15:37:39 -08008790deps_chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
8791
nnoble69ac39f2014-12-12 15:43:38 -08008792ifneq ($(NO_SECURE),true)
8793ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08008794-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
8795endif
nnoble69ac39f2014-12-12 15:43:38 -08008796endif
nnoble0c475f02014-12-05 15:37:39 -08008797
8798clean_chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test:
8799 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test files"
8800 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS)
8801 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008802 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test
nnoble0c475f02014-12-05 15:37:39 -08008803
8804
8805CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_SRC = \
8806
ctiller09cb6d52014-12-19 17:38:22 -08008807CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_SRC))))
8808CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08008809
nnoble69ac39f2014-12-12 15:43:38 -08008810ifeq ($(NO_SECURE),true)
8811
ctiller09cb6d52014-12-19 17:38:22 -08008812bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008813
8814else
8815
ctiller09cb6d52014-12-19 17:38:22 -08008816bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_invoke_large_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08008817 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008818 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008819 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_invoke_large_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test
nnoble0c475f02014-12-05 15:37:39 -08008820
nnoble69ac39f2014-12-12 15:43:38 -08008821endif
8822
nnoble0c475f02014-12-05 15:37:39 -08008823deps_chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_DEPS)
8824
nnoble69ac39f2014-12-12 15:43:38 -08008825ifneq ($(NO_SECURE),true)
8826ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08008827-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_DEPS)
8828endif
nnoble69ac39f2014-12-12 15:43:38 -08008829endif
nnoble0c475f02014-12-05 15:37:39 -08008830
8831clean_chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test:
8832 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test files"
8833 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_OBJS)
8834 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008835 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test
nnoble0c475f02014-12-05 15:37:39 -08008836
8837
8838CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_SRC = \
8839
ctiller09cb6d52014-12-19 17:38:22 -08008840CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_SRC))))
8841CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08008842
nnoble69ac39f2014-12-12 15:43:38 -08008843ifeq ($(NO_SECURE),true)
8844
ctiller09cb6d52014-12-19 17:38:22 -08008845bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008846
8847else
8848
ctiller09cb6d52014-12-19 17:38:22 -08008849bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08008850 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008851 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008852 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_max_concurrent_streams.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test
nnoble0c475f02014-12-05 15:37:39 -08008853
nnoble69ac39f2014-12-12 15:43:38 -08008854endif
8855
nnoble0c475f02014-12-05 15:37:39 -08008856deps_chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_DEPS)
8857
nnoble69ac39f2014-12-12 15:43:38 -08008858ifneq ($(NO_SECURE),true)
8859ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08008860-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_DEPS)
8861endif
nnoble69ac39f2014-12-12 15:43:38 -08008862endif
nnoble0c475f02014-12-05 15:37:39 -08008863
8864clean_chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test:
8865 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test files"
8866 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_OBJS)
8867 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008868 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test
nnoble0c475f02014-12-05 15:37:39 -08008869
8870
8871CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_SRC = \
8872
ctiller09cb6d52014-12-19 17:38:22 -08008873CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_SRC))))
8874CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08008875
nnoble69ac39f2014-12-12 15:43:38 -08008876ifeq ($(NO_SECURE),true)
8877
ctiller09cb6d52014-12-19 17:38:22 -08008878bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_no_op_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008879
8880else
8881
ctiller09cb6d52014-12-19 17:38:22 -08008882bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_no_op_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_no_op.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08008883 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008884 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008885 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_no_op.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_no_op_test
nnoble0c475f02014-12-05 15:37:39 -08008886
nnoble69ac39f2014-12-12 15:43:38 -08008887endif
8888
nnoble0c475f02014-12-05 15:37:39 -08008889deps_chttp2_socket_pair_one_byte_at_a_time_no_op_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_DEPS)
8890
nnoble69ac39f2014-12-12 15:43:38 -08008891ifneq ($(NO_SECURE),true)
8892ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08008893-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_DEPS)
8894endif
nnoble69ac39f2014-12-12 15:43:38 -08008895endif
nnoble0c475f02014-12-05 15:37:39 -08008896
8897clean_chttp2_socket_pair_one_byte_at_a_time_no_op_test:
8898 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_no_op_test files"
8899 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_OBJS)
8900 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008901 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_no_op_test
nnoble0c475f02014-12-05 15:37:39 -08008902
8903
8904CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_SRC = \
8905
ctiller09cb6d52014-12-19 17:38:22 -08008906CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_SRC))))
8907CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08008908
nnoble69ac39f2014-12-12 15:43:38 -08008909ifeq ($(NO_SECURE),true)
8910
ctiller09cb6d52014-12-19 17:38:22 -08008911bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008912
8913else
8914
ctiller09cb6d52014-12-19 17:38:22 -08008915bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08008916 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008917 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008918 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_ping_pong_streaming.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test
nnoble0c475f02014-12-05 15:37:39 -08008919
nnoble69ac39f2014-12-12 15:43:38 -08008920endif
8921
nnoble0c475f02014-12-05 15:37:39 -08008922deps_chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_DEPS)
8923
nnoble69ac39f2014-12-12 15:43:38 -08008924ifneq ($(NO_SECURE),true)
8925ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08008926-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_DEPS)
8927endif
nnoble69ac39f2014-12-12 15:43:38 -08008928endif
nnoble0c475f02014-12-05 15:37:39 -08008929
8930clean_chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test:
8931 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test files"
8932 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_OBJS)
8933 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008934 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test
nnoble0c475f02014-12-05 15:37:39 -08008935
8936
ctiller33023c42014-12-12 16:28:33 -08008937CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC = \
8938
ctiller09cb6d52014-12-19 17:38:22 -08008939CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC))))
8940CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC))))
ctiller33023c42014-12-12 16:28:33 -08008941
8942ifeq ($(NO_SECURE),true)
8943
ctiller09cb6d52014-12-19 17:38:22 -08008944bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test: openssl_dep_error
ctiller33023c42014-12-12 16:28:33 -08008945
8946else
8947
ctiller09cb6d52014-12-19 17:38:22 -08008948bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller33023c42014-12-12 16:28:33 -08008949 $(E) "[LD] Linking $@"
8950 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008951 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test
ctiller33023c42014-12-12 16:28:33 -08008952
8953endif
8954
8955deps_chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
8956
8957ifneq ($(NO_SECURE),true)
8958ifneq ($(NO_DEPS),true)
8959-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
8960endif
8961endif
8962
8963clean_chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test:
8964 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test files"
8965 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS)
8966 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08008967 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test
ctiller33023c42014-12-12 16:28:33 -08008968
8969
nnoble0c475f02014-12-05 15:37:39 -08008970CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC = \
8971
ctiller09cb6d52014-12-19 17:38:22 -08008972CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC))))
8973CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08008974
nnoble69ac39f2014-12-12 15:43:38 -08008975ifeq ($(NO_SECURE),true)
8976
ctiller09cb6d52014-12-19 17:38:22 -08008977bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08008978
8979else
8980
ctiller09cb6d52014-12-19 17:38:22 -08008981bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08008982 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08008983 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08008984 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test
nnoble0c475f02014-12-05 15:37:39 -08008985
nnoble69ac39f2014-12-12 15:43:38 -08008986endif
8987
nnoble0c475f02014-12-05 15:37:39 -08008988deps_chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
8989
nnoble69ac39f2014-12-12 15:43:38 -08008990ifneq ($(NO_SECURE),true)
8991ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08008992-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
8993endif
nnoble69ac39f2014-12-12 15:43:38 -08008994endif
nnoble0c475f02014-12-05 15:37:39 -08008995
8996clean_chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test:
8997 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test files"
8998 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS)
8999 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08009000 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test
nnoble0c475f02014-12-05 15:37:39 -08009001
9002
9003CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC = \
9004
ctiller09cb6d52014-12-19 17:38:22 -08009005CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC))))
9006CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08009007
nnoble69ac39f2014-12-12 15:43:38 -08009008ifeq ($(NO_SECURE),true)
9009
ctiller09cb6d52014-12-19 17:38:22 -08009010bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08009011
9012else
9013
ctiller09cb6d52014-12-19 17:38:22 -08009014bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08009015 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08009016 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08009017 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_request_response_with_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test
nnoble0c475f02014-12-05 15:37:39 -08009018
nnoble69ac39f2014-12-12 15:43:38 -08009019endif
9020
nnoble0c475f02014-12-05 15:37:39 -08009021deps_chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
9022
nnoble69ac39f2014-12-12 15:43:38 -08009023ifneq ($(NO_SECURE),true)
9024ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08009025-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
9026endif
nnoble69ac39f2014-12-12 15:43:38 -08009027endif
nnoble0c475f02014-12-05 15:37:39 -08009028
9029clean_chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test:
9030 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test files"
9031 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS)
9032 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08009033 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test
nnoble0c475f02014-12-05 15:37:39 -08009034
9035
ctiller2845cad2014-12-15 15:14:12 -08009036CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC = \
9037
ctiller09cb6d52014-12-19 17:38:22 -08009038CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC))))
9039CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC))))
ctiller2845cad2014-12-15 15:14:12 -08009040
9041ifeq ($(NO_SECURE),true)
9042
ctiller09cb6d52014-12-19 17:38:22 -08009043bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test: openssl_dep_error
ctiller2845cad2014-12-15 15:14:12 -08009044
9045else
9046
ctiller09cb6d52014-12-19 17:38:22 -08009047bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
ctiller2845cad2014-12-15 15:14:12 -08009048 $(E) "[LD] Linking $@"
9049 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08009050 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test
ctiller2845cad2014-12-15 15:14:12 -08009051
9052endif
9053
9054deps_chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
9055
9056ifneq ($(NO_SECURE),true)
9057ifneq ($(NO_DEPS),true)
9058-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
9059endif
9060endif
9061
9062clean_chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test:
9063 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test files"
9064 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS)
9065 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08009066 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test
ctiller2845cad2014-12-15 15:14:12 -08009067
9068
nnoble0c475f02014-12-05 15:37:39 -08009069CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_SRC = \
9070
ctiller09cb6d52014-12-19 17:38:22 -08009071CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_SRC))))
9072CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08009073
nnoble69ac39f2014-12-12 15:43:38 -08009074ifeq ($(NO_SECURE),true)
9075
ctiller09cb6d52014-12-19 17:38:22 -08009076bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08009077
9078else
9079
ctiller09cb6d52014-12-19 17:38:22 -08009080bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08009081 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08009082 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08009083 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_simple_delayed_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test
nnoble0c475f02014-12-05 15:37:39 -08009084
nnoble69ac39f2014-12-12 15:43:38 -08009085endif
9086
nnoble0c475f02014-12-05 15:37:39 -08009087deps_chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
9088
nnoble69ac39f2014-12-12 15:43:38 -08009089ifneq ($(NO_SECURE),true)
9090ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08009091-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
9092endif
nnoble69ac39f2014-12-12 15:43:38 -08009093endif
nnoble0c475f02014-12-05 15:37:39 -08009094
9095clean_chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test:
9096 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test files"
9097 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_OBJS)
9098 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08009099 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test
nnoble0c475f02014-12-05 15:37:39 -08009100
9101
9102CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_SRC = \
9103
ctiller09cb6d52014-12-19 17:38:22 -08009104CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_SRC))))
9105CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08009106
nnoble69ac39f2014-12-12 15:43:38 -08009107ifeq ($(NO_SECURE),true)
9108
ctiller09cb6d52014-12-19 17:38:22 -08009109bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_simple_request_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08009110
9111else
9112
ctiller09cb6d52014-12-19 17:38:22 -08009113bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_simple_request_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_simple_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08009114 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08009115 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08009116 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_simple_request.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_simple_request_test
nnoble0c475f02014-12-05 15:37:39 -08009117
nnoble69ac39f2014-12-12 15:43:38 -08009118endif
9119
nnoble0c475f02014-12-05 15:37:39 -08009120deps_chttp2_socket_pair_one_byte_at_a_time_simple_request_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_DEPS)
9121
nnoble69ac39f2014-12-12 15:43:38 -08009122ifneq ($(NO_SECURE),true)
9123ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08009124-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_DEPS)
9125endif
nnoble69ac39f2014-12-12 15:43:38 -08009126endif
nnoble0c475f02014-12-05 15:37:39 -08009127
9128clean_chttp2_socket_pair_one_byte_at_a_time_simple_request_test:
9129 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_simple_request_test files"
9130 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_OBJS)
9131 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08009132 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_simple_request_test
nnoble0c475f02014-12-05 15:37:39 -08009133
9134
nathaniel52878172014-12-09 10:17:19 -08009135CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_SRC = \
nnoble0c475f02014-12-05 15:37:39 -08009136
ctiller09cb6d52014-12-19 17:38:22 -08009137CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_SRC))))
9138CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08009139
nnoble69ac39f2014-12-12 15:43:38 -08009140ifeq ($(NO_SECURE),true)
9141
ctiller09cb6d52014-12-19 17:38:22 -08009142bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_thread_stress_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08009143
9144else
9145
ctiller09cb6d52014-12-19 17:38:22 -08009146bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_thread_stress_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_thread_stress.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08009147 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08009148 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08009149 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_thread_stress.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_thread_stress_test
nnoble0c475f02014-12-05 15:37:39 -08009150
nnoble69ac39f2014-12-12 15:43:38 -08009151endif
9152
nathaniel52878172014-12-09 10:17:19 -08009153deps_chttp2_socket_pair_one_byte_at_a_time_thread_stress_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_DEPS)
nnoble0c475f02014-12-05 15:37:39 -08009154
nnoble69ac39f2014-12-12 15:43:38 -08009155ifneq ($(NO_SECURE),true)
9156ifneq ($(NO_DEPS),true)
nathaniel52878172014-12-09 10:17:19 -08009157-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_DEPS)
nnoble0c475f02014-12-05 15:37:39 -08009158endif
nnoble69ac39f2014-12-12 15:43:38 -08009159endif
nnoble0c475f02014-12-05 15:37:39 -08009160
nathaniel52878172014-12-09 10:17:19 -08009161clean_chttp2_socket_pair_one_byte_at_a_time_thread_stress_test:
9162 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_thread_stress_test files"
9163 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_OBJS)
9164 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08009165 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_thread_stress_test
nnoble0c475f02014-12-05 15:37:39 -08009166
9167
9168CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC = \
9169
ctiller09cb6d52014-12-19 17:38:22 -08009170CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS = $(addprefix objs/$(TGTDIR)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC))))
9171CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS = $(addprefix deps/$(TGTDIR)/, $(addsuffix .dep, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC))))
nnoble0c475f02014-12-05 15:37:39 -08009172
nnoble69ac39f2014-12-12 15:43:38 -08009173ifeq ($(NO_SECURE),true)
9174
ctiller09cb6d52014-12-19 17:38:22 -08009175bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08009176
9177else
9178
ctiller09cb6d52014-12-19 17:38:22 -08009179bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a
nnoble0c475f02014-12-05 15:37:39 -08009180 $(E) "[LD] Linking $@"
nnoble85a49262014-12-08 18:14:03 -08009181 $(Q) mkdir -p `dirname $@`
nnoble5b7f32a2014-12-22 08:12:44 -08009182 $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(TGTDIR)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(TGTDIR)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(TGTDIR)/libend2end_certs.a libs/$(TGTDIR)/libgrpc_test_util.a libs/$(TGTDIR)/libgrpc.a libs/$(TGTDIR)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test
nnoble0c475f02014-12-05 15:37:39 -08009183
nnoble69ac39f2014-12-12 15:43:38 -08009184endif
9185
nnoble0c475f02014-12-05 15:37:39 -08009186deps_chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
9187
nnoble69ac39f2014-12-12 15:43:38 -08009188ifneq ($(NO_SECURE),true)
9189ifneq ($(NO_DEPS),true)
nnoble0c475f02014-12-05 15:37:39 -08009190-include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
9191endif
nnoble69ac39f2014-12-12 15:43:38 -08009192endif
nnoble0c475f02014-12-05 15:37:39 -08009193
9194clean_chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test:
9195 $(E) "[CLEAN] Cleaning chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test files"
9196 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS)
9197 $(Q) $(RM) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_DEPS)
ctiller09cb6d52014-12-19 17:38:22 -08009198 $(Q) $(RM) bins/$(TGTDIR)/chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08009199
9200
9201
9202
nnoble0c475f02014-12-05 15:37:39 -08009203
9204
nnoblec87b1c52015-01-05 17:15:18 -08009205.PHONY: all strip tools dep_error openssl_dep_error openssl_dep_message git_update stop buildtests buildtests_c buildtests_cxx test test_c test_cxx install install_c install_cxx install-headers install-headers_c install-headers_cxx install-shared install-shared_c install-shared_cxx install-static install-static_c install-static_cxx strip strip-shared strip-static strip_c strip-shared_c strip-static_c strip_cxx strip-shared_cxx strip-static_cxx clean dep_c dep_cxx bins_dep_c bins_dep_cxx deps_libgpr clean_libgpr deps_libgrpc clean_libgrpc deps_libgrpc_unsecure clean_libgrpc_unsecure deps_libgrpc_test_util clean_libgrpc_test_util deps_libgrpc++ clean_libgrpc++ deps_libgrpc++_test_util clean_libgrpc++_test_util deps_libend2end_fixture_chttp2_fake_security clean_libend2end_fixture_chttp2_fake_security deps_libend2end_fixture_chttp2_fullstack clean_libend2end_fixture_chttp2_fullstack deps_libend2end_fixture_chttp2_simple_ssl_fullstack clean_libend2end_fixture_chttp2_simple_ssl_fullstack deps_libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack clean_libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack deps_libend2end_fixture_chttp2_socket_pair clean_libend2end_fixture_chttp2_socket_pair deps_libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time clean_libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time deps_libend2end_test_cancel_after_accept clean_libend2end_test_cancel_after_accept deps_libend2end_test_cancel_after_accept_and_writes_closed clean_libend2end_test_cancel_after_accept_and_writes_closed deps_libend2end_test_cancel_after_invoke clean_libend2end_test_cancel_after_invoke deps_libend2end_test_cancel_before_invoke clean_libend2end_test_cancel_before_invoke deps_libend2end_test_cancel_in_a_vacuum clean_libend2end_test_cancel_in_a_vacuum deps_libend2end_test_disappearing_server clean_libend2end_test_disappearing_server deps_libend2end_test_early_server_shutdown_finishes_inflight_calls clean_libend2end_test_early_server_shutdown_finishes_inflight_calls deps_libend2end_test_early_server_shutdown_finishes_tags clean_libend2end_test_early_server_shutdown_finishes_tags deps_libend2end_test_invoke_large_request clean_libend2end_test_invoke_large_request deps_libend2end_test_max_concurrent_streams clean_libend2end_test_max_concurrent_streams deps_libend2end_test_no_op clean_libend2end_test_no_op deps_libend2end_test_ping_pong_streaming clean_libend2end_test_ping_pong_streaming deps_libend2end_test_request_response_with_binary_metadata_and_payload clean_libend2end_test_request_response_with_binary_metadata_and_payload deps_libend2end_test_request_response_with_metadata_and_payload clean_libend2end_test_request_response_with_metadata_and_payload deps_libend2end_test_request_response_with_payload clean_libend2end_test_request_response_with_payload deps_libend2end_test_request_response_with_trailing_metadata_and_payload clean_libend2end_test_request_response_with_trailing_metadata_and_payload deps_libend2end_test_simple_delayed_request clean_libend2end_test_simple_delayed_request deps_libend2end_test_simple_request clean_libend2end_test_simple_request deps_libend2end_test_thread_stress clean_libend2end_test_thread_stress deps_libend2end_test_writes_done_hangs_with_pending_read clean_libend2end_test_writes_done_hangs_with_pending_read deps_libend2end_certs clean_libend2end_certs deps_gen_hpack_tables clean_gen_hpack_tables deps_cpp_plugin clean_cpp_plugin deps_ruby_plugin clean_ruby_plugin deps_grpc_byte_buffer_reader_test clean_grpc_byte_buffer_reader_test deps_gpr_cancellable_test clean_gpr_cancellable_test deps_gpr_log_test clean_gpr_log_test deps_gpr_useful_test clean_gpr_useful_test deps_gpr_cmdline_test clean_gpr_cmdline_test deps_gpr_histogram_test clean_gpr_histogram_test deps_gpr_host_port_test clean_gpr_host_port_test deps_gpr_slice_buffer_test clean_gpr_slice_buffer_test deps_gpr_slice_test clean_gpr_slice_test deps_gpr_string_test clean_gpr_string_test deps_gpr_sync_test clean_gpr_sync_test deps_gpr_thd_test clean_gpr_thd_test deps_gpr_time_test clean_gpr_time_test deps_murmur_hash_test clean_murmur_hash_test deps_grpc_stream_op_test clean_grpc_stream_op_test deps_alpn_test clean_alpn_test deps_time_averaged_stats_test clean_time_averaged_stats_test deps_chttp2_stream_encoder_test clean_chttp2_stream_encoder_test deps_hpack_table_test clean_hpack_table_test deps_chttp2_stream_map_test clean_chttp2_stream_map_test deps_hpack_parser_test clean_hpack_parser_test deps_transport_metadata_test clean_transport_metadata_test deps_chttp2_status_conversion_test clean_chttp2_status_conversion_test deps_chttp2_transport_end2end_test clean_chttp2_transport_end2end_test deps_tcp_posix_test clean_tcp_posix_test deps_dualstack_socket_test clean_dualstack_socket_test deps_no_server_test clean_no_server_test deps_resolve_address_test clean_resolve_address_test deps_sockaddr_utils_test clean_sockaddr_utils_test deps_tcp_server_posix_test clean_tcp_server_posix_test deps_tcp_client_posix_test clean_tcp_client_posix_test deps_grpc_channel_stack_test clean_grpc_channel_stack_test deps_metadata_buffer_test clean_metadata_buffer_test deps_grpc_completion_queue_test clean_grpc_completion_queue_test deps_grpc_completion_queue_benchmark clean_grpc_completion_queue_benchmark deps_census_window_stats_test clean_census_window_stats_test deps_census_statistics_quick_test clean_census_statistics_quick_test deps_census_statistics_small_log_test clean_census_statistics_small_log_test deps_census_statistics_performance_test clean_census_statistics_performance_test deps_census_statistics_multiple_writers_test clean_census_statistics_multiple_writers_test deps_census_statistics_multiple_writers_circular_buffer_test clean_census_statistics_multiple_writers_circular_buffer_test deps_census_stub_test clean_census_stub_test deps_census_hash_table_test clean_census_hash_table_test deps_fling_server clean_fling_server deps_fling_client clean_fling_client deps_fling_test clean_fling_test deps_echo_server clean_echo_server deps_echo_client clean_echo_client deps_echo_test clean_echo_test deps_low_level_ping_pong_benchmark clean_low_level_ping_pong_benchmark deps_message_compress_test clean_message_compress_test deps_bin_encoder_test clean_bin_encoder_test deps_secure_endpoint_test clean_secure_endpoint_test deps_httpcli_format_request_test clean_httpcli_format_request_test deps_httpcli_parser_test clean_httpcli_parser_test deps_httpcli_test clean_httpcli_test deps_grpc_credentials_test clean_grpc_credentials_test deps_grpc_fetch_oauth2 clean_grpc_fetch_oauth2 deps_grpc_base64_test clean_grpc_base64_test deps_grpc_json_token_test clean_grpc_json_token_test deps_timeout_encoding_test clean_timeout_encoding_test deps_fd_posix_test clean_fd_posix_test deps_fling_stream_test clean_fling_stream_test deps_lame_client_test clean_lame_client_test deps_thread_pool_test clean_thread_pool_test deps_status_test clean_status_test deps_sync_client_async_server_test clean_sync_client_async_server_test deps_qps_client clean_qps_client deps_qps_server clean_qps_server deps_interop_server clean_interop_server deps_interop_client clean_interop_client deps_end2end_test clean_end2end_test deps_channel_arguments_test clean_channel_arguments_test deps_alarm_test clean_alarm_test deps_alarm_list_test clean_alarm_list_test deps_alarm_heap_test clean_alarm_heap_test deps_time_test clean_time_test deps_chttp2_fake_security_cancel_after_accept_test clean_chttp2_fake_security_cancel_after_accept_test deps_chttp2_fake_security_cancel_after_accept_and_writes_closed_test clean_chttp2_fake_security_cancel_after_accept_and_writes_closed_test deps_chttp2_fake_security_cancel_after_invoke_test clean_chttp2_fake_security_cancel_after_invoke_test deps_chttp2_fake_security_cancel_before_invoke_test clean_chttp2_fake_security_cancel_before_invoke_test deps_chttp2_fake_security_cancel_in_a_vacuum_test clean_chttp2_fake_security_cancel_in_a_vacuum_test deps_chttp2_fake_security_disappearing_server_test clean_chttp2_fake_security_disappearing_server_test deps_chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test clean_chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test deps_chttp2_fake_security_early_server_shutdown_finishes_tags_test clean_chttp2_fake_security_early_server_shutdown_finishes_tags_test deps_chttp2_fake_security_invoke_large_request_test clean_chttp2_fake_security_invoke_large_request_test deps_chttp2_fake_security_max_concurrent_streams_test clean_chttp2_fake_security_max_concurrent_streams_test deps_chttp2_fake_security_no_op_test clean_chttp2_fake_security_no_op_test deps_chttp2_fake_security_ping_pong_streaming_test clean_chttp2_fake_security_ping_pong_streaming_test deps_chttp2_fake_security_request_response_with_binary_metadata_and_payload_test clean_chttp2_fake_security_request_response_with_binary_metadata_and_payload_test deps_chttp2_fake_security_request_response_with_metadata_and_payload_test clean_chttp2_fake_security_request_response_with_metadata_and_payload_test deps_chttp2_fake_security_request_response_with_payload_test clean_chttp2_fake_security_request_response_with_payload_test deps_chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test clean_chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test deps_chttp2_fake_security_simple_delayed_request_test clean_chttp2_fake_security_simple_delayed_request_test deps_chttp2_fake_security_simple_request_test clean_chttp2_fake_security_simple_request_test deps_chttp2_fake_security_thread_stress_test clean_chttp2_fake_security_thread_stress_test deps_chttp2_fake_security_writes_done_hangs_with_pending_read_test clean_chttp2_fake_security_writes_done_hangs_with_pending_read_test deps_chttp2_fullstack_cancel_after_accept_test clean_chttp2_fullstack_cancel_after_accept_test deps_chttp2_fullstack_cancel_after_accept_and_writes_closed_test clean_chttp2_fullstack_cancel_after_accept_and_writes_closed_test deps_chttp2_fullstack_cancel_after_invoke_test clean_chttp2_fullstack_cancel_after_invoke_test deps_chttp2_fullstack_cancel_before_invoke_test clean_chttp2_fullstack_cancel_before_invoke_test deps_chttp2_fullstack_cancel_in_a_vacuum_test clean_chttp2_fullstack_cancel_in_a_vacuum_test deps_chttp2_fullstack_disappearing_server_test clean_chttp2_fullstack_disappearing_server_test deps_chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test clean_chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test deps_chttp2_fullstack_early_server_shutdown_finishes_tags_test clean_chttp2_fullstack_early_server_shutdown_finishes_tags_test deps_chttp2_fullstack_invoke_large_request_test clean_chttp2_fullstack_invoke_large_request_test deps_chttp2_fullstack_max_concurrent_streams_test clean_chttp2_fullstack_max_concurrent_streams_test deps_chttp2_fullstack_no_op_test clean_chttp2_fullstack_no_op_test deps_chttp2_fullstack_ping_pong_streaming_test clean_chttp2_fullstack_ping_pong_streaming_test deps_chttp2_fullstack_request_response_with_binary_metadata_and_payload_test clean_chttp2_fullstack_request_response_with_binary_metadata_and_payload_test deps_chttp2_fullstack_request_response_with_metadata_and_payload_test clean_chttp2_fullstack_request_response_with_metadata_and_payload_test deps_chttp2_fullstack_request_response_with_payload_test clean_chttp2_fullstack_request_response_with_payload_test deps_chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test clean_chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test deps_chttp2_fullstack_simple_delayed_request_test clean_chttp2_fullstack_simple_delayed_request_test deps_chttp2_fullstack_simple_request_test clean_chttp2_fullstack_simple_request_test deps_chttp2_fullstack_thread_stress_test clean_chttp2_fullstack_thread_stress_test deps_chttp2_fullstack_writes_done_hangs_with_pending_read_test clean_chttp2_fullstack_writes_done_hangs_with_pending_read_test deps_chttp2_simple_ssl_fullstack_cancel_after_accept_test clean_chttp2_simple_ssl_fullstack_cancel_after_accept_test deps_chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test clean_chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test deps_chttp2_simple_ssl_fullstack_cancel_after_invoke_test clean_chttp2_simple_ssl_fullstack_cancel_after_invoke_test deps_chttp2_simple_ssl_fullstack_cancel_before_invoke_test clean_chttp2_simple_ssl_fullstack_cancel_before_invoke_test deps_chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test clean_chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test deps_chttp2_simple_ssl_fullstack_disappearing_server_test clean_chttp2_simple_ssl_fullstack_disappearing_server_test deps_chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test clean_chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test deps_chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test clean_chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test deps_chttp2_simple_ssl_fullstack_invoke_large_request_test clean_chttp2_simple_ssl_fullstack_invoke_large_request_test deps_chttp2_simple_ssl_fullstack_max_concurrent_streams_test clean_chttp2_simple_ssl_fullstack_max_concurrent_streams_test deps_chttp2_simple_ssl_fullstack_no_op_test clean_chttp2_simple_ssl_fullstack_no_op_test deps_chttp2_simple_ssl_fullstack_ping_pong_streaming_test clean_chttp2_simple_ssl_fullstack_ping_pong_streaming_test deps_chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test clean_chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test deps_chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test clean_chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test deps_chttp2_simple_ssl_fullstack_request_response_with_payload_test clean_chttp2_simple_ssl_fullstack_request_response_with_payload_test deps_chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test clean_chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test deps_chttp2_simple_ssl_fullstack_simple_delayed_request_test clean_chttp2_simple_ssl_fullstack_simple_delayed_request_test deps_chttp2_simple_ssl_fullstack_simple_request_test clean_chttp2_simple_ssl_fullstack_simple_request_test deps_chttp2_simple_ssl_fullstack_thread_stress_test clean_chttp2_simple_ssl_fullstack_thread_stress_test deps_chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test clean_chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test clean_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test clean_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test clean_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test clean_chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test clean_chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test deps_chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test clean_chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test deps_chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test clean_chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test deps_chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test clean_chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test deps_chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test clean_chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test deps_chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test clean_chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test deps_chttp2_simple_ssl_with_oauth2_fullstack_no_op_test clean_chttp2_simple_ssl_with_oauth2_fullstack_no_op_test deps_chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test clean_chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test deps_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test clean_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test deps_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test clean_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test deps_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test clean_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test deps_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test clean_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test deps_chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test clean_chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test deps_chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test clean_chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test deps_chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test clean_chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test deps_chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test clean_chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test deps_chttp2_socket_pair_cancel_after_accept_test clean_chttp2_socket_pair_cancel_after_accept_test deps_chttp2_socket_pair_cancel_after_accept_and_writes_closed_test clean_chttp2_socket_pair_cancel_after_accept_and_writes_closed_test deps_chttp2_socket_pair_cancel_after_invoke_test clean_chttp2_socket_pair_cancel_after_invoke_test deps_chttp2_socket_pair_cancel_before_invoke_test clean_chttp2_socket_pair_cancel_before_invoke_test deps_chttp2_socket_pair_cancel_in_a_vacuum_test clean_chttp2_socket_pair_cancel_in_a_vacuum_test deps_chttp2_socket_pair_disappearing_server_test clean_chttp2_socket_pair_disappearing_server_test deps_chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test clean_chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test deps_chttp2_socket_pair_early_server_shutdown_finishes_tags_test clean_chttp2_socket_pair_early_server_shutdown_finishes_tags_test deps_chttp2_socket_pair_invoke_large_request_test clean_chttp2_socket_pair_invoke_large_request_test deps_chttp2_socket_pair_max_concurrent_streams_test clean_chttp2_socket_pair_max_concurrent_streams_test deps_chttp2_socket_pair_no_op_test clean_chttp2_socket_pair_no_op_test deps_chttp2_socket_pair_ping_pong_streaming_test clean_chttp2_socket_pair_ping_pong_streaming_test deps_chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test clean_chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test deps_chttp2_socket_pair_request_response_with_metadata_and_payload_test clean_chttp2_socket_pair_request_response_with_metadata_and_payload_test deps_chttp2_socket_pair_request_response_with_payload_test clean_chttp2_socket_pair_request_response_with_payload_test deps_chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test clean_chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test deps_chttp2_socket_pair_simple_delayed_request_test clean_chttp2_socket_pair_simple_delayed_request_test deps_chttp2_socket_pair_simple_request_test clean_chttp2_socket_pair_simple_request_test deps_chttp2_socket_pair_thread_stress_test clean_chttp2_socket_pair_thread_stress_test deps_chttp2_socket_pair_writes_done_hangs_with_pending_read_test clean_chttp2_socket_pair_writes_done_hangs_with_pending_read_test deps_chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test clean_chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test deps_chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test clean_chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test deps_chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test clean_chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test deps_chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test clean_chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test deps_chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test clean_chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test deps_chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test clean_chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test deps_chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test clean_chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test deps_chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test clean_chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test deps_chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test clean_chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test deps_chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test clean_chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test deps_chttp2_socket_pair_one_byte_at_a_time_no_op_test clean_chttp2_socket_pair_one_byte_at_a_time_no_op_test deps_chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test clean_chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test deps_chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test clean_chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test deps_chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test clean_chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test deps_chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test clean_chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test deps_chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test clean_chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test deps_chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test clean_chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test deps_chttp2_socket_pair_one_byte_at_a_time_simple_request_test clean_chttp2_socket_pair_one_byte_at_a_time_simple_request_test deps_chttp2_socket_pair_one_byte_at_a_time_thread_stress_test clean_chttp2_socket_pair_one_byte_at_a_time_thread_stress_test deps_chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test clean_chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test