Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1 | # GRPC global makefile |
| 2 | # This currently builds C and C++ code. |
| 3 | |
| 4 | |
Craig Tiller | 96b4955 | 2015-01-21 16:29:01 -0800 | [diff] [blame] | 5 | |
| 6 | # Basic platform detection |
| 7 | HOST_SYSTEM = $(shell uname | cut -f 1 -d_) |
| 8 | ifeq ($(SYSTEM),) |
| 9 | SYSTEM = $(HOST_SYSTEM) |
| 10 | endif |
| 11 | |
| 12 | |
ctiller | 8cfebb9 | 2015-01-06 15:02:12 -0800 | [diff] [blame] | 13 | # Configurations |
| 14 | |
| 15 | VALID_CONFIG_opt = 1 |
| 16 | CC_opt = gcc |
| 17 | CXX_opt = g++ |
| 18 | LD_opt = gcc |
| 19 | LDXX_opt = g++ |
| 20 | CPPFLAGS_opt = -O2 |
| 21 | LDFLAGS_opt = |
| 22 | DEFINES_opt = NDEBUG |
| 23 | |
| 24 | VALID_CONFIG_dbg = 1 |
| 25 | CC_dbg = gcc |
| 26 | CXX_dbg = g++ |
| 27 | LD_dbg = gcc |
| 28 | LDXX_dbg = g++ |
| 29 | CPPFLAGS_dbg = -O0 |
| 30 | LDFLAGS_dbg = |
| 31 | DEFINES_dbg = _DEBUG DEBUG |
| 32 | |
Craig Tiller | ec0b8f3 | 2015-01-15 07:30:00 -0800 | [diff] [blame] | 33 | VALID_CONFIG_valgrind = 1 |
Craig Tiller | c4da6b7 | 2015-01-15 08:01:14 -0800 | [diff] [blame] | 34 | REQUIRE_CUSTOM_LIBRARIES_valgrind = 1 |
Craig Tiller | ec0b8f3 | 2015-01-15 07:30:00 -0800 | [diff] [blame] | 35 | CC_valgrind = gcc |
| 36 | CXX_valgrind = g++ |
| 37 | LD_valgrind = gcc |
| 38 | LDXX_valgrind = g++ |
| 39 | CPPFLAGS_valgrind = -O0 |
| 40 | OPENSSL_CFLAGS_valgrind = -DPURIFY |
| 41 | LDFLAGS_valgrind = |
| 42 | DEFINES_valgrind = _DEBUG DEBUG |
| 43 | |
ctiller | 8cfebb9 | 2015-01-06 15:02:12 -0800 | [diff] [blame] | 44 | VALID_CONFIG_tsan = 1 |
Craig Tiller | c4da6b7 | 2015-01-15 08:01:14 -0800 | [diff] [blame] | 45 | REQUIRE_CUSTOM_LIBRARIES_tsan = 1 |
ctiller | 8cfebb9 | 2015-01-06 15:02:12 -0800 | [diff] [blame] | 46 | CC_tsan = clang |
| 47 | CXX_tsan = clang++ |
| 48 | LD_tsan = clang |
| 49 | LDXX_tsan = clang++ |
| 50 | CPPFLAGS_tsan = -O1 -fsanitize=thread -fno-omit-frame-pointer |
Craig Tiller | ec0b8f3 | 2015-01-15 07:30:00 -0800 | [diff] [blame] | 51 | OPENSSL_CONFIG_tsan = no-asm |
ctiller | 8cfebb9 | 2015-01-06 15:02:12 -0800 | [diff] [blame] | 52 | LDFLAGS_tsan = -fsanitize=thread |
| 53 | DEFINES_tsan = NDEBUG |
| 54 | |
| 55 | VALID_CONFIG_asan = 1 |
Craig Tiller | c4da6b7 | 2015-01-15 08:01:14 -0800 | [diff] [blame] | 56 | REQUIRE_CUSTOM_LIBRARIES_asan = 1 |
ctiller | 8cfebb9 | 2015-01-06 15:02:12 -0800 | [diff] [blame] | 57 | CC_asan = clang |
| 58 | CXX_asan = clang++ |
| 59 | LD_asan = clang |
| 60 | LDXX_asan = clang++ |
| 61 | CPPFLAGS_asan = -O1 -fsanitize=address -fno-omit-frame-pointer |
Craig Tiller | ec0b8f3 | 2015-01-15 07:30:00 -0800 | [diff] [blame] | 62 | OPENSSL_CONFIG_asan = no-asm |
ctiller | 8cfebb9 | 2015-01-06 15:02:12 -0800 | [diff] [blame] | 63 | LDFLAGS_asan = -fsanitize=address |
| 64 | DEFINES_asan = NDEBUG |
| 65 | |
| 66 | VALID_CONFIG_msan = 1 |
Craig Tiller | c4da6b7 | 2015-01-15 08:01:14 -0800 | [diff] [blame] | 67 | REQUIRE_CUSTOM_LIBRARIES_msan = 1 |
ctiller | 8cfebb9 | 2015-01-06 15:02:12 -0800 | [diff] [blame] | 68 | CC_msan = clang |
| 69 | CXX_msan = clang++ |
| 70 | LD_msan = clang |
| 71 | LDXX_msan = clang++ |
| 72 | CPPFLAGS_msan = -O1 -fsanitize=memory -fno-omit-frame-pointer |
Craig Tiller | ec0b8f3 | 2015-01-15 07:30:00 -0800 | [diff] [blame] | 73 | OPENSSL_CFLAGS_msan = -DPURIFY |
| 74 | OPENSSL_CONFIG_msan = no-asm |
ctiller | 8cfebb9 | 2015-01-06 15:02:12 -0800 | [diff] [blame] | 75 | LDFLAGS_msan = -fsanitize=memory |
| 76 | DEFINES_msan = NDEBUG |
| 77 | |
Craig Tiller | 934baa3 | 2015-01-12 18:19:45 -0800 | [diff] [blame] | 78 | VALID_CONFIG_gcov = 1 |
| 79 | CC_gcov = gcc |
| 80 | CXX_gcov = g++ |
| 81 | LD_gcov = gcc |
| 82 | LDXX_gcov = g++ |
| 83 | CPPFLAGS_gcov = -O0 -fprofile-arcs -ftest-coverage |
| 84 | LDFLAGS_gcov = -fprofile-arcs -ftest-coverage |
| 85 | DEFINES_gcov = NDEBUG |
| 86 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 87 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 88 | # General settings. |
| 89 | # You may want to change these depending on your system. |
| 90 | |
| 91 | prefix ?= /usr/local |
| 92 | |
| 93 | PROTOC = protoc |
yangg | 102e4fe | 2015-01-06 16:02:50 -0800 | [diff] [blame] | 94 | CONFIG ?= opt |
ctiller | 8cfebb9 | 2015-01-06 15:02:12 -0800 | [diff] [blame] | 95 | CC = $(CC_$(CONFIG)) |
| 96 | CXX = $(CXX_$(CONFIG)) |
| 97 | LD = $(LD_$(CONFIG)) |
| 98 | LDXX = $(LDXX_$(CONFIG)) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 99 | AR = ar |
| 100 | STRIP = strip --strip-unneeded |
| 101 | INSTALL = install -D |
| 102 | RM = rm -f |
| 103 | |
yangg | 102e4fe | 2015-01-06 16:02:50 -0800 | [diff] [blame] | 104 | ifndef VALID_CONFIG_$(CONFIG) |
| 105 | $(error Invalid CONFIG value '$(CONFIG)') |
| 106 | endif |
| 107 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 108 | |
| 109 | # The HOST compiler settings are used to compile the protoc plugins. |
| 110 | # In most cases, you won't have to change anything, but if you are |
| 111 | # cross-compiling, you can override these variables from GNU make's |
| 112 | # command line: make CC=cross-gcc HOST_CC=gcc |
| 113 | |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 114 | HOST_CC = $(CC) |
| 115 | HOST_CXX = $(CXX) |
| 116 | HOST_LD = $(LD) |
| 117 | HOST_LDXX = $(LDXX) |
| 118 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 119 | CPPFLAGS += $(CPPFLAGS_$(CONFIG)) |
| 120 | DEFINES += $(DEFINES_$(CONFIG)) |
ctiller | 8cfebb9 | 2015-01-06 15:02:12 -0800 | [diff] [blame] | 121 | LDFLAGS += $(LDFLAGS_$(CONFIG)) |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 122 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 123 | CFLAGS += -std=c89 -pedantic |
| 124 | CXXFLAGS += -std=c++11 |
| 125 | CPPFLAGS += -g -fPIC -Wall -Werror -Wno-long-long |
Craig Tiller | 96b4955 | 2015-01-21 16:29:01 -0800 | [diff] [blame] | 126 | LDFLAGS += -g -fPIC |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 127 | |
| 128 | INCLUDES = . include gens |
Craig Tiller | 96b4955 | 2015-01-21 16:29:01 -0800 | [diff] [blame] | 129 | ifeq ($(SYSTEM),Darwin) |
| 130 | LIBS = m z |
| 131 | else |
ctiller | c008ae5 | 2015-01-07 15:33:00 -0800 | [diff] [blame] | 132 | LIBS = rt m z pthread |
Craig Tiller | 96b4955 | 2015-01-21 16:29:01 -0800 | [diff] [blame] | 133 | LDFLAGS += -pthread |
| 134 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 135 | LIBSXX = protobuf |
nnoble | c78b340 | 2014-12-11 16:06:57 -0800 | [diff] [blame] | 136 | LIBS_PROTOC = protoc protobuf |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 137 | |
| 138 | ifneq ($(wildcard /usr/src/gtest/src/gtest-all.cc),) |
| 139 | GTEST_LIB = /usr/src/gtest/src/gtest-all.cc -I/usr/src/gtest |
| 140 | else |
| 141 | GTEST_LIB = -lgtest |
| 142 | endif |
chenw | a8fd44a | 2014-12-10 15:13:55 -0800 | [diff] [blame] | 143 | GTEST_LIB += -lgflags |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 144 | ifeq ($(V),1) |
| 145 | E = @: |
| 146 | Q = |
| 147 | else |
| 148 | E = @echo |
| 149 | Q = @ |
| 150 | endif |
| 151 | |
| 152 | VERSION = 0.8.0.0 |
| 153 | |
| 154 | CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES)) |
| 155 | CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS) |
| 156 | |
| 157 | LDFLAGS += $(ARCH_FLAGS) |
| 158 | LDLIBS += $(addprefix -l, $(LIBS)) |
| 159 | LDLIBSXX += $(addprefix -l, $(LIBSXX)) |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 160 | HOST_LDLIBS_PROTOC += $(addprefix -l, $(LIBS_PROTOC)) |
| 161 | |
| 162 | HOST_CPPFLAGS = $(CPPFLAGS) |
| 163 | HOST_CFLAGS = $(CFLAGS) |
| 164 | HOST_CXXFLAGS = $(CXXFLAGS) |
| 165 | HOST_LDFLAGS = $(LDFLAGS) |
| 166 | HOST_LDLIBS = $(LDLIBS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 167 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 168 | |
| 169 | # These are automatically computed variables. |
| 170 | # There shouldn't be any need to change anything from now on. |
| 171 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 172 | ifeq ($(SYSTEM),MINGW32) |
| 173 | SHARED_EXT = dll |
| 174 | endif |
| 175 | ifeq ($(SYSTEM),Darwin) |
| 176 | SHARED_EXT = dylib |
| 177 | endif |
| 178 | ifeq ($(SHARED_EXT),) |
| 179 | SHARED_EXT = so.$(VERSION) |
| 180 | endif |
| 181 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 182 | ifeq ($(wildcard .git),) |
| 183 | IS_GIT_FOLDER = false |
| 184 | else |
| 185 | IS_GIT_FOLDER = true |
| 186 | endif |
| 187 | |
nnoble | 7e012cf | 2014-12-22 17:53:44 -0800 | [diff] [blame] | 188 | OPENSSL_ALPN_CHECK_CMD = $(CC) $(CFLAGS) $(CPPFLAGS) -o /dev/null test/build/openssl-alpn.c -lssl -lcrypto -ldl $(LDFLAGS) |
| 189 | ZLIB_CHECK_CMD = $(CC) $(CFLAGS) $(CPPFLAGS) -o /dev/null test/build/zlib.c -lz $(LDFLAGS) |
Craig Tiller | 297fafa | 2015-01-15 15:46:39 -0800 | [diff] [blame] | 190 | PERFTOOLS_CHECK_CMD = $(CC) $(CFLAGS) $(CPPFLAGS) -o /dev/null test/build/perftools.c -lprofiler $(LDFLAGS) |
| 191 | |
| 192 | HAS_SYSTEM_PERFTOOLS = $(shell $(PERFTOOLS_CHECK_CMD) 2> /dev/null && echo true || echo false) |
| 193 | ifeq ($(HAS_SYSTEM_PERFTOOLS),true) |
| 194 | DEFINES += GRPC_HAVE_PERFTOOLS |
| 195 | LIBS += profiler |
| 196 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 197 | |
Craig Tiller | c4da6b7 | 2015-01-15 08:01:14 -0800 | [diff] [blame] | 198 | ifndef REQUIRE_CUSTOM_LIBRARIES_$(CONFIG) |
nnoble | 6082540 | 2014-12-15 14:43:51 -0800 | [diff] [blame] | 199 | HAS_SYSTEM_OPENSSL_ALPN = $(shell $(OPENSSL_ALPN_CHECK_CMD) 2> /dev/null && echo true || echo false) |
| 200 | HAS_SYSTEM_ZLIB = $(shell $(ZLIB_CHECK_CMD) 2> /dev/null && echo true || echo false) |
Craig Tiller | c4da6b7 | 2015-01-15 08:01:14 -0800 | [diff] [blame] | 201 | else |
| 202 | # override system libraries if the config requires a custom compiled library |
| 203 | HAS_SYSTEM_OPENSSL_ALPN = false |
| 204 | HAS_SYSTEM_ZLIB = false |
| 205 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 206 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 207 | ifeq ($(wildcard third_party/openssl/ssl/ssl.h),) |
| 208 | HAS_EMBEDDED_OPENSSL_ALPN = false |
| 209 | else |
| 210 | HAS_EMBEDDED_OPENSSL_ALPN = true |
| 211 | endif |
| 212 | |
| 213 | ifeq ($(wildcard third_party/zlib/zlib.h),) |
| 214 | HAS_EMBEDDED_ZLIB = false |
| 215 | else |
| 216 | HAS_EMBEDDED_ZLIB = true |
| 217 | endif |
| 218 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 219 | ifeq ($(HAS_SYSTEM_ZLIB),false) |
| 220 | ifeq ($(HAS_EMBEDDED_ZLIB),true) |
Craig Tiller | 3ccae02 | 2015-01-15 07:47:29 -0800 | [diff] [blame] | 221 | ZLIB_DEP = libs/$(CONFIG)/zlib/libz.a |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 222 | CPPFLAGS += -Ithird_party/zlib |
| 223 | LDFLAGS += -Lthird_party/zlib |
| 224 | else |
| 225 | DEP_MISSING += zlib |
| 226 | endif |
| 227 | endif |
| 228 | |
| 229 | ifeq ($(HAS_SYSTEM_OPENSSL_ALPN),false) |
| 230 | ifeq ($(HAS_EMBEDDED_OPENSSL_ALPN),true) |
Craig Tiller | ec0b8f3 | 2015-01-15 07:30:00 -0800 | [diff] [blame] | 231 | OPENSSL_DEP = libs/$(CONFIG)/openssl/libssl.a |
| 232 | OPENSSL_MERGE_LIBS += libs/$(CONFIG)/openssl/libssl.a libs/$(CONFIG)/openssl/libcrypto.a |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 233 | CPPFLAGS += -Ithird_party/openssl/include |
Craig Tiller | ec0b8f3 | 2015-01-15 07:30:00 -0800 | [diff] [blame] | 234 | LDFLAGS += -Llibs/$(CONFIG)/openssl |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 235 | LIBS_SECURE = dl |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 236 | else |
| 237 | NO_SECURE = true |
| 238 | endif |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 239 | else |
| 240 | LIBS_SECURE = ssl crypto dl |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 241 | endif |
| 242 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 243 | LDLIBS_SECURE += $(addprefix -l, $(LIBS_SECURE)) |
| 244 | |
Craig Tiller | 12c8209 | 2015-01-15 08:45:56 -0800 | [diff] [blame] | 245 | ifeq ($(MAKECMDGOALS),clean) |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 246 | NO_DEPS = true |
| 247 | endif |
| 248 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 249 | .SECONDARY = %.pb.h %.pb.cc |
| 250 | |
Craig Tiller | f58b9ef | 2015-01-15 09:09:12 -0800 | [diff] [blame] | 251 | PROTOC_PLUGINS= bins/$(CONFIG)/cpp_plugin bins/$(CONFIG)/ruby_plugin |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 252 | ifeq ($(DEP_MISSING),) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 253 | all: static shared |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 254 | dep_error: |
| 255 | @echo "You shouldn't see this message - all of your dependencies are correct." |
| 256 | else |
| 257 | all: dep_error git_update stop |
| 258 | |
| 259 | dep_error: |
| 260 | @echo |
| 261 | @echo "DEPENDENCY ERROR" |
| 262 | @echo |
| 263 | @echo "You are missing system dependencies that are essential to build grpc," |
| 264 | @echo "and the third_party directory doesn't have them:" |
| 265 | @echo |
| 266 | @echo " $(DEP_MISSING)" |
| 267 | @echo |
| 268 | @echo "Installing the development packages for your system will solve" |
| 269 | @echo "this issue. Please consult INSTALL to get more information." |
| 270 | @echo |
| 271 | @echo "If you need information about why these tests failed, run:" |
| 272 | @echo |
| 273 | @echo " make run_dep_checks" |
| 274 | @echo |
| 275 | endif |
| 276 | |
| 277 | git_update: |
| 278 | ifeq ($(IS_GIT_FOLDER),true) |
| 279 | @echo "Additionally, since you are in a git clone, you can download the" |
| 280 | @echo "missing dependencies in third_party by running the following command:" |
| 281 | @echo |
ctiller | 64f2910 | 2014-12-15 10:40:59 -0800 | [diff] [blame] | 282 | @echo " git submodule update --init" |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 283 | @echo |
| 284 | endif |
| 285 | |
| 286 | openssl_dep_error: openssl_dep_message git_update stop |
| 287 | |
| 288 | openssl_dep_message: |
| 289 | @echo |
| 290 | @echo "DEPENDENCY ERROR" |
| 291 | @echo |
| 292 | @echo "The target you are trying to run requires OpenSSL with ALPN support." |
| 293 | @echo "Your system doesn't have it, and neither does the third_party directory." |
| 294 | @echo |
| 295 | @echo "Please consult INSTALL to get more information." |
| 296 | @echo |
| 297 | @echo "If you need information about why these tests failed, run:" |
| 298 | @echo |
| 299 | @echo " make run_dep_checks" |
| 300 | @echo |
| 301 | |
| 302 | stop: |
| 303 | @false |
| 304 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 305 | alarm_heap_test: bins/$(CONFIG)/alarm_heap_test |
| 306 | alarm_list_test: bins/$(CONFIG)/alarm_list_test |
| 307 | alarm_test: bins/$(CONFIG)/alarm_test |
| 308 | alpn_test: bins/$(CONFIG)/alpn_test |
| 309 | bin_encoder_test: bins/$(CONFIG)/bin_encoder_test |
| 310 | census_hash_table_test: bins/$(CONFIG)/census_hash_table_test |
| 311 | census_statistics_multiple_writers_circular_buffer_test: bins/$(CONFIG)/census_statistics_multiple_writers_circular_buffer_test |
| 312 | census_statistics_multiple_writers_test: bins/$(CONFIG)/census_statistics_multiple_writers_test |
| 313 | census_statistics_performance_test: bins/$(CONFIG)/census_statistics_performance_test |
| 314 | census_statistics_quick_test: bins/$(CONFIG)/census_statistics_quick_test |
| 315 | census_statistics_small_log_test: bins/$(CONFIG)/census_statistics_small_log_test |
| 316 | census_stats_store_test: bins/$(CONFIG)/census_stats_store_test |
| 317 | census_stub_test: bins/$(CONFIG)/census_stub_test |
| 318 | census_trace_store_test: bins/$(CONFIG)/census_trace_store_test |
| 319 | census_window_stats_test: bins/$(CONFIG)/census_window_stats_test |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 320 | chttp2_status_conversion_test: bins/$(CONFIG)/chttp2_status_conversion_test |
| 321 | chttp2_stream_encoder_test: bins/$(CONFIG)/chttp2_stream_encoder_test |
| 322 | chttp2_stream_map_test: bins/$(CONFIG)/chttp2_stream_map_test |
| 323 | chttp2_transport_end2end_test: bins/$(CONFIG)/chttp2_transport_end2end_test |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 324 | dualstack_socket_test: bins/$(CONFIG)/dualstack_socket_test |
| 325 | echo_client: bins/$(CONFIG)/echo_client |
| 326 | echo_server: bins/$(CONFIG)/echo_server |
| 327 | echo_test: bins/$(CONFIG)/echo_test |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 328 | fd_posix_test: bins/$(CONFIG)/fd_posix_test |
| 329 | fling_client: bins/$(CONFIG)/fling_client |
| 330 | fling_server: bins/$(CONFIG)/fling_server |
| 331 | fling_stream_test: bins/$(CONFIG)/fling_stream_test |
| 332 | fling_test: bins/$(CONFIG)/fling_test |
| 333 | gen_hpack_tables: bins/$(CONFIG)/gen_hpack_tables |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 334 | gpr_cancellable_test: bins/$(CONFIG)/gpr_cancellable_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 335 | gpr_cmdline_test: bins/$(CONFIG)/gpr_cmdline_test |
| 336 | gpr_histogram_test: bins/$(CONFIG)/gpr_histogram_test |
| 337 | gpr_host_port_test: bins/$(CONFIG)/gpr_host_port_test |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 338 | gpr_log_test: bins/$(CONFIG)/gpr_log_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 339 | gpr_slice_buffer_test: bins/$(CONFIG)/gpr_slice_buffer_test |
| 340 | gpr_slice_test: bins/$(CONFIG)/gpr_slice_test |
| 341 | gpr_string_test: bins/$(CONFIG)/gpr_string_test |
| 342 | gpr_sync_test: bins/$(CONFIG)/gpr_sync_test |
| 343 | gpr_thd_test: bins/$(CONFIG)/gpr_thd_test |
| 344 | gpr_time_test: bins/$(CONFIG)/gpr_time_test |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 345 | gpr_useful_test: bins/$(CONFIG)/gpr_useful_test |
| 346 | grpc_base64_test: bins/$(CONFIG)/grpc_base64_test |
| 347 | grpc_byte_buffer_reader_test: bins/$(CONFIG)/grpc_byte_buffer_reader_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 348 | grpc_channel_stack_test: bins/$(CONFIG)/grpc_channel_stack_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 349 | grpc_completion_queue_benchmark: bins/$(CONFIG)/grpc_completion_queue_benchmark |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 350 | grpc_completion_queue_test: bins/$(CONFIG)/grpc_completion_queue_test |
| 351 | grpc_credentials_test: bins/$(CONFIG)/grpc_credentials_test |
| 352 | grpc_fetch_oauth2: bins/$(CONFIG)/grpc_fetch_oauth2 |
| 353 | grpc_json_token_test: bins/$(CONFIG)/grpc_json_token_test |
| 354 | grpc_stream_op_test: bins/$(CONFIG)/grpc_stream_op_test |
| 355 | hpack_parser_test: bins/$(CONFIG)/hpack_parser_test |
| 356 | hpack_table_test: bins/$(CONFIG)/hpack_table_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 357 | httpcli_format_request_test: bins/$(CONFIG)/httpcli_format_request_test |
| 358 | httpcli_parser_test: bins/$(CONFIG)/httpcli_parser_test |
| 359 | httpcli_test: bins/$(CONFIG)/httpcli_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 360 | lame_client_test: bins/$(CONFIG)/lame_client_test |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 361 | low_level_ping_pong_benchmark: bins/$(CONFIG)/low_level_ping_pong_benchmark |
| 362 | message_compress_test: bins/$(CONFIG)/message_compress_test |
| 363 | metadata_buffer_test: bins/$(CONFIG)/metadata_buffer_test |
| 364 | murmur_hash_test: bins/$(CONFIG)/murmur_hash_test |
| 365 | no_server_test: bins/$(CONFIG)/no_server_test |
| 366 | poll_kick_test: bins/$(CONFIG)/poll_kick_test |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 367 | resolve_address_test: bins/$(CONFIG)/resolve_address_test |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 368 | secure_endpoint_test: bins/$(CONFIG)/secure_endpoint_test |
| 369 | sockaddr_utils_test: bins/$(CONFIG)/sockaddr_utils_test |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 370 | tcp_client_posix_test: bins/$(CONFIG)/tcp_client_posix_test |
| 371 | tcp_posix_test: bins/$(CONFIG)/tcp_posix_test |
| 372 | tcp_server_posix_test: bins/$(CONFIG)/tcp_server_posix_test |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 373 | time_averaged_stats_test: bins/$(CONFIG)/time_averaged_stats_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 374 | time_test: bins/$(CONFIG)/time_test |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 375 | timeout_encoding_test: bins/$(CONFIG)/timeout_encoding_test |
| 376 | transport_metadata_test: bins/$(CONFIG)/transport_metadata_test |
Craig Tiller | 996d9df | 2015-01-19 21:06:50 -0800 | [diff] [blame] | 377 | channel_arguments_test: bins/$(CONFIG)/channel_arguments_test |
| 378 | cpp_plugin: bins/$(CONFIG)/cpp_plugin |
| 379 | credentials_test: bins/$(CONFIG)/credentials_test |
| 380 | end2end_test: bins/$(CONFIG)/end2end_test |
| 381 | interop_client: bins/$(CONFIG)/interop_client |
| 382 | interop_server: bins/$(CONFIG)/interop_server |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 383 | tips_client: bins/$(CONFIG)/tips_client |
| 384 | tips_client_test: bins/$(CONFIG)/tips_client_test |
Craig Tiller | 996d9df | 2015-01-19 21:06:50 -0800 | [diff] [blame] | 385 | qps_client: bins/$(CONFIG)/qps_client |
| 386 | qps_server: bins/$(CONFIG)/qps_server |
| 387 | ruby_plugin: bins/$(CONFIG)/ruby_plugin |
| 388 | status_test: bins/$(CONFIG)/status_test |
| 389 | sync_client_async_server_test: bins/$(CONFIG)/sync_client_async_server_test |
| 390 | thread_pool_test: bins/$(CONFIG)/thread_pool_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 391 | chttp2_fake_security_cancel_after_accept_test: bins/$(CONFIG)/chttp2_fake_security_cancel_after_accept_test |
| 392 | chttp2_fake_security_cancel_after_accept_and_writes_closed_test: bins/$(CONFIG)/chttp2_fake_security_cancel_after_accept_and_writes_closed_test |
| 393 | chttp2_fake_security_cancel_after_invoke_test: bins/$(CONFIG)/chttp2_fake_security_cancel_after_invoke_test |
| 394 | chttp2_fake_security_cancel_before_invoke_test: bins/$(CONFIG)/chttp2_fake_security_cancel_before_invoke_test |
| 395 | chttp2_fake_security_cancel_in_a_vacuum_test: bins/$(CONFIG)/chttp2_fake_security_cancel_in_a_vacuum_test |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 396 | chttp2_fake_security_census_simple_request_test: bins/$(CONFIG)/chttp2_fake_security_census_simple_request_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 397 | chttp2_fake_security_disappearing_server_test: bins/$(CONFIG)/chttp2_fake_security_disappearing_server_test |
| 398 | chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test: bins/$(CONFIG)/chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test |
| 399 | chttp2_fake_security_early_server_shutdown_finishes_tags_test: bins/$(CONFIG)/chttp2_fake_security_early_server_shutdown_finishes_tags_test |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 400 | chttp2_fake_security_graceful_server_shutdown_test: bins/$(CONFIG)/chttp2_fake_security_graceful_server_shutdown_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 401 | chttp2_fake_security_invoke_large_request_test: bins/$(CONFIG)/chttp2_fake_security_invoke_large_request_test |
| 402 | chttp2_fake_security_max_concurrent_streams_test: bins/$(CONFIG)/chttp2_fake_security_max_concurrent_streams_test |
| 403 | chttp2_fake_security_no_op_test: bins/$(CONFIG)/chttp2_fake_security_no_op_test |
| 404 | chttp2_fake_security_ping_pong_streaming_test: bins/$(CONFIG)/chttp2_fake_security_ping_pong_streaming_test |
| 405 | chttp2_fake_security_request_response_with_binary_metadata_and_payload_test: bins/$(CONFIG)/chttp2_fake_security_request_response_with_binary_metadata_and_payload_test |
| 406 | chttp2_fake_security_request_response_with_metadata_and_payload_test: bins/$(CONFIG)/chttp2_fake_security_request_response_with_metadata_and_payload_test |
| 407 | chttp2_fake_security_request_response_with_payload_test: bins/$(CONFIG)/chttp2_fake_security_request_response_with_payload_test |
| 408 | chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test: bins/$(CONFIG)/chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test |
| 409 | chttp2_fake_security_simple_delayed_request_test: bins/$(CONFIG)/chttp2_fake_security_simple_delayed_request_test |
| 410 | chttp2_fake_security_simple_request_test: bins/$(CONFIG)/chttp2_fake_security_simple_request_test |
| 411 | chttp2_fake_security_thread_stress_test: bins/$(CONFIG)/chttp2_fake_security_thread_stress_test |
| 412 | chttp2_fake_security_writes_done_hangs_with_pending_read_test: bins/$(CONFIG)/chttp2_fake_security_writes_done_hangs_with_pending_read_test |
| 413 | chttp2_fullstack_cancel_after_accept_test: bins/$(CONFIG)/chttp2_fullstack_cancel_after_accept_test |
| 414 | chttp2_fullstack_cancel_after_accept_and_writes_closed_test: bins/$(CONFIG)/chttp2_fullstack_cancel_after_accept_and_writes_closed_test |
| 415 | chttp2_fullstack_cancel_after_invoke_test: bins/$(CONFIG)/chttp2_fullstack_cancel_after_invoke_test |
| 416 | chttp2_fullstack_cancel_before_invoke_test: bins/$(CONFIG)/chttp2_fullstack_cancel_before_invoke_test |
| 417 | chttp2_fullstack_cancel_in_a_vacuum_test: bins/$(CONFIG)/chttp2_fullstack_cancel_in_a_vacuum_test |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 418 | chttp2_fullstack_census_simple_request_test: bins/$(CONFIG)/chttp2_fullstack_census_simple_request_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 419 | chttp2_fullstack_disappearing_server_test: bins/$(CONFIG)/chttp2_fullstack_disappearing_server_test |
| 420 | chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test: bins/$(CONFIG)/chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test |
| 421 | chttp2_fullstack_early_server_shutdown_finishes_tags_test: bins/$(CONFIG)/chttp2_fullstack_early_server_shutdown_finishes_tags_test |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 422 | chttp2_fullstack_graceful_server_shutdown_test: bins/$(CONFIG)/chttp2_fullstack_graceful_server_shutdown_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 423 | chttp2_fullstack_invoke_large_request_test: bins/$(CONFIG)/chttp2_fullstack_invoke_large_request_test |
| 424 | chttp2_fullstack_max_concurrent_streams_test: bins/$(CONFIG)/chttp2_fullstack_max_concurrent_streams_test |
| 425 | chttp2_fullstack_no_op_test: bins/$(CONFIG)/chttp2_fullstack_no_op_test |
| 426 | chttp2_fullstack_ping_pong_streaming_test: bins/$(CONFIG)/chttp2_fullstack_ping_pong_streaming_test |
| 427 | chttp2_fullstack_request_response_with_binary_metadata_and_payload_test: bins/$(CONFIG)/chttp2_fullstack_request_response_with_binary_metadata_and_payload_test |
| 428 | chttp2_fullstack_request_response_with_metadata_and_payload_test: bins/$(CONFIG)/chttp2_fullstack_request_response_with_metadata_and_payload_test |
| 429 | chttp2_fullstack_request_response_with_payload_test: bins/$(CONFIG)/chttp2_fullstack_request_response_with_payload_test |
| 430 | chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test: bins/$(CONFIG)/chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test |
| 431 | chttp2_fullstack_simple_delayed_request_test: bins/$(CONFIG)/chttp2_fullstack_simple_delayed_request_test |
| 432 | chttp2_fullstack_simple_request_test: bins/$(CONFIG)/chttp2_fullstack_simple_request_test |
| 433 | chttp2_fullstack_thread_stress_test: bins/$(CONFIG)/chttp2_fullstack_thread_stress_test |
| 434 | chttp2_fullstack_writes_done_hangs_with_pending_read_test: bins/$(CONFIG)/chttp2_fullstack_writes_done_hangs_with_pending_read_test |
| 435 | chttp2_simple_ssl_fullstack_cancel_after_accept_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_accept_test |
| 436 | chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test |
| 437 | chttp2_simple_ssl_fullstack_cancel_after_invoke_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_invoke_test |
| 438 | chttp2_simple_ssl_fullstack_cancel_before_invoke_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_before_invoke_test |
| 439 | chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 440 | chttp2_simple_ssl_fullstack_census_simple_request_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_census_simple_request_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 441 | chttp2_simple_ssl_fullstack_disappearing_server_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_disappearing_server_test |
| 442 | chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test |
| 443 | chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 444 | chttp2_simple_ssl_fullstack_graceful_server_shutdown_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_graceful_server_shutdown_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 445 | chttp2_simple_ssl_fullstack_invoke_large_request_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_invoke_large_request_test |
| 446 | chttp2_simple_ssl_fullstack_max_concurrent_streams_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_max_concurrent_streams_test |
| 447 | chttp2_simple_ssl_fullstack_no_op_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_no_op_test |
| 448 | chttp2_simple_ssl_fullstack_ping_pong_streaming_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_ping_pong_streaming_test |
| 449 | chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test |
| 450 | chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test |
| 451 | chttp2_simple_ssl_fullstack_request_response_with_payload_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_payload_test |
| 452 | chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test |
| 453 | chttp2_simple_ssl_fullstack_simple_delayed_request_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_simple_delayed_request_test |
| 454 | chttp2_simple_ssl_fullstack_simple_request_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_simple_request_test |
| 455 | chttp2_simple_ssl_fullstack_thread_stress_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_thread_stress_test |
| 456 | chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test: bins/$(CONFIG)/chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test |
| 457 | chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test |
| 458 | chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test |
| 459 | chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test |
| 460 | chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test |
| 461 | chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 462 | chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 463 | chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test |
| 464 | chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test |
| 465 | chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 466 | chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 467 | chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test |
| 468 | chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test |
| 469 | chttp2_simple_ssl_with_oauth2_fullstack_no_op_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_no_op_test |
| 470 | chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test |
| 471 | chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test |
| 472 | chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test |
| 473 | chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test |
| 474 | chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test |
| 475 | chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test |
| 476 | chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test |
| 477 | chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test |
| 478 | chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test: bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test |
| 479 | chttp2_socket_pair_cancel_after_accept_test: bins/$(CONFIG)/chttp2_socket_pair_cancel_after_accept_test |
| 480 | chttp2_socket_pair_cancel_after_accept_and_writes_closed_test: bins/$(CONFIG)/chttp2_socket_pair_cancel_after_accept_and_writes_closed_test |
| 481 | chttp2_socket_pair_cancel_after_invoke_test: bins/$(CONFIG)/chttp2_socket_pair_cancel_after_invoke_test |
| 482 | chttp2_socket_pair_cancel_before_invoke_test: bins/$(CONFIG)/chttp2_socket_pair_cancel_before_invoke_test |
| 483 | chttp2_socket_pair_cancel_in_a_vacuum_test: bins/$(CONFIG)/chttp2_socket_pair_cancel_in_a_vacuum_test |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 484 | chttp2_socket_pair_census_simple_request_test: bins/$(CONFIG)/chttp2_socket_pair_census_simple_request_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 485 | chttp2_socket_pair_disappearing_server_test: bins/$(CONFIG)/chttp2_socket_pair_disappearing_server_test |
| 486 | chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test: bins/$(CONFIG)/chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test |
| 487 | chttp2_socket_pair_early_server_shutdown_finishes_tags_test: bins/$(CONFIG)/chttp2_socket_pair_early_server_shutdown_finishes_tags_test |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 488 | chttp2_socket_pair_graceful_server_shutdown_test: bins/$(CONFIG)/chttp2_socket_pair_graceful_server_shutdown_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 489 | chttp2_socket_pair_invoke_large_request_test: bins/$(CONFIG)/chttp2_socket_pair_invoke_large_request_test |
| 490 | chttp2_socket_pair_max_concurrent_streams_test: bins/$(CONFIG)/chttp2_socket_pair_max_concurrent_streams_test |
| 491 | chttp2_socket_pair_no_op_test: bins/$(CONFIG)/chttp2_socket_pair_no_op_test |
| 492 | chttp2_socket_pair_ping_pong_streaming_test: bins/$(CONFIG)/chttp2_socket_pair_ping_pong_streaming_test |
| 493 | chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test: bins/$(CONFIG)/chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test |
| 494 | chttp2_socket_pair_request_response_with_metadata_and_payload_test: bins/$(CONFIG)/chttp2_socket_pair_request_response_with_metadata_and_payload_test |
| 495 | chttp2_socket_pair_request_response_with_payload_test: bins/$(CONFIG)/chttp2_socket_pair_request_response_with_payload_test |
| 496 | chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test: bins/$(CONFIG)/chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test |
| 497 | chttp2_socket_pair_simple_delayed_request_test: bins/$(CONFIG)/chttp2_socket_pair_simple_delayed_request_test |
| 498 | chttp2_socket_pair_simple_request_test: bins/$(CONFIG)/chttp2_socket_pair_simple_request_test |
| 499 | chttp2_socket_pair_thread_stress_test: bins/$(CONFIG)/chttp2_socket_pair_thread_stress_test |
| 500 | chttp2_socket_pair_writes_done_hangs_with_pending_read_test: bins/$(CONFIG)/chttp2_socket_pair_writes_done_hangs_with_pending_read_test |
| 501 | chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test |
| 502 | chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test |
| 503 | chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test |
| 504 | chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test |
| 505 | chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 506 | chttp2_socket_pair_one_byte_at_a_time_census_simple_request_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_census_simple_request_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 507 | chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test |
| 508 | chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test |
| 509 | chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 510 | chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_test |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 511 | chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test |
| 512 | chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test |
| 513 | chttp2_socket_pair_one_byte_at_a_time_no_op_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_no_op_test |
| 514 | chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test |
| 515 | chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test |
| 516 | chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test |
| 517 | chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test |
| 518 | chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test |
| 519 | chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test |
| 520 | chttp2_socket_pair_one_byte_at_a_time_simple_request_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_simple_request_test |
| 521 | chttp2_socket_pair_one_byte_at_a_time_thread_stress_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_thread_stress_test |
| 522 | chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test: bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test |
ctiller | 09cb6d5 | 2014-12-19 17:38:22 -0800 | [diff] [blame] | 523 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 524 | run_dep_checks: |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 525 | $(OPENSSL_ALPN_CHECK_CMD) || true |
| 526 | $(ZLIB_CHECK_CMD) || true |
| 527 | |
Craig Tiller | 3ccae02 | 2015-01-15 07:47:29 -0800 | [diff] [blame] | 528 | libs/$(CONFIG)/zlib/libz.a: |
Nicolas "Pixel" Noble | 17f2b59 | 2015-01-16 07:09:10 +0100 | [diff] [blame] | 529 | $(E) "[MAKE] Building zlib" |
| 530 | $(Q)(cd third_party/zlib ; CC="$(CC)" CFLAGS="-fPIC -fvisibility=hidden $(CPPFLAGS_$(CONFIG))" ./configure --static) |
| 531 | $(Q)$(MAKE) -C third_party/zlib clean |
| 532 | $(Q)$(MAKE) -C third_party/zlib |
| 533 | $(Q)mkdir -p libs/$(CONFIG)/zlib |
| 534 | $(Q)cp third_party/zlib/libz.a libs/$(CONFIG)/zlib |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 535 | |
Craig Tiller | ec0b8f3 | 2015-01-15 07:30:00 -0800 | [diff] [blame] | 536 | libs/$(CONFIG)/openssl/libssl.a: |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 537 | $(E) "[MAKE] Building openssl for $(SYSTEM)" |
| 538 | ifeq ($(SYSTEM),Darwin) |
| 539 | $(Q)(cd third_party/openssl ; CC="$(CC) -fPIC -fvisibility=hidden $(CPPFLAGS_$(CONFIG)) $(OPENSSL_CFLAGS_$(CONFIG))" ./Configure darwin64-x86_64-cc $(OPENSSL_CONFIG_$(CONFIG))) |
| 540 | else |
Nicolas "Pixel" Noble | 17f2b59 | 2015-01-16 07:09:10 +0100 | [diff] [blame] | 541 | $(Q)(cd third_party/openssl ; CC="$(CC) -fPIC -fvisibility=hidden $(CPPFLAGS_$(CONFIG)) $(OPENSSL_CFLAGS_$(CONFIG))" ./config $(OPENSSL_CONFIG_$(CONFIG))) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 542 | endif |
Nicolas "Pixel" Noble | 17f2b59 | 2015-01-16 07:09:10 +0100 | [diff] [blame] | 543 | $(Q)$(MAKE) -C third_party/openssl clean |
| 544 | $(Q)$(MAKE) -C third_party/openssl build_crypto build_ssl |
| 545 | $(Q)mkdir -p libs/$(CONFIG)/openssl |
| 546 | $(Q)cp third_party/openssl/libssl.a third_party/openssl/libcrypto.a libs/$(CONFIG)/openssl |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 547 | |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 548 | static: static_c static_cxx |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 549 | |
Craig Tiller | 12c8209 | 2015-01-15 08:45:56 -0800 | [diff] [blame] | 550 | static_c: libs/$(CONFIG)/libgpr.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgrpc_unsecure.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 551 | |
Craig Tiller | 12c8209 | 2015-01-15 08:45:56 -0800 | [diff] [blame] | 552 | static_cxx: libs/$(CONFIG)/libgrpc++.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 553 | |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 554 | shared: shared_c shared_cxx |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 555 | |
Craig Tiller | 12c8209 | 2015-01-15 08:45:56 -0800 | [diff] [blame] | 556 | shared_c: libs/$(CONFIG)/libgpr.$(SHARED_EXT) libs/$(CONFIG)/libgrpc.$(SHARED_EXT) libs/$(CONFIG)/libgrpc_unsecure.$(SHARED_EXT) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 557 | |
Craig Tiller | 12c8209 | 2015-01-15 08:45:56 -0800 | [diff] [blame] | 558 | shared_cxx: libs/$(CONFIG)/libgrpc++.$(SHARED_EXT) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 559 | |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 560 | privatelibs: privatelibs_c privatelibs_cxx |
| 561 | |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 562 | privatelibs_c: libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_cancel_after_accept.a libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a libs/$(CONFIG)/libend2end_test_census_simple_request.a libs/$(CONFIG)/libend2end_test_disappearing_server.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a libs/$(CONFIG)/libend2end_test_invoke_large_request.a libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a libs/$(CONFIG)/libend2end_test_no_op.a libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(CONFIG)/libend2end_test_request_response_with_payload.a libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(CONFIG)/libend2end_test_simple_delayed_request.a libs/$(CONFIG)/libend2end_test_simple_request.a libs/$(CONFIG)/libend2end_test_thread_stress.a libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(CONFIG)/libend2end_certs.a |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 563 | |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 564 | privatelibs_cxx: libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libtips_client_lib.a |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 565 | |
| 566 | buildtests: buildtests_c buildtests_cxx |
| 567 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 568 | buildtests_c: privatelibs_c bins/$(CONFIG)/alarm_heap_test bins/$(CONFIG)/alarm_list_test bins/$(CONFIG)/alarm_test bins/$(CONFIG)/alpn_test bins/$(CONFIG)/bin_encoder_test bins/$(CONFIG)/census_hash_table_test bins/$(CONFIG)/census_statistics_multiple_writers_circular_buffer_test bins/$(CONFIG)/census_statistics_multiple_writers_test bins/$(CONFIG)/census_statistics_performance_test bins/$(CONFIG)/census_statistics_quick_test bins/$(CONFIG)/census_statistics_small_log_test bins/$(CONFIG)/census_stub_test bins/$(CONFIG)/census_window_stats_test bins/$(CONFIG)/chttp2_status_conversion_test bins/$(CONFIG)/chttp2_stream_encoder_test bins/$(CONFIG)/chttp2_stream_map_test bins/$(CONFIG)/chttp2_transport_end2end_test bins/$(CONFIG)/dualstack_socket_test bins/$(CONFIG)/echo_client bins/$(CONFIG)/echo_server bins/$(CONFIG)/echo_test bins/$(CONFIG)/fd_posix_test bins/$(CONFIG)/fling_client bins/$(CONFIG)/fling_server bins/$(CONFIG)/fling_stream_test bins/$(CONFIG)/fling_test bins/$(CONFIG)/gpr_cancellable_test bins/$(CONFIG)/gpr_cmdline_test bins/$(CONFIG)/gpr_histogram_test bins/$(CONFIG)/gpr_host_port_test bins/$(CONFIG)/gpr_log_test bins/$(CONFIG)/gpr_slice_buffer_test bins/$(CONFIG)/gpr_slice_test bins/$(CONFIG)/gpr_string_test bins/$(CONFIG)/gpr_sync_test bins/$(CONFIG)/gpr_thd_test bins/$(CONFIG)/gpr_time_test bins/$(CONFIG)/gpr_useful_test bins/$(CONFIG)/grpc_base64_test bins/$(CONFIG)/grpc_byte_buffer_reader_test bins/$(CONFIG)/grpc_channel_stack_test bins/$(CONFIG)/grpc_completion_queue_test bins/$(CONFIG)/grpc_credentials_test bins/$(CONFIG)/grpc_json_token_test bins/$(CONFIG)/grpc_stream_op_test bins/$(CONFIG)/hpack_parser_test bins/$(CONFIG)/hpack_table_test bins/$(CONFIG)/httpcli_format_request_test bins/$(CONFIG)/httpcli_parser_test bins/$(CONFIG)/httpcli_test bins/$(CONFIG)/lame_client_test bins/$(CONFIG)/message_compress_test bins/$(CONFIG)/metadata_buffer_test bins/$(CONFIG)/murmur_hash_test bins/$(CONFIG)/no_server_test bins/$(CONFIG)/poll_kick_test bins/$(CONFIG)/resolve_address_test bins/$(CONFIG)/secure_endpoint_test bins/$(CONFIG)/sockaddr_utils_test bins/$(CONFIG)/tcp_client_posix_test bins/$(CONFIG)/tcp_posix_test bins/$(CONFIG)/tcp_server_posix_test bins/$(CONFIG)/time_averaged_stats_test bins/$(CONFIG)/time_test bins/$(CONFIG)/timeout_encoding_test bins/$(CONFIG)/transport_metadata_test bins/$(CONFIG)/chttp2_fake_security_cancel_after_accept_test bins/$(CONFIG)/chttp2_fake_security_cancel_after_accept_and_writes_closed_test bins/$(CONFIG)/chttp2_fake_security_cancel_after_invoke_test bins/$(CONFIG)/chttp2_fake_security_cancel_before_invoke_test bins/$(CONFIG)/chttp2_fake_security_cancel_in_a_vacuum_test bins/$(CONFIG)/chttp2_fake_security_census_simple_request_test bins/$(CONFIG)/chttp2_fake_security_disappearing_server_test bins/$(CONFIG)/chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test bins/$(CONFIG)/chttp2_fake_security_early_server_shutdown_finishes_tags_test bins/$(CONFIG)/chttp2_fake_security_graceful_server_shutdown_test bins/$(CONFIG)/chttp2_fake_security_invoke_large_request_test bins/$(CONFIG)/chttp2_fake_security_max_concurrent_streams_test bins/$(CONFIG)/chttp2_fake_security_no_op_test bins/$(CONFIG)/chttp2_fake_security_ping_pong_streaming_test bins/$(CONFIG)/chttp2_fake_security_request_response_with_binary_metadata_and_payload_test bins/$(CONFIG)/chttp2_fake_security_request_response_with_metadata_and_payload_test bins/$(CONFIG)/chttp2_fake_security_request_response_with_payload_test bins/$(CONFIG)/chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test bins/$(CONFIG)/chttp2_fake_security_simple_delayed_request_test bins/$(CONFIG)/chttp2_fake_security_simple_request_test bins/$(CONFIG)/chttp2_fake_security_thread_stress_test bins/$(CONFIG)/chttp2_fake_security_writes_done_hangs_with_pending_read_test bins/$(CONFIG)/chttp2_fullstack_cancel_after_accept_test bins/$(CONFIG)/chttp2_fullstack_cancel_after_accept_and_writes_closed_test bins/$(CONFIG)/chttp2_fullstack_cancel_after_invoke_test bins/$(CONFIG)/chttp2_fullstack_cancel_before_invoke_test bins/$(CONFIG)/chttp2_fullstack_cancel_in_a_vacuum_test bins/$(CONFIG)/chttp2_fullstack_census_simple_request_test bins/$(CONFIG)/chttp2_fullstack_disappearing_server_test bins/$(CONFIG)/chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test bins/$(CONFIG)/chttp2_fullstack_early_server_shutdown_finishes_tags_test bins/$(CONFIG)/chttp2_fullstack_graceful_server_shutdown_test bins/$(CONFIG)/chttp2_fullstack_invoke_large_request_test bins/$(CONFIG)/chttp2_fullstack_max_concurrent_streams_test bins/$(CONFIG)/chttp2_fullstack_no_op_test bins/$(CONFIG)/chttp2_fullstack_ping_pong_streaming_test bins/$(CONFIG)/chttp2_fullstack_request_response_with_binary_metadata_and_payload_test bins/$(CONFIG)/chttp2_fullstack_request_response_with_metadata_and_payload_test bins/$(CONFIG)/chttp2_fullstack_request_response_with_payload_test bins/$(CONFIG)/chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test bins/$(CONFIG)/chttp2_fullstack_simple_delayed_request_test bins/$(CONFIG)/chttp2_fullstack_simple_request_test bins/$(CONFIG)/chttp2_fullstack_thread_stress_test bins/$(CONFIG)/chttp2_fullstack_writes_done_hangs_with_pending_read_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_accept_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_invoke_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_before_invoke_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_census_simple_request_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_disappearing_server_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_graceful_server_shutdown_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_invoke_large_request_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_max_concurrent_streams_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_no_op_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_ping_pong_streaming_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_payload_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_simple_delayed_request_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_simple_request_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_thread_stress_test bins/$(CONFIG)/chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_no_op_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test bins/$(CONFIG)/chttp2_socket_pair_cancel_after_accept_test bins/$(CONFIG)/chttp2_socket_pair_cancel_after_accept_and_writes_closed_test bins/$(CONFIG)/chttp2_socket_pair_cancel_after_invoke_test bins/$(CONFIG)/chttp2_socket_pair_cancel_before_invoke_test bins/$(CONFIG)/chttp2_socket_pair_cancel_in_a_vacuum_test bins/$(CONFIG)/chttp2_socket_pair_census_simple_request_test bins/$(CONFIG)/chttp2_socket_pair_disappearing_server_test bins/$(CONFIG)/chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test bins/$(CONFIG)/chttp2_socket_pair_early_server_shutdown_finishes_tags_test bins/$(CONFIG)/chttp2_socket_pair_graceful_server_shutdown_test bins/$(CONFIG)/chttp2_socket_pair_invoke_large_request_test bins/$(CONFIG)/chttp2_socket_pair_max_concurrent_streams_test bins/$(CONFIG)/chttp2_socket_pair_no_op_test bins/$(CONFIG)/chttp2_socket_pair_ping_pong_streaming_test bins/$(CONFIG)/chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test bins/$(CONFIG)/chttp2_socket_pair_request_response_with_metadata_and_payload_test bins/$(CONFIG)/chttp2_socket_pair_request_response_with_payload_test bins/$(CONFIG)/chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test bins/$(CONFIG)/chttp2_socket_pair_simple_delayed_request_test bins/$(CONFIG)/chttp2_socket_pair_simple_request_test bins/$(CONFIG)/chttp2_socket_pair_thread_stress_test bins/$(CONFIG)/chttp2_socket_pair_writes_done_hangs_with_pending_read_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_census_simple_request_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_no_op_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_simple_request_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_thread_stress_test bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 569 | |
Chen Wang | 6933075 | 2015-01-21 18:57:46 -0800 | [diff] [blame] | 570 | buildtests_cxx: privatelibs_cxx bins/$(CONFIG)/channel_arguments_test bins/$(CONFIG)/credentials_test bins/$(CONFIG)/end2end_test bins/$(CONFIG)/interop_client bins/$(CONFIG)/interop_server bins/$(CONFIG)/tips_client bins/$(CONFIG)/tips_client_test bins/$(CONFIG)/qps_client bins/$(CONFIG)/qps_server bins/$(CONFIG)/status_test bins/$(CONFIG)/sync_client_async_server_test bins/$(CONFIG)/thread_pool_test |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 571 | |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 572 | test: test_c test_cxx |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 573 | |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 574 | test_c: buildtests_c |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 575 | $(E) "[RUN] Testing alarm_heap_test" |
| 576 | $(Q) ./bins/$(CONFIG)/alarm_heap_test || ( echo test alarm_heap_test failed ; exit 1 ) |
| 577 | $(E) "[RUN] Testing alarm_list_test" |
| 578 | $(Q) ./bins/$(CONFIG)/alarm_list_test || ( echo test alarm_list_test failed ; exit 1 ) |
| 579 | $(E) "[RUN] Testing alarm_test" |
| 580 | $(Q) ./bins/$(CONFIG)/alarm_test || ( echo test alarm_test failed ; exit 1 ) |
| 581 | $(E) "[RUN] Testing alpn_test" |
| 582 | $(Q) ./bins/$(CONFIG)/alpn_test || ( echo test alpn_test failed ; exit 1 ) |
| 583 | $(E) "[RUN] Testing bin_encoder_test" |
| 584 | $(Q) ./bins/$(CONFIG)/bin_encoder_test || ( echo test bin_encoder_test failed ; exit 1 ) |
| 585 | $(E) "[RUN] Testing census_hash_table_test" |
| 586 | $(Q) ./bins/$(CONFIG)/census_hash_table_test || ( echo test census_hash_table_test failed ; exit 1 ) |
| 587 | $(E) "[RUN] Testing census_statistics_multiple_writers_circular_buffer_test" |
| 588 | $(Q) ./bins/$(CONFIG)/census_statistics_multiple_writers_circular_buffer_test || ( echo test census_statistics_multiple_writers_circular_buffer_test failed ; exit 1 ) |
| 589 | $(E) "[RUN] Testing census_statistics_multiple_writers_test" |
| 590 | $(Q) ./bins/$(CONFIG)/census_statistics_multiple_writers_test || ( echo test census_statistics_multiple_writers_test failed ; exit 1 ) |
| 591 | $(E) "[RUN] Testing census_statistics_performance_test" |
| 592 | $(Q) ./bins/$(CONFIG)/census_statistics_performance_test || ( echo test census_statistics_performance_test failed ; exit 1 ) |
| 593 | $(E) "[RUN] Testing census_statistics_quick_test" |
| 594 | $(Q) ./bins/$(CONFIG)/census_statistics_quick_test || ( echo test census_statistics_quick_test failed ; exit 1 ) |
| 595 | $(E) "[RUN] Testing census_statistics_small_log_test" |
| 596 | $(Q) ./bins/$(CONFIG)/census_statistics_small_log_test || ( echo test census_statistics_small_log_test failed ; exit 1 ) |
| 597 | $(E) "[RUN] Testing census_stub_test" |
| 598 | $(Q) ./bins/$(CONFIG)/census_stub_test || ( echo test census_stub_test failed ; exit 1 ) |
| 599 | $(E) "[RUN] Testing census_window_stats_test" |
| 600 | $(Q) ./bins/$(CONFIG)/census_window_stats_test || ( echo test census_window_stats_test failed ; exit 1 ) |
| 601 | $(E) "[RUN] Testing chttp2_status_conversion_test" |
| 602 | $(Q) ./bins/$(CONFIG)/chttp2_status_conversion_test || ( echo test chttp2_status_conversion_test failed ; exit 1 ) |
| 603 | $(E) "[RUN] Testing chttp2_stream_encoder_test" |
| 604 | $(Q) ./bins/$(CONFIG)/chttp2_stream_encoder_test || ( echo test chttp2_stream_encoder_test failed ; exit 1 ) |
| 605 | $(E) "[RUN] Testing chttp2_stream_map_test" |
| 606 | $(Q) ./bins/$(CONFIG)/chttp2_stream_map_test || ( echo test chttp2_stream_map_test failed ; exit 1 ) |
| 607 | $(E) "[RUN] Testing chttp2_transport_end2end_test" |
| 608 | $(Q) ./bins/$(CONFIG)/chttp2_transport_end2end_test || ( echo test chttp2_transport_end2end_test failed ; exit 1 ) |
| 609 | $(E) "[RUN] Testing dualstack_socket_test" |
| 610 | $(Q) ./bins/$(CONFIG)/dualstack_socket_test || ( echo test dualstack_socket_test failed ; exit 1 ) |
| 611 | $(E) "[RUN] Testing echo_test" |
| 612 | $(Q) ./bins/$(CONFIG)/echo_test || ( echo test echo_test failed ; exit 1 ) |
| 613 | $(E) "[RUN] Testing fd_posix_test" |
| 614 | $(Q) ./bins/$(CONFIG)/fd_posix_test || ( echo test fd_posix_test failed ; exit 1 ) |
| 615 | $(E) "[RUN] Testing fling_stream_test" |
| 616 | $(Q) ./bins/$(CONFIG)/fling_stream_test || ( echo test fling_stream_test failed ; exit 1 ) |
| 617 | $(E) "[RUN] Testing fling_test" |
| 618 | $(Q) ./bins/$(CONFIG)/fling_test || ( echo test fling_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 619 | $(E) "[RUN] Testing gpr_cancellable_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 620 | $(Q) ./bins/$(CONFIG)/gpr_cancellable_test || ( echo test gpr_cancellable_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 621 | $(E) "[RUN] Testing gpr_cmdline_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 622 | $(Q) ./bins/$(CONFIG)/gpr_cmdline_test || ( echo test gpr_cmdline_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 623 | $(E) "[RUN] Testing gpr_histogram_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 624 | $(Q) ./bins/$(CONFIG)/gpr_histogram_test || ( echo test gpr_histogram_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 625 | $(E) "[RUN] Testing gpr_host_port_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 626 | $(Q) ./bins/$(CONFIG)/gpr_host_port_test || ( echo test gpr_host_port_test failed ; exit 1 ) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 627 | $(E) "[RUN] Testing gpr_log_test" |
| 628 | $(Q) ./bins/$(CONFIG)/gpr_log_test || ( echo test gpr_log_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 629 | $(E) "[RUN] Testing gpr_slice_buffer_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 630 | $(Q) ./bins/$(CONFIG)/gpr_slice_buffer_test || ( echo test gpr_slice_buffer_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 631 | $(E) "[RUN] Testing gpr_slice_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 632 | $(Q) ./bins/$(CONFIG)/gpr_slice_test || ( echo test gpr_slice_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 633 | $(E) "[RUN] Testing gpr_string_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 634 | $(Q) ./bins/$(CONFIG)/gpr_string_test || ( echo test gpr_string_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 635 | $(E) "[RUN] Testing gpr_sync_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 636 | $(Q) ./bins/$(CONFIG)/gpr_sync_test || ( echo test gpr_sync_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 637 | $(E) "[RUN] Testing gpr_thd_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 638 | $(Q) ./bins/$(CONFIG)/gpr_thd_test || ( echo test gpr_thd_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 639 | $(E) "[RUN] Testing gpr_time_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 640 | $(Q) ./bins/$(CONFIG)/gpr_time_test || ( echo test gpr_time_test failed ; exit 1 ) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 641 | $(E) "[RUN] Testing gpr_useful_test" |
| 642 | $(Q) ./bins/$(CONFIG)/gpr_useful_test || ( echo test gpr_useful_test failed ; exit 1 ) |
| 643 | $(E) "[RUN] Testing grpc_base64_test" |
| 644 | $(Q) ./bins/$(CONFIG)/grpc_base64_test || ( echo test grpc_base64_test failed ; exit 1 ) |
| 645 | $(E) "[RUN] Testing grpc_byte_buffer_reader_test" |
| 646 | $(Q) ./bins/$(CONFIG)/grpc_byte_buffer_reader_test || ( echo test grpc_byte_buffer_reader_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 647 | $(E) "[RUN] Testing grpc_channel_stack_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 648 | $(Q) ./bins/$(CONFIG)/grpc_channel_stack_test || ( echo test grpc_channel_stack_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 649 | $(E) "[RUN] Testing grpc_completion_queue_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 650 | $(Q) ./bins/$(CONFIG)/grpc_completion_queue_test || ( echo test grpc_completion_queue_test failed ; exit 1 ) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 651 | $(E) "[RUN] Testing grpc_credentials_test" |
| 652 | $(Q) ./bins/$(CONFIG)/grpc_credentials_test || ( echo test grpc_credentials_test failed ; exit 1 ) |
| 653 | $(E) "[RUN] Testing grpc_json_token_test" |
| 654 | $(Q) ./bins/$(CONFIG)/grpc_json_token_test || ( echo test grpc_json_token_test failed ; exit 1 ) |
| 655 | $(E) "[RUN] Testing grpc_stream_op_test" |
| 656 | $(Q) ./bins/$(CONFIG)/grpc_stream_op_test || ( echo test grpc_stream_op_test failed ; exit 1 ) |
| 657 | $(E) "[RUN] Testing hpack_parser_test" |
| 658 | $(Q) ./bins/$(CONFIG)/hpack_parser_test || ( echo test hpack_parser_test failed ; exit 1 ) |
| 659 | $(E) "[RUN] Testing hpack_table_test" |
| 660 | $(Q) ./bins/$(CONFIG)/hpack_table_test || ( echo test hpack_table_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 661 | $(E) "[RUN] Testing httpcli_format_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 662 | $(Q) ./bins/$(CONFIG)/httpcli_format_request_test || ( echo test httpcli_format_request_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 663 | $(E) "[RUN] Testing httpcli_parser_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 664 | $(Q) ./bins/$(CONFIG)/httpcli_parser_test || ( echo test httpcli_parser_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 665 | $(E) "[RUN] Testing httpcli_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 666 | $(Q) ./bins/$(CONFIG)/httpcli_test || ( echo test httpcli_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 667 | $(E) "[RUN] Testing lame_client_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 668 | $(Q) ./bins/$(CONFIG)/lame_client_test || ( echo test lame_client_test failed ; exit 1 ) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 669 | $(E) "[RUN] Testing message_compress_test" |
| 670 | $(Q) ./bins/$(CONFIG)/message_compress_test || ( echo test message_compress_test failed ; exit 1 ) |
| 671 | $(E) "[RUN] Testing metadata_buffer_test" |
| 672 | $(Q) ./bins/$(CONFIG)/metadata_buffer_test || ( echo test metadata_buffer_test failed ; exit 1 ) |
| 673 | $(E) "[RUN] Testing murmur_hash_test" |
| 674 | $(Q) ./bins/$(CONFIG)/murmur_hash_test || ( echo test murmur_hash_test failed ; exit 1 ) |
| 675 | $(E) "[RUN] Testing no_server_test" |
| 676 | $(Q) ./bins/$(CONFIG)/no_server_test || ( echo test no_server_test failed ; exit 1 ) |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 677 | $(E) "[RUN] Testing poll_kick_test" |
| 678 | $(Q) ./bins/$(CONFIG)/poll_kick_test || ( echo test poll_kick_test failed ; exit 1 ) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 679 | $(E) "[RUN] Testing resolve_address_test" |
| 680 | $(Q) ./bins/$(CONFIG)/resolve_address_test || ( echo test resolve_address_test failed ; exit 1 ) |
| 681 | $(E) "[RUN] Testing secure_endpoint_test" |
| 682 | $(Q) ./bins/$(CONFIG)/secure_endpoint_test || ( echo test secure_endpoint_test failed ; exit 1 ) |
| 683 | $(E) "[RUN] Testing sockaddr_utils_test" |
| 684 | $(Q) ./bins/$(CONFIG)/sockaddr_utils_test || ( echo test sockaddr_utils_test failed ; exit 1 ) |
| 685 | $(E) "[RUN] Testing tcp_client_posix_test" |
| 686 | $(Q) ./bins/$(CONFIG)/tcp_client_posix_test || ( echo test tcp_client_posix_test failed ; exit 1 ) |
| 687 | $(E) "[RUN] Testing tcp_posix_test" |
| 688 | $(Q) ./bins/$(CONFIG)/tcp_posix_test || ( echo test tcp_posix_test failed ; exit 1 ) |
| 689 | $(E) "[RUN] Testing tcp_server_posix_test" |
| 690 | $(Q) ./bins/$(CONFIG)/tcp_server_posix_test || ( echo test tcp_server_posix_test failed ; exit 1 ) |
| 691 | $(E) "[RUN] Testing time_averaged_stats_test" |
| 692 | $(Q) ./bins/$(CONFIG)/time_averaged_stats_test || ( echo test time_averaged_stats_test failed ; exit 1 ) |
| 693 | $(E) "[RUN] Testing time_test" |
| 694 | $(Q) ./bins/$(CONFIG)/time_test || ( echo test time_test failed ; exit 1 ) |
| 695 | $(E) "[RUN] Testing timeout_encoding_test" |
| 696 | $(Q) ./bins/$(CONFIG)/timeout_encoding_test || ( echo test timeout_encoding_test failed ; exit 1 ) |
| 697 | $(E) "[RUN] Testing transport_metadata_test" |
| 698 | $(Q) ./bins/$(CONFIG)/transport_metadata_test || ( echo test transport_metadata_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 699 | $(E) "[RUN] Testing chttp2_fake_security_cancel_after_accept_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 700 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_cancel_after_accept_test || ( echo test chttp2_fake_security_cancel_after_accept_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 701 | $(E) "[RUN] Testing chttp2_fake_security_cancel_after_accept_and_writes_closed_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 702 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 703 | $(E) "[RUN] Testing chttp2_fake_security_cancel_after_invoke_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 704 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_cancel_after_invoke_test || ( echo test chttp2_fake_security_cancel_after_invoke_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 705 | $(E) "[RUN] Testing chttp2_fake_security_cancel_before_invoke_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 706 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_cancel_before_invoke_test || ( echo test chttp2_fake_security_cancel_before_invoke_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 707 | $(E) "[RUN] Testing chttp2_fake_security_cancel_in_a_vacuum_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 708 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_cancel_in_a_vacuum_test || ( echo test chttp2_fake_security_cancel_in_a_vacuum_test failed ; exit 1 ) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 709 | $(E) "[RUN] Testing chttp2_fake_security_census_simple_request_test" |
| 710 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_census_simple_request_test || ( echo test chttp2_fake_security_census_simple_request_test failed ; exit 1 ) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 711 | $(E) "[RUN] Testing chttp2_fake_security_disappearing_server_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 712 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_disappearing_server_test || ( echo test chttp2_fake_security_disappearing_server_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 713 | $(E) "[RUN] Testing chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 714 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 715 | $(E) "[RUN] Testing chttp2_fake_security_early_server_shutdown_finishes_tags_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 716 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_early_server_shutdown_finishes_tags_test || ( echo test chttp2_fake_security_early_server_shutdown_finishes_tags_test failed ; exit 1 ) |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 717 | $(E) "[RUN] Testing chttp2_fake_security_graceful_server_shutdown_test" |
| 718 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_graceful_server_shutdown_test || ( echo test chttp2_fake_security_graceful_server_shutdown_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 719 | $(E) "[RUN] Testing chttp2_fake_security_invoke_large_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 720 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_invoke_large_request_test || ( echo test chttp2_fake_security_invoke_large_request_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 721 | $(E) "[RUN] Testing chttp2_fake_security_max_concurrent_streams_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 722 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_max_concurrent_streams_test || ( echo test chttp2_fake_security_max_concurrent_streams_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 723 | $(E) "[RUN] Testing chttp2_fake_security_no_op_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 724 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_no_op_test || ( echo test chttp2_fake_security_no_op_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 725 | $(E) "[RUN] Testing chttp2_fake_security_ping_pong_streaming_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 726 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_ping_pong_streaming_test || ( echo test chttp2_fake_security_ping_pong_streaming_test failed ; exit 1 ) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 727 | $(E) "[RUN] Testing chttp2_fake_security_request_response_with_binary_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 728 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 729 | $(E) "[RUN] Testing chttp2_fake_security_request_response_with_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 730 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 731 | $(E) "[RUN] Testing chttp2_fake_security_request_response_with_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 732 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_request_response_with_payload_test || ( echo test chttp2_fake_security_request_response_with_payload_test failed ; exit 1 ) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 733 | $(E) "[RUN] Testing chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 734 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 735 | $(E) "[RUN] Testing chttp2_fake_security_simple_delayed_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 736 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_simple_delayed_request_test || ( echo test chttp2_fake_security_simple_delayed_request_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 737 | $(E) "[RUN] Testing chttp2_fake_security_simple_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 738 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_simple_request_test || ( echo test chttp2_fake_security_simple_request_test failed ; exit 1 ) |
nathaniel | 5287817 | 2014-12-09 10:17:19 -0800 | [diff] [blame] | 739 | $(E) "[RUN] Testing chttp2_fake_security_thread_stress_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 740 | $(Q) ./bins/$(CONFIG)/chttp2_fake_security_thread_stress_test || ( echo test chttp2_fake_security_thread_stress_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 741 | $(E) "[RUN] Testing chttp2_fake_security_writes_done_hangs_with_pending_read_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 742 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 743 | $(E) "[RUN] Testing chttp2_fullstack_cancel_after_accept_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 744 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_cancel_after_accept_test || ( echo test chttp2_fullstack_cancel_after_accept_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 745 | $(E) "[RUN] Testing chttp2_fullstack_cancel_after_accept_and_writes_closed_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 746 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_cancel_after_accept_and_writes_closed_test || ( echo test chttp2_fullstack_cancel_after_accept_and_writes_closed_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 747 | $(E) "[RUN] Testing chttp2_fullstack_cancel_after_invoke_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 748 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_cancel_after_invoke_test || ( echo test chttp2_fullstack_cancel_after_invoke_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 749 | $(E) "[RUN] Testing chttp2_fullstack_cancel_before_invoke_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 750 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_cancel_before_invoke_test || ( echo test chttp2_fullstack_cancel_before_invoke_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 751 | $(E) "[RUN] Testing chttp2_fullstack_cancel_in_a_vacuum_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 752 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_cancel_in_a_vacuum_test || ( echo test chttp2_fullstack_cancel_in_a_vacuum_test failed ; exit 1 ) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 753 | $(E) "[RUN] Testing chttp2_fullstack_census_simple_request_test" |
| 754 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_census_simple_request_test || ( echo test chttp2_fullstack_census_simple_request_test failed ; exit 1 ) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 755 | $(E) "[RUN] Testing chttp2_fullstack_disappearing_server_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 756 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_disappearing_server_test || ( echo test chttp2_fullstack_disappearing_server_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 757 | $(E) "[RUN] Testing chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 758 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test || ( echo test chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 759 | $(E) "[RUN] Testing chttp2_fullstack_early_server_shutdown_finishes_tags_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 760 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_early_server_shutdown_finishes_tags_test || ( echo test chttp2_fullstack_early_server_shutdown_finishes_tags_test failed ; exit 1 ) |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 761 | $(E) "[RUN] Testing chttp2_fullstack_graceful_server_shutdown_test" |
| 762 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_graceful_server_shutdown_test || ( echo test chttp2_fullstack_graceful_server_shutdown_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 763 | $(E) "[RUN] Testing chttp2_fullstack_invoke_large_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 764 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_invoke_large_request_test || ( echo test chttp2_fullstack_invoke_large_request_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 765 | $(E) "[RUN] Testing chttp2_fullstack_max_concurrent_streams_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 766 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_max_concurrent_streams_test || ( echo test chttp2_fullstack_max_concurrent_streams_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 767 | $(E) "[RUN] Testing chttp2_fullstack_no_op_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 768 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_no_op_test || ( echo test chttp2_fullstack_no_op_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 769 | $(E) "[RUN] Testing chttp2_fullstack_ping_pong_streaming_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 770 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_ping_pong_streaming_test || ( echo test chttp2_fullstack_ping_pong_streaming_test failed ; exit 1 ) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 771 | $(E) "[RUN] Testing chttp2_fullstack_request_response_with_binary_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 772 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 773 | $(E) "[RUN] Testing chttp2_fullstack_request_response_with_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 774 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_request_response_with_metadata_and_payload_test || ( echo test chttp2_fullstack_request_response_with_metadata_and_payload_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 775 | $(E) "[RUN] Testing chttp2_fullstack_request_response_with_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 776 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_request_response_with_payload_test || ( echo test chttp2_fullstack_request_response_with_payload_test failed ; exit 1 ) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 777 | $(E) "[RUN] Testing chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 778 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 779 | $(E) "[RUN] Testing chttp2_fullstack_simple_delayed_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 780 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_simple_delayed_request_test || ( echo test chttp2_fullstack_simple_delayed_request_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 781 | $(E) "[RUN] Testing chttp2_fullstack_simple_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 782 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_simple_request_test || ( echo test chttp2_fullstack_simple_request_test failed ; exit 1 ) |
nathaniel | 5287817 | 2014-12-09 10:17:19 -0800 | [diff] [blame] | 783 | $(E) "[RUN] Testing chttp2_fullstack_thread_stress_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 784 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_thread_stress_test || ( echo test chttp2_fullstack_thread_stress_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 785 | $(E) "[RUN] Testing chttp2_fullstack_writes_done_hangs_with_pending_read_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 786 | $(Q) ./bins/$(CONFIG)/chttp2_fullstack_writes_done_hangs_with_pending_read_test || ( echo test chttp2_fullstack_writes_done_hangs_with_pending_read_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 787 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_cancel_after_accept_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 788 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_accept_test || ( echo test chttp2_simple_ssl_fullstack_cancel_after_accept_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 789 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 790 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 791 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_cancel_after_invoke_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 792 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_invoke_test || ( echo test chttp2_simple_ssl_fullstack_cancel_after_invoke_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 793 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_cancel_before_invoke_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 794 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_before_invoke_test || ( echo test chttp2_simple_ssl_fullstack_cancel_before_invoke_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 795 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 796 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test || ( echo test chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test failed ; exit 1 ) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 797 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_census_simple_request_test" |
| 798 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_fullstack_census_simple_request_test || ( echo test chttp2_simple_ssl_fullstack_census_simple_request_test failed ; exit 1 ) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 799 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_disappearing_server_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 800 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_fullstack_disappearing_server_test || ( echo test chttp2_simple_ssl_fullstack_disappearing_server_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 801 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 802 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 803 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 804 | $(Q) ./bins/$(CONFIG)/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 ) |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 805 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_graceful_server_shutdown_test" |
| 806 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_fullstack_graceful_server_shutdown_test || ( echo test chttp2_simple_ssl_fullstack_graceful_server_shutdown_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 807 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_invoke_large_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 808 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_fullstack_invoke_large_request_test || ( echo test chttp2_simple_ssl_fullstack_invoke_large_request_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 809 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_max_concurrent_streams_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 810 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_fullstack_max_concurrent_streams_test || ( echo test chttp2_simple_ssl_fullstack_max_concurrent_streams_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 811 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_no_op_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 812 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_fullstack_no_op_test || ( echo test chttp2_simple_ssl_fullstack_no_op_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 813 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_ping_pong_streaming_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 814 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_fullstack_ping_pong_streaming_test || ( echo test chttp2_simple_ssl_fullstack_ping_pong_streaming_test failed ; exit 1 ) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 815 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 816 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 817 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 818 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 819 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_request_response_with_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 820 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_payload_test || ( echo test chttp2_simple_ssl_fullstack_request_response_with_payload_test failed ; exit 1 ) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 821 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 822 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 823 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_simple_delayed_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 824 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_fullstack_simple_delayed_request_test || ( echo test chttp2_simple_ssl_fullstack_simple_delayed_request_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 825 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_simple_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 826 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_fullstack_simple_request_test || ( echo test chttp2_simple_ssl_fullstack_simple_request_test failed ; exit 1 ) |
nathaniel | 5287817 | 2014-12-09 10:17:19 -0800 | [diff] [blame] | 827 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_thread_stress_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 828 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_fullstack_thread_stress_test || ( echo test chttp2_simple_ssl_fullstack_thread_stress_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 829 | $(E) "[RUN] Testing chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 830 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 831 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 832 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 833 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 834 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 835 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 836 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 837 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 838 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 839 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 840 | $(Q) ./bins/$(CONFIG)/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 ) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 841 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_test" |
| 842 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_test failed ; exit 1 ) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 843 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 844 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 845 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 846 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 847 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 848 | $(Q) ./bins/$(CONFIG)/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 ) |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 849 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_test" |
| 850 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 851 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 852 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 853 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 854 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 855 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_no_op_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 856 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_no_op_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_no_op_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 857 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 858 | $(Q) ./bins/$(CONFIG)/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 ) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 859 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 860 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 861 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 862 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 863 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 864 | $(Q) ./bins/$(CONFIG)/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 ) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 865 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 866 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 867 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 868 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 869 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 870 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test failed ; exit 1 ) |
nathaniel | 5287817 | 2014-12-09 10:17:19 -0800 | [diff] [blame] | 871 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 872 | $(Q) ./bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test || ( echo test chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 873 | $(E) "[RUN] Testing chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 874 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 875 | $(E) "[RUN] Testing chttp2_socket_pair_cancel_after_accept_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 876 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_cancel_after_accept_test || ( echo test chttp2_socket_pair_cancel_after_accept_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 877 | $(E) "[RUN] Testing chttp2_socket_pair_cancel_after_accept_and_writes_closed_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 878 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 879 | $(E) "[RUN] Testing chttp2_socket_pair_cancel_after_invoke_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 880 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_cancel_after_invoke_test || ( echo test chttp2_socket_pair_cancel_after_invoke_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 881 | $(E) "[RUN] Testing chttp2_socket_pair_cancel_before_invoke_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 882 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_cancel_before_invoke_test || ( echo test chttp2_socket_pair_cancel_before_invoke_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 883 | $(E) "[RUN] Testing chttp2_socket_pair_cancel_in_a_vacuum_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 884 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_cancel_in_a_vacuum_test || ( echo test chttp2_socket_pair_cancel_in_a_vacuum_test failed ; exit 1 ) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 885 | $(E) "[RUN] Testing chttp2_socket_pair_census_simple_request_test" |
| 886 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_census_simple_request_test || ( echo test chttp2_socket_pair_census_simple_request_test failed ; exit 1 ) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 887 | $(E) "[RUN] Testing chttp2_socket_pair_disappearing_server_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 888 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_disappearing_server_test || ( echo test chttp2_socket_pair_disappearing_server_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 889 | $(E) "[RUN] Testing chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 890 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 891 | $(E) "[RUN] Testing chttp2_socket_pair_early_server_shutdown_finishes_tags_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 892 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_early_server_shutdown_finishes_tags_test || ( echo test chttp2_socket_pair_early_server_shutdown_finishes_tags_test failed ; exit 1 ) |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 893 | $(E) "[RUN] Testing chttp2_socket_pair_graceful_server_shutdown_test" |
| 894 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_graceful_server_shutdown_test || ( echo test chttp2_socket_pair_graceful_server_shutdown_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 895 | $(E) "[RUN] Testing chttp2_socket_pair_invoke_large_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 896 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_invoke_large_request_test || ( echo test chttp2_socket_pair_invoke_large_request_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 897 | $(E) "[RUN] Testing chttp2_socket_pair_max_concurrent_streams_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 898 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_max_concurrent_streams_test || ( echo test chttp2_socket_pair_max_concurrent_streams_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 899 | $(E) "[RUN] Testing chttp2_socket_pair_no_op_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 900 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_no_op_test || ( echo test chttp2_socket_pair_no_op_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 901 | $(E) "[RUN] Testing chttp2_socket_pair_ping_pong_streaming_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 902 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_ping_pong_streaming_test || ( echo test chttp2_socket_pair_ping_pong_streaming_test failed ; exit 1 ) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 903 | $(E) "[RUN] Testing chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 904 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 905 | $(E) "[RUN] Testing chttp2_socket_pair_request_response_with_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 906 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 907 | $(E) "[RUN] Testing chttp2_socket_pair_request_response_with_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 908 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_request_response_with_payload_test || ( echo test chttp2_socket_pair_request_response_with_payload_test failed ; exit 1 ) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 909 | $(E) "[RUN] Testing chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 910 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 911 | $(E) "[RUN] Testing chttp2_socket_pair_simple_delayed_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 912 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_simple_delayed_request_test || ( echo test chttp2_socket_pair_simple_delayed_request_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 913 | $(E) "[RUN] Testing chttp2_socket_pair_simple_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 914 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_simple_request_test || ( echo test chttp2_socket_pair_simple_request_test failed ; exit 1 ) |
nathaniel | 5287817 | 2014-12-09 10:17:19 -0800 | [diff] [blame] | 915 | $(E) "[RUN] Testing chttp2_socket_pair_thread_stress_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 916 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_thread_stress_test || ( echo test chttp2_socket_pair_thread_stress_test failed ; exit 1 ) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 917 | $(E) "[RUN] Testing chttp2_socket_pair_writes_done_hangs_with_pending_read_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 918 | $(Q) ./bins/$(CONFIG)/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 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 919 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 920 | $(Q) ./bins/$(CONFIG)/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 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 921 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 922 | $(Q) ./bins/$(CONFIG)/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 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 923 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 924 | $(Q) ./bins/$(CONFIG)/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 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 925 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 926 | $(Q) ./bins/$(CONFIG)/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 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 927 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 928 | $(Q) ./bins/$(CONFIG)/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 ) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 929 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_census_simple_request_test" |
| 930 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_census_simple_request_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_census_simple_request_test failed ; exit 1 ) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 931 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 932 | $(Q) ./bins/$(CONFIG)/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 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 933 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 934 | $(Q) ./bins/$(CONFIG)/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 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 935 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 936 | $(Q) ./bins/$(CONFIG)/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 ) |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 937 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_test" |
| 938 | $(Q) ./bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_test || ( echo test chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_test failed ; exit 1 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 939 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 940 | $(Q) ./bins/$(CONFIG)/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 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 941 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 942 | $(Q) ./bins/$(CONFIG)/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 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 943 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_no_op_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 944 | $(Q) ./bins/$(CONFIG)/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 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 945 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 946 | $(Q) ./bins/$(CONFIG)/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 ) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 947 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 948 | $(Q) ./bins/$(CONFIG)/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 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 949 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 950 | $(Q) ./bins/$(CONFIG)/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 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 951 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 952 | $(Q) ./bins/$(CONFIG)/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 ) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 953 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 954 | $(Q) ./bins/$(CONFIG)/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 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 955 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 956 | $(Q) ./bins/$(CONFIG)/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 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 957 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_simple_request_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 958 | $(Q) ./bins/$(CONFIG)/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 ) |
nathaniel | 5287817 | 2014-12-09 10:17:19 -0800 | [diff] [blame] | 959 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_thread_stress_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 960 | $(Q) ./bins/$(CONFIG)/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 ) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 961 | $(E) "[RUN] Testing chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 962 | $(Q) ./bins/$(CONFIG)/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 Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 963 | |
| 964 | |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 965 | test_cxx: buildtests_cxx |
yangg | 59dfc90 | 2014-12-19 14:00:14 -0800 | [diff] [blame] | 966 | $(E) "[RUN] Testing channel_arguments_test" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 967 | $(Q) ./bins/$(CONFIG)/channel_arguments_test || ( echo test channel_arguments_test failed ; exit 1 ) |
yangg | 4105e2b | 2015-01-09 14:19:44 -0800 | [diff] [blame] | 968 | $(E) "[RUN] Testing credentials_test" |
| 969 | $(Q) ./bins/$(CONFIG)/credentials_test || ( echo test credentials_test failed ; exit 1 ) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 970 | $(E) "[RUN] Testing end2end_test" |
| 971 | $(Q) ./bins/$(CONFIG)/end2end_test || ( echo test end2end_test failed ; exit 1 ) |
Chen Wang | 6933075 | 2015-01-21 18:57:46 -0800 | [diff] [blame] | 972 | $(E) "[RUN] Testing tips_client_test" |
| 973 | $(Q) ./bins/$(CONFIG)/tips_client_test || ( echo test tips_client_test failed ; exit 1 ) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 974 | $(E) "[RUN] Testing qps_client" |
| 975 | $(Q) ./bins/$(CONFIG)/qps_client || ( echo test qps_client failed ; exit 1 ) |
| 976 | $(E) "[RUN] Testing qps_server" |
| 977 | $(Q) ./bins/$(CONFIG)/qps_server || ( echo test qps_server failed ; exit 1 ) |
| 978 | $(E) "[RUN] Testing status_test" |
| 979 | $(Q) ./bins/$(CONFIG)/status_test || ( echo test status_test failed ; exit 1 ) |
| 980 | $(E) "[RUN] Testing sync_client_async_server_test" |
| 981 | $(Q) ./bins/$(CONFIG)/sync_client_async_server_test || ( echo test sync_client_async_server_test failed ; exit 1 ) |
| 982 | $(E) "[RUN] Testing thread_pool_test" |
| 983 | $(Q) ./bins/$(CONFIG)/thread_pool_test || ( echo test thread_pool_test failed ; exit 1 ) |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 984 | |
| 985 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 986 | tools: privatelibs bins/$(CONFIG)/gen_hpack_tables bins/$(CONFIG)/grpc_fetch_oauth2 |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 987 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 988 | buildbenchmarks: privatelibs bins/$(CONFIG)/grpc_completion_queue_benchmark bins/$(CONFIG)/low_level_ping_pong_benchmark |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 989 | |
| 990 | benchmarks: buildbenchmarks |
| 991 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 992 | strip: strip-static strip-shared |
| 993 | |
nnoble | 20e2e3f | 2014-12-16 15:37:57 -0800 | [diff] [blame] | 994 | strip-static: strip-static_c strip-static_cxx |
| 995 | |
| 996 | strip-shared: strip-shared_c strip-shared_cxx |
| 997 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 998 | |
| 999 | # TODO(nnoble): the strip target is stripping in-place, instead |
| 1000 | # of copying files in a temporary folder. |
| 1001 | # This prevents proper debugging after running make install. |
| 1002 | |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1003 | strip-static_c: static_c |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1004 | $(E) "[STRIP] Stripping libgpr.a" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1005 | $(Q) $(STRIP) libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1006 | $(E) "[STRIP] Stripping libgrpc.a" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1007 | $(Q) $(STRIP) libs/$(CONFIG)/libgrpc.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1008 | $(E) "[STRIP] Stripping libgrpc_unsecure.a" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1009 | $(Q) $(STRIP) libs/$(CONFIG)/libgrpc_unsecure.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1010 | |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1011 | strip-static_cxx: static_cxx |
| 1012 | $(E) "[STRIP] Stripping libgrpc++.a" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1013 | $(Q) $(STRIP) libs/$(CONFIG)/libgrpc++.a |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1014 | |
| 1015 | strip-shared_c: shared_c |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1016 | $(E) "[STRIP] Stripping libgpr.so" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1017 | $(Q) $(STRIP) libs/$(CONFIG)/libgpr.$(SHARED_EXT) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1018 | $(E) "[STRIP] Stripping libgrpc.so" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1019 | $(Q) $(STRIP) libs/$(CONFIG)/libgrpc.$(SHARED_EXT) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1020 | $(E) "[STRIP] Stripping libgrpc_unsecure.so" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1021 | $(Q) $(STRIP) libs/$(CONFIG)/libgrpc_unsecure.$(SHARED_EXT) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1022 | |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1023 | strip-shared_cxx: shared_cxx |
| 1024 | $(E) "[STRIP] Stripping libgrpc++.so" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1025 | $(Q) $(STRIP) libs/$(CONFIG)/libgrpc++.$(SHARED_EXT) |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1026 | |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 1027 | gens/examples/tips/empty.pb.cc: examples/tips/empty.proto $(PROTOC_PLUGINS) |
| 1028 | $(E) "[PROTOC] Generating protobuf CC file from $<" |
| 1029 | $(Q) mkdir -p `dirname $@` |
| 1030 | $(Q) $(PROTOC) --cpp_out=gens --grpc_out=gens --plugin=protoc-gen-grpc=bins/$(CONFIG)/cpp_plugin $< |
| 1031 | |
| 1032 | gens/examples/tips/label.pb.cc: examples/tips/label.proto $(PROTOC_PLUGINS) |
| 1033 | $(E) "[PROTOC] Generating protobuf CC file from $<" |
| 1034 | $(Q) mkdir -p `dirname $@` |
| 1035 | $(Q) $(PROTOC) --cpp_out=gens --grpc_out=gens --plugin=protoc-gen-grpc=bins/$(CONFIG)/cpp_plugin $< |
| 1036 | |
| 1037 | gens/examples/tips/pubsub.pb.cc: examples/tips/pubsub.proto $(PROTOC_PLUGINS) |
| 1038 | $(E) "[PROTOC] Generating protobuf CC file from $<" |
| 1039 | $(Q) mkdir -p `dirname $@` |
| 1040 | $(Q) $(PROTOC) --cpp_out=gens --grpc_out=gens --plugin=protoc-gen-grpc=bins/$(CONFIG)/cpp_plugin $< |
| 1041 | |
Craig Tiller | f58b9ef | 2015-01-15 09:09:12 -0800 | [diff] [blame] | 1042 | gens/test/cpp/interop/empty.pb.cc: test/cpp/interop/empty.proto $(PROTOC_PLUGINS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1043 | $(E) "[PROTOC] Generating protobuf CC file from $<" |
| 1044 | $(Q) mkdir -p `dirname $@` |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1045 | $(Q) $(PROTOC) --cpp_out=gens --grpc_out=gens --plugin=protoc-gen-grpc=bins/$(CONFIG)/cpp_plugin $< |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 1046 | |
Craig Tiller | f58b9ef | 2015-01-15 09:09:12 -0800 | [diff] [blame] | 1047 | gens/test/cpp/interop/messages.pb.cc: test/cpp/interop/messages.proto $(PROTOC_PLUGINS) |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 1048 | $(E) "[PROTOC] Generating protobuf CC file from $<" |
| 1049 | $(Q) mkdir -p `dirname $@` |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1050 | $(Q) $(PROTOC) --cpp_out=gens --grpc_out=gens --plugin=protoc-gen-grpc=bins/$(CONFIG)/cpp_plugin $< |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 1051 | |
Craig Tiller | f58b9ef | 2015-01-15 09:09:12 -0800 | [diff] [blame] | 1052 | gens/test/cpp/interop/test.pb.cc: test/cpp/interop/test.proto $(PROTOC_PLUGINS) |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 1053 | $(E) "[PROTOC] Generating protobuf CC file from $<" |
| 1054 | $(Q) mkdir -p `dirname $@` |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1055 | $(Q) $(PROTOC) --cpp_out=gens --grpc_out=gens --plugin=protoc-gen-grpc=bins/$(CONFIG)/cpp_plugin $< |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 1056 | |
Craig Tiller | f58b9ef | 2015-01-15 09:09:12 -0800 | [diff] [blame] | 1057 | gens/test/cpp/qps/qpstest.pb.cc: test/cpp/qps/qpstest.proto $(PROTOC_PLUGINS) |
Craig Tiller | bf2659f | 2015-01-13 12:27:06 -0800 | [diff] [blame] | 1058 | $(E) "[PROTOC] Generating protobuf CC file from $<" |
| 1059 | $(Q) mkdir -p `dirname $@` |
| 1060 | $(Q) $(PROTOC) --cpp_out=gens --grpc_out=gens --plugin=protoc-gen-grpc=bins/$(CONFIG)/cpp_plugin $< |
| 1061 | |
Craig Tiller | f58b9ef | 2015-01-15 09:09:12 -0800 | [diff] [blame] | 1062 | gens/test/cpp/util/echo.pb.cc: test/cpp/util/echo.proto $(PROTOC_PLUGINS) |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 1063 | $(E) "[PROTOC] Generating protobuf CC file from $<" |
| 1064 | $(Q) mkdir -p `dirname $@` |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1065 | $(Q) $(PROTOC) --cpp_out=gens --grpc_out=gens --plugin=protoc-gen-grpc=bins/$(CONFIG)/cpp_plugin $< |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 1066 | |
Craig Tiller | f58b9ef | 2015-01-15 09:09:12 -0800 | [diff] [blame] | 1067 | gens/test/cpp/util/echo_duplicate.pb.cc: test/cpp/util/echo_duplicate.proto $(PROTOC_PLUGINS) |
yangg | 1456d15 | 2015-01-08 15:39:58 -0800 | [diff] [blame] | 1068 | $(E) "[PROTOC] Generating protobuf CC file from $<" |
| 1069 | $(Q) mkdir -p `dirname $@` |
| 1070 | $(Q) $(PROTOC) --cpp_out=gens --grpc_out=gens --plugin=protoc-gen-grpc=bins/$(CONFIG)/cpp_plugin $< |
| 1071 | |
Craig Tiller | f58b9ef | 2015-01-15 09:09:12 -0800 | [diff] [blame] | 1072 | gens/test/cpp/util/messages.pb.cc: test/cpp/util/messages.proto $(PROTOC_PLUGINS) |
yangg | 1456d15 | 2015-01-08 15:39:58 -0800 | [diff] [blame] | 1073 | $(E) "[PROTOC] Generating protobuf CC file from $<" |
| 1074 | $(Q) mkdir -p `dirname $@` |
| 1075 | $(Q) $(PROTOC) --cpp_out=gens --grpc_out=gens --plugin=protoc-gen-grpc=bins/$(CONFIG)/cpp_plugin $< |
| 1076 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1077 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1078 | objs/$(CONFIG)/%.o : %.c |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1079 | $(E) "[C] Compiling $<" |
| 1080 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 12c8209 | 2015-01-15 08:45:56 -0800 | [diff] [blame] | 1081 | $(Q) $(CC) $(CFLAGS) $(CPPFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $< |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1082 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1083 | objs/$(CONFIG)/%.o : gens/%.pb.cc |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1084 | $(E) "[CXX] Compiling $<" |
| 1085 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 12c8209 | 2015-01-15 08:45:56 -0800 | [diff] [blame] | 1086 | $(Q) $(CXX) $(CXXFLAGS) $(CPPFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $< |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1087 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1088 | objs/$(CONFIG)/src/compiler/%.o : src/compiler/%.cc |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 1089 | $(E) "[HOSTCXX] Compiling $<" |
| 1090 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 12c8209 | 2015-01-15 08:45:56 -0800 | [diff] [blame] | 1091 | $(Q) $(HOST_CXX) $(HOST_CXXFLAGS) $(HOST_CPPFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $< |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 1092 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1093 | objs/$(CONFIG)/%.o : %.cc |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1094 | $(E) "[CXX] Compiling $<" |
| 1095 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 12c8209 | 2015-01-15 08:45:56 -0800 | [diff] [blame] | 1096 | $(Q) $(CXX) $(CXXFLAGS) $(CPPFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $< |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1097 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1098 | |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1099 | install: install_c install_cxx |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1100 | |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1101 | install_c: install-headers_c install-static_c install-shared_c |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1102 | |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1103 | install_cxx: install-headers_cxx install-static_cxx install-shared_cxx |
| 1104 | |
| 1105 | install-headers: install-headers_c install-headers_cxx |
| 1106 | |
| 1107 | install-headers_c: |
| 1108 | $(E) "[INSTALL] Installing public C headers" |
| 1109 | $(Q) $(foreach h, $(PUBLIC_HEADERS_C), $(INSTALL) $(h) $(prefix)/$(h) && ) exit 0 || exit 1 |
| 1110 | |
| 1111 | install-headers_cxx: |
| 1112 | $(E) "[INSTALL] Installing public C++ headers" |
| 1113 | $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) $(h) $(prefix)/$(h) && ) exit 0 || exit 1 |
| 1114 | |
| 1115 | install-static: install-static_c install-static_cxx |
| 1116 | |
| 1117 | install-static_c: static_c strip-static_c |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1118 | $(E) "[INSTALL] Installing libgpr.a" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1119 | $(Q) $(INSTALL) libs/$(CONFIG)/libgpr.a $(prefix)/lib/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1120 | $(E) "[INSTALL] Installing libgrpc.a" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1121 | $(Q) $(INSTALL) libs/$(CONFIG)/libgrpc.a $(prefix)/lib/libgrpc.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1122 | $(E) "[INSTALL] Installing libgrpc_unsecure.a" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1123 | $(Q) $(INSTALL) libs/$(CONFIG)/libgrpc_unsecure.a $(prefix)/lib/libgrpc_unsecure.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1124 | |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1125 | install-static_cxx: static_cxx strip-static_cxx |
| 1126 | $(E) "[INSTALL] Installing libgrpc++.a" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1127 | $(Q) $(INSTALL) libs/$(CONFIG)/libgrpc++.a $(prefix)/lib/libgrpc++.a |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1128 | |
| 1129 | install-shared_c: shared_c strip-shared_c |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1130 | ifeq ($(SYSTEM),MINGW32) |
| 1131 | $(E) "[INSTALL] Installing gpr.$(SHARED_EXT)" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1132 | $(Q) $(INSTALL) libs/$(CONFIG)/gpr.$(SHARED_EXT) $(prefix)/lib/gpr.$(SHARED_EXT) |
| 1133 | $(Q) $(INSTALL) libs/$(CONFIG)/libgpr-imp.a $(prefix)/lib/libgpr-imp.a |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1134 | else |
| 1135 | $(E) "[INSTALL] Installing libgpr.$(SHARED_EXT)" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1136 | $(Q) $(INSTALL) libs/$(CONFIG)/libgpr.$(SHARED_EXT) $(prefix)/lib/libgpr.$(SHARED_EXT) |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1137 | ifneq ($(SYSTEM),Darwin) |
| 1138 | $(Q) ln -sf libgpr.$(SHARED_EXT) $(prefix)/lib/libgpr.so |
| 1139 | endif |
| 1140 | endif |
| 1141 | ifeq ($(SYSTEM),MINGW32) |
| 1142 | $(E) "[INSTALL] Installing grpc.$(SHARED_EXT)" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1143 | $(Q) $(INSTALL) libs/$(CONFIG)/grpc.$(SHARED_EXT) $(prefix)/lib/grpc.$(SHARED_EXT) |
| 1144 | $(Q) $(INSTALL) libs/$(CONFIG)/libgrpc-imp.a $(prefix)/lib/libgrpc-imp.a |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1145 | else |
| 1146 | $(E) "[INSTALL] Installing libgrpc.$(SHARED_EXT)" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1147 | $(Q) $(INSTALL) libs/$(CONFIG)/libgrpc.$(SHARED_EXT) $(prefix)/lib/libgrpc.$(SHARED_EXT) |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1148 | ifneq ($(SYSTEM),Darwin) |
| 1149 | $(Q) ln -sf libgrpc.$(SHARED_EXT) $(prefix)/lib/libgrpc.so |
| 1150 | endif |
| 1151 | endif |
| 1152 | ifeq ($(SYSTEM),MINGW32) |
| 1153 | $(E) "[INSTALL] Installing grpc_unsecure.$(SHARED_EXT)" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1154 | $(Q) $(INSTALL) libs/$(CONFIG)/grpc_unsecure.$(SHARED_EXT) $(prefix)/lib/grpc_unsecure.$(SHARED_EXT) |
| 1155 | $(Q) $(INSTALL) libs/$(CONFIG)/libgrpc_unsecure-imp.a $(prefix)/lib/libgrpc_unsecure-imp.a |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1156 | else |
| 1157 | $(E) "[INSTALL] Installing libgrpc_unsecure.$(SHARED_EXT)" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1158 | $(Q) $(INSTALL) libs/$(CONFIG)/libgrpc_unsecure.$(SHARED_EXT) $(prefix)/lib/libgrpc_unsecure.$(SHARED_EXT) |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1159 | ifneq ($(SYSTEM),Darwin) |
| 1160 | $(Q) ln -sf libgrpc_unsecure.$(SHARED_EXT) $(prefix)/lib/libgrpc_unsecure.so |
| 1161 | endif |
| 1162 | endif |
| 1163 | ifneq ($(SYSTEM),MINGW32) |
| 1164 | ifneq ($(SYSTEM),Darwin) |
| 1165 | $(Q) ldconfig |
| 1166 | endif |
| 1167 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1168 | |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1169 | install-shared_cxx: shared_cxx strip-shared_cxx |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1170 | ifeq ($(SYSTEM),MINGW32) |
| 1171 | $(E) "[INSTALL] Installing grpc++.$(SHARED_EXT)" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1172 | $(Q) $(INSTALL) libs/$(CONFIG)/grpc++.$(SHARED_EXT) $(prefix)/lib/grpc++.$(SHARED_EXT) |
| 1173 | $(Q) $(INSTALL) libs/$(CONFIG)/libgrpc++-imp.a $(prefix)/lib/libgrpc++-imp.a |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1174 | else |
| 1175 | $(E) "[INSTALL] Installing libgrpc++.$(SHARED_EXT)" |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1176 | $(Q) $(INSTALL) libs/$(CONFIG)/libgrpc++.$(SHARED_EXT) $(prefix)/lib/libgrpc++.$(SHARED_EXT) |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1177 | ifneq ($(SYSTEM),Darwin) |
| 1178 | $(Q) ln -sf libgrpc++.$(SHARED_EXT) $(prefix)/lib/libgrpc++.so |
| 1179 | endif |
| 1180 | endif |
| 1181 | ifneq ($(SYSTEM),MINGW32) |
| 1182 | ifneq ($(SYSTEM),Darwin) |
| 1183 | $(Q) ldconfig |
| 1184 | endif |
| 1185 | endif |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1186 | |
Craig Tiller | 3759e6f | 2015-01-15 08:13:11 -0800 | [diff] [blame] | 1187 | clean: |
Craig Tiller | 12c8209 | 2015-01-15 08:45:56 -0800 | [diff] [blame] | 1188 | $(Q) $(RM) -rf objs libs bins gens |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1189 | |
| 1190 | |
| 1191 | # The various libraries |
| 1192 | |
| 1193 | |
| 1194 | LIBGPR_SRC = \ |
| 1195 | src/core/support/alloc.c \ |
| 1196 | src/core/support/cancellable.c \ |
| 1197 | src/core/support/cmdline.c \ |
ctiller | d94ad10 | 2014-12-23 08:53:43 -0800 | [diff] [blame] | 1198 | src/core/support/cpu_linux.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1199 | src/core/support/cpu_posix.c \ |
| 1200 | src/core/support/histogram.c \ |
| 1201 | src/core/support/host_port.c \ |
ctiller | 2bbb6c4 | 2014-12-17 09:44:44 -0800 | [diff] [blame] | 1202 | src/core/support/log.c \ |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 1203 | src/core/support/log_android.c \ |
ctiller | 2bbb6c4 | 2014-12-17 09:44:44 -0800 | [diff] [blame] | 1204 | src/core/support/log_linux.c \ |
| 1205 | src/core/support/log_posix.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1206 | src/core/support/log_win32.c \ |
| 1207 | src/core/support/murmur_hash.c \ |
ctiller | 2bbb6c4 | 2014-12-17 09:44:44 -0800 | [diff] [blame] | 1208 | src/core/support/slice.c \ |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 1209 | src/core/support/slice_buffer.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1210 | src/core/support/string.c \ |
| 1211 | src/core/support/string_posix.c \ |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 1212 | src/core/support/string_win32.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1213 | src/core/support/sync.c \ |
| 1214 | src/core/support/sync_posix.c \ |
jtattermusch | 98bffb7 | 2014-12-09 12:47:19 -0800 | [diff] [blame] | 1215 | src/core/support/sync_win32.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1216 | src/core/support/thd_posix.c \ |
| 1217 | src/core/support/thd_win32.c \ |
| 1218 | src/core/support/time.c \ |
| 1219 | src/core/support/time_posix.c \ |
| 1220 | src/core/support/time_win32.c \ |
| 1221 | |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1222 | PUBLIC_HEADERS_C += \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1223 | include/grpc/support/alloc.h \ |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 1224 | include/grpc/support/atm.h \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1225 | include/grpc/support/atm_gcc_atomic.h \ |
| 1226 | include/grpc/support/atm_gcc_sync.h \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1227 | include/grpc/support/atm_win32.h \ |
| 1228 | include/grpc/support/cancellable_platform.h \ |
| 1229 | include/grpc/support/cmdline.h \ |
| 1230 | include/grpc/support/histogram.h \ |
| 1231 | include/grpc/support/host_port.h \ |
| 1232 | include/grpc/support/log.h \ |
| 1233 | include/grpc/support/port_platform.h \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1234 | include/grpc/support/slice.h \ |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 1235 | include/grpc/support/slice_buffer.h \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1236 | include/grpc/support/string.h \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1237 | include/grpc/support/sync.h \ |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 1238 | include/grpc/support/sync_generic.h \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1239 | include/grpc/support/sync_posix.h \ |
| 1240 | include/grpc/support/sync_win32.h \ |
| 1241 | include/grpc/support/thd.h \ |
| 1242 | include/grpc/support/thd_posix.h \ |
| 1243 | include/grpc/support/thd_win32.h \ |
| 1244 | include/grpc/support/time.h \ |
| 1245 | include/grpc/support/time_posix.h \ |
| 1246 | include/grpc/support/time_win32.h \ |
| 1247 | include/grpc/support/useful.h \ |
| 1248 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1249 | LIBGPR_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGPR_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1250 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 1251 | libs/$(CONFIG)/libgpr.a: $(ZLIB_DEP) $(LIBGPR_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1252 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1253 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 1254 | $(Q) rm -f libs/$(CONFIG)/libgpr.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1255 | $(Q) $(AR) rcs libs/$(CONFIG)/libgpr.a $(LIBGPR_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 1256 | ifeq ($(SYSTEM),Darwin) |
| 1257 | $(Q) ranlib libs/$(CONFIG)/libgpr.a |
| 1258 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1259 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1260 | |
| 1261 | |
| 1262 | ifeq ($(SYSTEM),MINGW32) |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 1263 | libs/$(CONFIG)/gpr.$(SHARED_EXT): $(LIBGPR_OBJS) $(ZLIB_DEP) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1264 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1265 | $(Q) mkdir -p `dirname $@` |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1266 | $(Q) $(LD) $(LDFLAGS) -Llibs/$(CONFIG) -shared -Wl,--output-def=libs/$(CONFIG)/gpr.def -Wl,--out-implib=libs/$(CONFIG)/libgpr-imp.a -o libs/$(CONFIG)/gpr.$(SHARED_EXT) $(LIBGPR_OBJS) $(LDLIBS) |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1267 | else |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 1268 | libs/$(CONFIG)/libgpr.$(SHARED_EXT): $(LIBGPR_OBJS) $(ZLIB_DEP) |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1269 | $(E) "[LD] Linking $@" |
| 1270 | $(Q) mkdir -p `dirname $@` |
| 1271 | ifeq ($(SYSTEM),Darwin) |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1272 | $(Q) $(LD) $(LDFLAGS) -Llibs/$(CONFIG) -dynamiclib -o libs/$(CONFIG)/libgpr.$(SHARED_EXT) $(LIBGPR_OBJS) $(LDLIBS) |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1273 | else |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1274 | $(Q) $(LD) $(LDFLAGS) -Llibs/$(CONFIG) -shared -Wl,-soname,libgpr.so.0 -o libs/$(CONFIG)/libgpr.$(SHARED_EXT) $(LIBGPR_OBJS) $(LDLIBS) |
| 1275 | $(Q) ln -sf libgpr.$(SHARED_EXT) libs/$(CONFIG)/libgpr.so |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1276 | endif |
| 1277 | endif |
| 1278 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1279 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 1280 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 1281 | -include $(LIBGPR_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1282 | endif |
| 1283 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 1284 | objs/$(CONFIG)/src/core/support/alloc.o: |
| 1285 | objs/$(CONFIG)/src/core/support/cancellable.o: |
| 1286 | objs/$(CONFIG)/src/core/support/cmdline.o: |
| 1287 | objs/$(CONFIG)/src/core/support/cpu_linux.o: |
| 1288 | objs/$(CONFIG)/src/core/support/cpu_posix.o: |
| 1289 | objs/$(CONFIG)/src/core/support/histogram.o: |
| 1290 | objs/$(CONFIG)/src/core/support/host_port.o: |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 1291 | objs/$(CONFIG)/src/core/support/log.o: |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 1292 | objs/$(CONFIG)/src/core/support/log_android.o: |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 1293 | objs/$(CONFIG)/src/core/support/log_linux.o: |
| 1294 | objs/$(CONFIG)/src/core/support/log_posix.o: |
| 1295 | objs/$(CONFIG)/src/core/support/log_win32.o: |
| 1296 | objs/$(CONFIG)/src/core/support/murmur_hash.o: |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 1297 | objs/$(CONFIG)/src/core/support/slice.o: |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 1298 | objs/$(CONFIG)/src/core/support/slice_buffer.o: |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 1299 | objs/$(CONFIG)/src/core/support/string.o: |
| 1300 | objs/$(CONFIG)/src/core/support/string_posix.o: |
| 1301 | objs/$(CONFIG)/src/core/support/string_win32.o: |
| 1302 | objs/$(CONFIG)/src/core/support/sync.o: |
| 1303 | objs/$(CONFIG)/src/core/support/sync_posix.o: |
| 1304 | objs/$(CONFIG)/src/core/support/sync_win32.o: |
| 1305 | objs/$(CONFIG)/src/core/support/thd_posix.o: |
| 1306 | objs/$(CONFIG)/src/core/support/thd_win32.o: |
| 1307 | objs/$(CONFIG)/src/core/support/time.o: |
| 1308 | objs/$(CONFIG)/src/core/support/time_posix.o: |
| 1309 | objs/$(CONFIG)/src/core/support/time_win32.o: |
| 1310 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1311 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 1312 | LIBGPR_TEST_UTIL_SRC = \ |
| 1313 | test/core/util/test_config.c \ |
| 1314 | |
| 1315 | |
| 1316 | LIBGPR_TEST_UTIL_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGPR_TEST_UTIL_SRC)))) |
| 1317 | |
| 1318 | ifeq ($(NO_SECURE),true) |
| 1319 | |
| 1320 | # You can't build secure libraries if you don't have OpenSSL with ALPN. |
| 1321 | |
| 1322 | libs/$(CONFIG)/libgpr_test_util.a: openssl_dep_error |
| 1323 | |
| 1324 | |
| 1325 | else |
| 1326 | |
| 1327 | ifneq ($(OPENSSL_DEP),) |
| 1328 | test/core/util/test_config.c: $(OPENSSL_DEP) |
| 1329 | endif |
| 1330 | |
| 1331 | libs/$(CONFIG)/libgpr_test_util.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(LIBGPR_TEST_UTIL_OBJS) |
| 1332 | $(E) "[AR] Creating $@" |
| 1333 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 1334 | $(Q) rm -f libs/$(CONFIG)/libgpr_test_util.a |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 1335 | $(Q) $(AR) rcs libs/$(CONFIG)/libgpr_test_util.a $(LIBGPR_TEST_UTIL_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 1336 | ifeq ($(SYSTEM),Darwin) |
| 1337 | $(Q) ranlib libs/$(CONFIG)/libgpr_test_util.a |
| 1338 | endif |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 1339 | |
| 1340 | |
| 1341 | |
| 1342 | |
| 1343 | |
| 1344 | endif |
| 1345 | |
| 1346 | ifneq ($(NO_SECURE),true) |
| 1347 | ifneq ($(NO_DEPS),true) |
| 1348 | -include $(LIBGPR_TEST_UTIL_OBJS:.o=.dep) |
| 1349 | endif |
| 1350 | endif |
| 1351 | |
| 1352 | objs/$(CONFIG)/test/core/util/test_config.o: |
| 1353 | |
| 1354 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1355 | LIBGRPC_SRC = \ |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1356 | src/core/security/auth.c \ |
| 1357 | src/core/security/base64.c \ |
| 1358 | src/core/security/credentials.c \ |
jboeuf | 6ad120e | 2015-01-12 17:08:15 -0800 | [diff] [blame] | 1359 | src/core/security/factories.c \ |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1360 | src/core/security/google_root_certs.c \ |
| 1361 | src/core/security/json_token.c \ |
| 1362 | src/core/security/secure_endpoint.c \ |
| 1363 | src/core/security/secure_transport_setup.c \ |
| 1364 | src/core/security/security_context.c \ |
| 1365 | src/core/security/server_secure_chttp2.c \ |
| 1366 | src/core/tsi/fake_transport_security.c \ |
| 1367 | src/core/tsi/ssl_transport_security.c \ |
| 1368 | src/core/tsi/transport_security.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1369 | src/core/channel/call_op_string.c \ |
| 1370 | src/core/channel/census_filter.c \ |
| 1371 | src/core/channel/channel_args.c \ |
| 1372 | src/core/channel/channel_stack.c \ |
ctiller | 82e275f | 2014-12-12 08:43:28 -0800 | [diff] [blame] | 1373 | src/core/channel/child_channel.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1374 | src/core/channel/client_channel.c \ |
| 1375 | src/core/channel/client_setup.c \ |
| 1376 | src/core/channel/connected_channel.c \ |
| 1377 | src/core/channel/http_client_filter.c \ |
| 1378 | src/core/channel/http_filter.c \ |
| 1379 | src/core/channel/http_server_filter.c \ |
| 1380 | src/core/channel/metadata_buffer.c \ |
| 1381 | src/core/channel/noop_filter.c \ |
| 1382 | src/core/compression/algorithm.c \ |
| 1383 | src/core/compression/message_compress.c \ |
ctiller | 18b49ab | 2014-12-09 14:39:16 -0800 | [diff] [blame] | 1384 | src/core/httpcli/format_request.c \ |
| 1385 | src/core/httpcli/httpcli.c \ |
| 1386 | src/core/httpcli/httpcli_security_context.c \ |
| 1387 | src/core/httpcli/parser.c \ |
ctiller | 5210393 | 2014-12-20 09:07:32 -0800 | [diff] [blame] | 1388 | src/core/iomgr/alarm.c \ |
| 1389 | src/core/iomgr/alarm_heap.c \ |
ctiller | 2bbb6c4 | 2014-12-17 09:44:44 -0800 | [diff] [blame] | 1390 | src/core/iomgr/endpoint.c \ |
ctiller | 18b49ab | 2014-12-09 14:39:16 -0800 | [diff] [blame] | 1391 | src/core/iomgr/endpoint_pair_posix.c \ |
ctiller | 58393c2 | 2015-01-07 14:03:30 -0800 | [diff] [blame] | 1392 | src/core/iomgr/fd_posix.c \ |
| 1393 | src/core/iomgr/iomgr.c \ |
| 1394 | src/core/iomgr/iomgr_posix.c \ |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 1395 | src/core/iomgr/pollset_kick_posix.c \ |
ctiller | 58393c2 | 2015-01-07 14:03:30 -0800 | [diff] [blame] | 1396 | src/core/iomgr/pollset_multipoller_with_poll_posix.c \ |
| 1397 | src/core/iomgr/pollset_posix.c \ |
Craig Tiller | e1addfe | 2015-01-21 15:08:12 -0800 | [diff] [blame] | 1398 | src/core/iomgr/pollset_windows.c \ |
Nicolas "Pixel" Noble | d5a9985 | 2015-01-24 01:27:48 -0800 | [diff] [blame] | 1399 | src/core/iomgr/resolve_address.c \ |
ctiller | 18b49ab | 2014-12-09 14:39:16 -0800 | [diff] [blame] | 1400 | src/core/iomgr/sockaddr_utils.c \ |
| 1401 | src/core/iomgr/socket_utils_common_posix.c \ |
| 1402 | src/core/iomgr/socket_utils_linux.c \ |
| 1403 | src/core/iomgr/socket_utils_posix.c \ |
| 1404 | src/core/iomgr/tcp_client_posix.c \ |
| 1405 | src/core/iomgr/tcp_posix.c \ |
| 1406 | src/core/iomgr/tcp_server_posix.c \ |
ctiller | c1ddffb | 2014-12-15 13:08:18 -0800 | [diff] [blame] | 1407 | src/core/iomgr/time_averaged_stats.c \ |
Nicolas Noble | 614c2bf | 2015-01-21 15:48:36 -0800 | [diff] [blame] | 1408 | src/core/json/json.c \ |
Nicolas Noble | e04455a | 2015-01-26 17:01:29 -0800 | [diff] [blame^] | 1409 | src/core/json/json_reader.c \ |
| 1410 | src/core/json/json_string.c \ |
| 1411 | src/core/json/json_writer.c \ |
ctiller | 18b49ab | 2014-12-09 14:39:16 -0800 | [diff] [blame] | 1412 | src/core/statistics/census_init.c \ |
ctiller | 2bbb6c4 | 2014-12-17 09:44:44 -0800 | [diff] [blame] | 1413 | src/core/statistics/census_log.c \ |
ctiller | 18b49ab | 2014-12-09 14:39:16 -0800 | [diff] [blame] | 1414 | src/core/statistics/census_rpc_stats.c \ |
| 1415 | src/core/statistics/census_tracing.c \ |
| 1416 | src/core/statistics/hash_table.c \ |
ctiller | 18b49ab | 2014-12-09 14:39:16 -0800 | [diff] [blame] | 1417 | src/core/statistics/window_stats.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1418 | src/core/surface/byte_buffer.c \ |
| 1419 | src/core/surface/byte_buffer_reader.c \ |
| 1420 | src/core/surface/call.c \ |
| 1421 | src/core/surface/channel.c \ |
| 1422 | src/core/surface/channel_create.c \ |
| 1423 | src/core/surface/client.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1424 | src/core/surface/completion_queue.c \ |
| 1425 | src/core/surface/event_string.c \ |
| 1426 | src/core/surface/init.c \ |
ctiller | 18b49ab | 2014-12-09 14:39:16 -0800 | [diff] [blame] | 1427 | src/core/surface/lame_client.c \ |
| 1428 | src/core/surface/secure_channel_create.c \ |
| 1429 | src/core/surface/secure_server_create.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1430 | src/core/surface/server.c \ |
| 1431 | src/core/surface/server_chttp2.c \ |
| 1432 | src/core/surface/server_create.c \ |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 1433 | src/core/transport/chttp2/alpn.c \ |
| 1434 | src/core/transport/chttp2/bin_encoder.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1435 | src/core/transport/chttp2/frame_data.c \ |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 1436 | src/core/transport/chttp2/frame_goaway.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1437 | src/core/transport/chttp2/frame_ping.c \ |
| 1438 | src/core/transport/chttp2/frame_rst_stream.c \ |
| 1439 | src/core/transport/chttp2/frame_settings.c \ |
| 1440 | src/core/transport/chttp2/frame_window_update.c \ |
| 1441 | src/core/transport/chttp2/hpack_parser.c \ |
| 1442 | src/core/transport/chttp2/hpack_table.c \ |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 1443 | src/core/transport/chttp2/huffsyms.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1444 | src/core/transport/chttp2/status_conversion.c \ |
| 1445 | src/core/transport/chttp2/stream_encoder.c \ |
| 1446 | src/core/transport/chttp2/stream_map.c \ |
| 1447 | src/core/transport/chttp2/timeout_encoding.c \ |
ctiller | e4b4093 | 2015-01-07 12:13:17 -0800 | [diff] [blame] | 1448 | src/core/transport/chttp2/varint.c \ |
ctiller | 58393c2 | 2015-01-07 14:03:30 -0800 | [diff] [blame] | 1449 | src/core/transport/chttp2_transport.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1450 | src/core/transport/metadata.c \ |
| 1451 | src/core/transport/stream_op.c \ |
| 1452 | src/core/transport/transport.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1453 | |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1454 | PUBLIC_HEADERS_C += \ |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1455 | include/grpc/grpc_security.h \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1456 | include/grpc/byte_buffer.h \ |
| 1457 | include/grpc/byte_buffer_reader.h \ |
| 1458 | include/grpc/grpc.h \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1459 | include/grpc/status.h \ |
| 1460 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1461 | LIBGRPC_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1462 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 1463 | ifeq ($(NO_SECURE),true) |
| 1464 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 1465 | # You can't build secure libraries if you don't have OpenSSL with ALPN. |
| 1466 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1467 | libs/$(CONFIG)/libgrpc.a: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 1468 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1469 | ifeq ($(SYSTEM),MINGW32) |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1470 | libs/$(CONFIG)/grpc.$(SHARED_EXT): openssl_dep_error |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1471 | else |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1472 | libs/$(CONFIG)/libgrpc.$(SHARED_EXT): openssl_dep_error |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1473 | endif |
| 1474 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 1475 | else |
| 1476 | |
Nicolas "Pixel" Noble | 17f2b59 | 2015-01-16 07:09:10 +0100 | [diff] [blame] | 1477 | ifneq ($(OPENSSL_DEP),) |
| 1478 | src/core/security/auth.c: $(OPENSSL_DEP) |
| 1479 | src/core/security/base64.c: $(OPENSSL_DEP) |
| 1480 | src/core/security/credentials.c: $(OPENSSL_DEP) |
| 1481 | src/core/security/factories.c: $(OPENSSL_DEP) |
| 1482 | src/core/security/google_root_certs.c: $(OPENSSL_DEP) |
| 1483 | src/core/security/json_token.c: $(OPENSSL_DEP) |
| 1484 | src/core/security/secure_endpoint.c: $(OPENSSL_DEP) |
| 1485 | src/core/security/secure_transport_setup.c: $(OPENSSL_DEP) |
| 1486 | src/core/security/security_context.c: $(OPENSSL_DEP) |
| 1487 | src/core/security/server_secure_chttp2.c: $(OPENSSL_DEP) |
| 1488 | src/core/tsi/fake_transport_security.c: $(OPENSSL_DEP) |
| 1489 | src/core/tsi/ssl_transport_security.c: $(OPENSSL_DEP) |
| 1490 | src/core/tsi/transport_security.c: $(OPENSSL_DEP) |
| 1491 | src/core/channel/call_op_string.c: $(OPENSSL_DEP) |
| 1492 | src/core/channel/census_filter.c: $(OPENSSL_DEP) |
| 1493 | src/core/channel/channel_args.c: $(OPENSSL_DEP) |
| 1494 | src/core/channel/channel_stack.c: $(OPENSSL_DEP) |
| 1495 | src/core/channel/child_channel.c: $(OPENSSL_DEP) |
| 1496 | src/core/channel/client_channel.c: $(OPENSSL_DEP) |
| 1497 | src/core/channel/client_setup.c: $(OPENSSL_DEP) |
| 1498 | src/core/channel/connected_channel.c: $(OPENSSL_DEP) |
| 1499 | src/core/channel/http_client_filter.c: $(OPENSSL_DEP) |
| 1500 | src/core/channel/http_filter.c: $(OPENSSL_DEP) |
| 1501 | src/core/channel/http_server_filter.c: $(OPENSSL_DEP) |
| 1502 | src/core/channel/metadata_buffer.c: $(OPENSSL_DEP) |
| 1503 | src/core/channel/noop_filter.c: $(OPENSSL_DEP) |
| 1504 | src/core/compression/algorithm.c: $(OPENSSL_DEP) |
| 1505 | src/core/compression/message_compress.c: $(OPENSSL_DEP) |
| 1506 | src/core/httpcli/format_request.c: $(OPENSSL_DEP) |
| 1507 | src/core/httpcli/httpcli.c: $(OPENSSL_DEP) |
| 1508 | src/core/httpcli/httpcli_security_context.c: $(OPENSSL_DEP) |
| 1509 | src/core/httpcli/parser.c: $(OPENSSL_DEP) |
| 1510 | src/core/iomgr/alarm.c: $(OPENSSL_DEP) |
| 1511 | src/core/iomgr/alarm_heap.c: $(OPENSSL_DEP) |
| 1512 | src/core/iomgr/endpoint.c: $(OPENSSL_DEP) |
| 1513 | src/core/iomgr/endpoint_pair_posix.c: $(OPENSSL_DEP) |
| 1514 | src/core/iomgr/fd_posix.c: $(OPENSSL_DEP) |
| 1515 | src/core/iomgr/iomgr.c: $(OPENSSL_DEP) |
| 1516 | src/core/iomgr/iomgr_posix.c: $(OPENSSL_DEP) |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 1517 | src/core/iomgr/pollset_kick_posix.c: $(OPENSSL_DEP) |
Nicolas "Pixel" Noble | 17f2b59 | 2015-01-16 07:09:10 +0100 | [diff] [blame] | 1518 | src/core/iomgr/pollset_multipoller_with_poll_posix.c: $(OPENSSL_DEP) |
| 1519 | src/core/iomgr/pollset_posix.c: $(OPENSSL_DEP) |
Craig Tiller | e1addfe | 2015-01-21 15:08:12 -0800 | [diff] [blame] | 1520 | src/core/iomgr/pollset_windows.c: $(OPENSSL_DEP) |
Nicolas "Pixel" Noble | d5a9985 | 2015-01-24 01:27:48 -0800 | [diff] [blame] | 1521 | src/core/iomgr/resolve_address.c: $(OPENSSL_DEP) |
Nicolas "Pixel" Noble | 17f2b59 | 2015-01-16 07:09:10 +0100 | [diff] [blame] | 1522 | src/core/iomgr/sockaddr_utils.c: $(OPENSSL_DEP) |
| 1523 | src/core/iomgr/socket_utils_common_posix.c: $(OPENSSL_DEP) |
| 1524 | src/core/iomgr/socket_utils_linux.c: $(OPENSSL_DEP) |
| 1525 | src/core/iomgr/socket_utils_posix.c: $(OPENSSL_DEP) |
| 1526 | src/core/iomgr/tcp_client_posix.c: $(OPENSSL_DEP) |
| 1527 | src/core/iomgr/tcp_posix.c: $(OPENSSL_DEP) |
| 1528 | src/core/iomgr/tcp_server_posix.c: $(OPENSSL_DEP) |
| 1529 | src/core/iomgr/time_averaged_stats.c: $(OPENSSL_DEP) |
Nicolas Noble | 614c2bf | 2015-01-21 15:48:36 -0800 | [diff] [blame] | 1530 | src/core/json/json.c: $(OPENSSL_DEP) |
Nicolas Noble | e04455a | 2015-01-26 17:01:29 -0800 | [diff] [blame^] | 1531 | src/core/json/json_reader.c: $(OPENSSL_DEP) |
| 1532 | src/core/json/json_string.c: $(OPENSSL_DEP) |
| 1533 | src/core/json/json_writer.c: $(OPENSSL_DEP) |
Nicolas "Pixel" Noble | 17f2b59 | 2015-01-16 07:09:10 +0100 | [diff] [blame] | 1534 | src/core/statistics/census_init.c: $(OPENSSL_DEP) |
| 1535 | src/core/statistics/census_log.c: $(OPENSSL_DEP) |
| 1536 | src/core/statistics/census_rpc_stats.c: $(OPENSSL_DEP) |
| 1537 | src/core/statistics/census_tracing.c: $(OPENSSL_DEP) |
| 1538 | src/core/statistics/hash_table.c: $(OPENSSL_DEP) |
| 1539 | src/core/statistics/window_stats.c: $(OPENSSL_DEP) |
| 1540 | src/core/surface/byte_buffer.c: $(OPENSSL_DEP) |
| 1541 | src/core/surface/byte_buffer_reader.c: $(OPENSSL_DEP) |
| 1542 | src/core/surface/call.c: $(OPENSSL_DEP) |
| 1543 | src/core/surface/channel.c: $(OPENSSL_DEP) |
| 1544 | src/core/surface/channel_create.c: $(OPENSSL_DEP) |
| 1545 | src/core/surface/client.c: $(OPENSSL_DEP) |
| 1546 | src/core/surface/completion_queue.c: $(OPENSSL_DEP) |
| 1547 | src/core/surface/event_string.c: $(OPENSSL_DEP) |
| 1548 | src/core/surface/init.c: $(OPENSSL_DEP) |
| 1549 | src/core/surface/lame_client.c: $(OPENSSL_DEP) |
| 1550 | src/core/surface/secure_channel_create.c: $(OPENSSL_DEP) |
| 1551 | src/core/surface/secure_server_create.c: $(OPENSSL_DEP) |
| 1552 | src/core/surface/server.c: $(OPENSSL_DEP) |
| 1553 | src/core/surface/server_chttp2.c: $(OPENSSL_DEP) |
| 1554 | src/core/surface/server_create.c: $(OPENSSL_DEP) |
| 1555 | src/core/transport/chttp2/alpn.c: $(OPENSSL_DEP) |
| 1556 | src/core/transport/chttp2/bin_encoder.c: $(OPENSSL_DEP) |
| 1557 | src/core/transport/chttp2/frame_data.c: $(OPENSSL_DEP) |
| 1558 | src/core/transport/chttp2/frame_goaway.c: $(OPENSSL_DEP) |
| 1559 | src/core/transport/chttp2/frame_ping.c: $(OPENSSL_DEP) |
| 1560 | src/core/transport/chttp2/frame_rst_stream.c: $(OPENSSL_DEP) |
| 1561 | src/core/transport/chttp2/frame_settings.c: $(OPENSSL_DEP) |
| 1562 | src/core/transport/chttp2/frame_window_update.c: $(OPENSSL_DEP) |
| 1563 | src/core/transport/chttp2/hpack_parser.c: $(OPENSSL_DEP) |
| 1564 | src/core/transport/chttp2/hpack_table.c: $(OPENSSL_DEP) |
| 1565 | src/core/transport/chttp2/huffsyms.c: $(OPENSSL_DEP) |
| 1566 | src/core/transport/chttp2/status_conversion.c: $(OPENSSL_DEP) |
| 1567 | src/core/transport/chttp2/stream_encoder.c: $(OPENSSL_DEP) |
| 1568 | src/core/transport/chttp2/stream_map.c: $(OPENSSL_DEP) |
| 1569 | src/core/transport/chttp2/timeout_encoding.c: $(OPENSSL_DEP) |
| 1570 | src/core/transport/chttp2/varint.c: $(OPENSSL_DEP) |
| 1571 | src/core/transport/chttp2_transport.c: $(OPENSSL_DEP) |
| 1572 | src/core/transport/metadata.c: $(OPENSSL_DEP) |
| 1573 | src/core/transport/stream_op.c: $(OPENSSL_DEP) |
| 1574 | src/core/transport/transport.c: $(OPENSSL_DEP) |
Nicolas "Pixel" Noble | 17f2b59 | 2015-01-16 07:09:10 +0100 | [diff] [blame] | 1575 | endif |
| 1576 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 1577 | libs/$(CONFIG)/libgrpc.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(LIBGRPC_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1578 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1579 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 1580 | $(Q) rm -f libs/$(CONFIG)/libgrpc.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1581 | $(Q) $(AR) rcs libs/$(CONFIG)/libgrpc.a $(LIBGRPC_OBJS) |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 1582 | $(Q) rm -rf tmp-merge |
nnoble | 20e2e3f | 2014-12-16 15:37:57 -0800 | [diff] [blame] | 1583 | $(Q) mkdir tmp-merge |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1584 | $(Q) ( cd tmp-merge ; $(AR) x ../libs/$(CONFIG)/libgrpc.a ) |
nnoble | 20e2e3f | 2014-12-16 15:37:57 -0800 | [diff] [blame] | 1585 | $(Q) for l in $(OPENSSL_MERGE_LIBS) ; do ( cd tmp-merge ; ar x ../$${l} ) ; done |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1586 | $(Q) rm -f libs/$(CONFIG)/libgrpc.a tmp-merge/__.SYMDEF* |
| 1587 | $(Q) ar rcs libs/$(CONFIG)/libgrpc.a tmp-merge/* |
nnoble | 20e2e3f | 2014-12-16 15:37:57 -0800 | [diff] [blame] | 1588 | $(Q) rm -rf tmp-merge |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 1589 | ifeq ($(SYSTEM),Darwin) |
| 1590 | $(Q) ranlib libs/$(CONFIG)/libgrpc.a |
| 1591 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1592 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1593 | |
| 1594 | |
| 1595 | ifeq ($(SYSTEM),MINGW32) |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 1596 | libs/$(CONFIG)/grpc.$(SHARED_EXT): $(LIBGRPC_OBJS) $(ZLIB_DEP)libs/$(CONFIG)/gpr.$(SHARED_EXT) $(OPENSSL_DEP) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1597 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1598 | $(Q) mkdir -p `dirname $@` |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1599 | $(Q) $(LD) $(LDFLAGS) -Llibs/$(CONFIG) -shared -Wl,--output-def=libs/$(CONFIG)/grpc.def -Wl,--out-implib=libs/$(CONFIG)/libgrpc-imp.a -o libs/$(CONFIG)/grpc.$(SHARED_EXT) $(LIBGRPC_OBJS) $(LDLIBS) $(LDLIBS_SECURE) $(OPENSSL_MERGE_LIBS) -lgpr-imp |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1600 | else |
Craig Tiller | a614caa | 2015-01-15 09:33:21 -0800 | [diff] [blame] | 1601 | libs/$(CONFIG)/libgrpc.$(SHARED_EXT): $(LIBGRPC_OBJS) $(ZLIB_DEP) libs/$(CONFIG)/libgpr.$(SHARED_EXT) $(OPENSSL_DEP) |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1602 | $(E) "[LD] Linking $@" |
| 1603 | $(Q) mkdir -p `dirname $@` |
| 1604 | ifeq ($(SYSTEM),Darwin) |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1605 | $(Q) $(LD) $(LDFLAGS) -Llibs/$(CONFIG) -dynamiclib -o libs/$(CONFIG)/libgrpc.$(SHARED_EXT) $(LIBGRPC_OBJS) $(LDLIBS) $(LDLIBS_SECURE) $(OPENSSL_MERGE_LIBS) -lgpr |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1606 | else |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1607 | $(Q) $(LD) $(LDFLAGS) -Llibs/$(CONFIG) -shared -Wl,-soname,libgrpc.so.0 -o libs/$(CONFIG)/libgrpc.$(SHARED_EXT) $(LIBGRPC_OBJS) $(LDLIBS) $(LDLIBS_SECURE) $(OPENSSL_MERGE_LIBS) -lgpr |
| 1608 | $(Q) ln -sf libgrpc.$(SHARED_EXT) libs/$(CONFIG)/libgrpc.so |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1609 | endif |
| 1610 | endif |
| 1611 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1612 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 1613 | endif |
| 1614 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 1615 | ifneq ($(NO_SECURE),true) |
| 1616 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 1617 | -include $(LIBGRPC_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1618 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 1619 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1620 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 1621 | objs/$(CONFIG)/src/core/security/auth.o: |
| 1622 | objs/$(CONFIG)/src/core/security/base64.o: |
| 1623 | objs/$(CONFIG)/src/core/security/credentials.o: |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 1624 | objs/$(CONFIG)/src/core/security/factories.o: |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 1625 | objs/$(CONFIG)/src/core/security/google_root_certs.o: |
| 1626 | objs/$(CONFIG)/src/core/security/json_token.o: |
| 1627 | objs/$(CONFIG)/src/core/security/secure_endpoint.o: |
| 1628 | objs/$(CONFIG)/src/core/security/secure_transport_setup.o: |
| 1629 | objs/$(CONFIG)/src/core/security/security_context.o: |
| 1630 | objs/$(CONFIG)/src/core/security/server_secure_chttp2.o: |
| 1631 | objs/$(CONFIG)/src/core/tsi/fake_transport_security.o: |
| 1632 | objs/$(CONFIG)/src/core/tsi/ssl_transport_security.o: |
| 1633 | objs/$(CONFIG)/src/core/tsi/transport_security.o: |
| 1634 | objs/$(CONFIG)/src/core/channel/call_op_string.o: |
| 1635 | objs/$(CONFIG)/src/core/channel/census_filter.o: |
| 1636 | objs/$(CONFIG)/src/core/channel/channel_args.o: |
| 1637 | objs/$(CONFIG)/src/core/channel/channel_stack.o: |
| 1638 | objs/$(CONFIG)/src/core/channel/child_channel.o: |
| 1639 | objs/$(CONFIG)/src/core/channel/client_channel.o: |
| 1640 | objs/$(CONFIG)/src/core/channel/client_setup.o: |
| 1641 | objs/$(CONFIG)/src/core/channel/connected_channel.o: |
| 1642 | objs/$(CONFIG)/src/core/channel/http_client_filter.o: |
| 1643 | objs/$(CONFIG)/src/core/channel/http_filter.o: |
| 1644 | objs/$(CONFIG)/src/core/channel/http_server_filter.o: |
| 1645 | objs/$(CONFIG)/src/core/channel/metadata_buffer.o: |
| 1646 | objs/$(CONFIG)/src/core/channel/noop_filter.o: |
| 1647 | objs/$(CONFIG)/src/core/compression/algorithm.o: |
| 1648 | objs/$(CONFIG)/src/core/compression/message_compress.o: |
| 1649 | objs/$(CONFIG)/src/core/httpcli/format_request.o: |
| 1650 | objs/$(CONFIG)/src/core/httpcli/httpcli.o: |
| 1651 | objs/$(CONFIG)/src/core/httpcli/httpcli_security_context.o: |
| 1652 | objs/$(CONFIG)/src/core/httpcli/parser.o: |
| 1653 | objs/$(CONFIG)/src/core/iomgr/alarm.o: |
| 1654 | objs/$(CONFIG)/src/core/iomgr/alarm_heap.o: |
| 1655 | objs/$(CONFIG)/src/core/iomgr/endpoint.o: |
| 1656 | objs/$(CONFIG)/src/core/iomgr/endpoint_pair_posix.o: |
| 1657 | objs/$(CONFIG)/src/core/iomgr/fd_posix.o: |
| 1658 | objs/$(CONFIG)/src/core/iomgr/iomgr.o: |
| 1659 | objs/$(CONFIG)/src/core/iomgr/iomgr_posix.o: |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 1660 | objs/$(CONFIG)/src/core/iomgr/pollset_kick_posix.o: |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 1661 | objs/$(CONFIG)/src/core/iomgr/pollset_multipoller_with_poll_posix.o: |
| 1662 | objs/$(CONFIG)/src/core/iomgr/pollset_posix.o: |
Craig Tiller | e1addfe | 2015-01-21 15:08:12 -0800 | [diff] [blame] | 1663 | objs/$(CONFIG)/src/core/iomgr/pollset_windows.o: |
Nicolas "Pixel" Noble | d5a9985 | 2015-01-24 01:27:48 -0800 | [diff] [blame] | 1664 | objs/$(CONFIG)/src/core/iomgr/resolve_address.o: |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 1665 | objs/$(CONFIG)/src/core/iomgr/sockaddr_utils.o: |
| 1666 | objs/$(CONFIG)/src/core/iomgr/socket_utils_common_posix.o: |
| 1667 | objs/$(CONFIG)/src/core/iomgr/socket_utils_linux.o: |
| 1668 | objs/$(CONFIG)/src/core/iomgr/socket_utils_posix.o: |
| 1669 | objs/$(CONFIG)/src/core/iomgr/tcp_client_posix.o: |
| 1670 | objs/$(CONFIG)/src/core/iomgr/tcp_posix.o: |
| 1671 | objs/$(CONFIG)/src/core/iomgr/tcp_server_posix.o: |
| 1672 | objs/$(CONFIG)/src/core/iomgr/time_averaged_stats.o: |
Nicolas Noble | 614c2bf | 2015-01-21 15:48:36 -0800 | [diff] [blame] | 1673 | objs/$(CONFIG)/src/core/json/json.o: |
Nicolas Noble | e04455a | 2015-01-26 17:01:29 -0800 | [diff] [blame^] | 1674 | objs/$(CONFIG)/src/core/json/json_reader.o: |
| 1675 | objs/$(CONFIG)/src/core/json/json_string.o: |
| 1676 | objs/$(CONFIG)/src/core/json/json_writer.o: |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 1677 | objs/$(CONFIG)/src/core/statistics/census_init.o: |
| 1678 | objs/$(CONFIG)/src/core/statistics/census_log.o: |
| 1679 | objs/$(CONFIG)/src/core/statistics/census_rpc_stats.o: |
| 1680 | objs/$(CONFIG)/src/core/statistics/census_tracing.o: |
| 1681 | objs/$(CONFIG)/src/core/statistics/hash_table.o: |
| 1682 | objs/$(CONFIG)/src/core/statistics/window_stats.o: |
| 1683 | objs/$(CONFIG)/src/core/surface/byte_buffer.o: |
| 1684 | objs/$(CONFIG)/src/core/surface/byte_buffer_reader.o: |
| 1685 | objs/$(CONFIG)/src/core/surface/call.o: |
| 1686 | objs/$(CONFIG)/src/core/surface/channel.o: |
| 1687 | objs/$(CONFIG)/src/core/surface/channel_create.o: |
| 1688 | objs/$(CONFIG)/src/core/surface/client.o: |
| 1689 | objs/$(CONFIG)/src/core/surface/completion_queue.o: |
| 1690 | objs/$(CONFIG)/src/core/surface/event_string.o: |
| 1691 | objs/$(CONFIG)/src/core/surface/init.o: |
| 1692 | objs/$(CONFIG)/src/core/surface/lame_client.o: |
| 1693 | objs/$(CONFIG)/src/core/surface/secure_channel_create.o: |
| 1694 | objs/$(CONFIG)/src/core/surface/secure_server_create.o: |
| 1695 | objs/$(CONFIG)/src/core/surface/server.o: |
| 1696 | objs/$(CONFIG)/src/core/surface/server_chttp2.o: |
| 1697 | objs/$(CONFIG)/src/core/surface/server_create.o: |
| 1698 | objs/$(CONFIG)/src/core/transport/chttp2/alpn.o: |
| 1699 | objs/$(CONFIG)/src/core/transport/chttp2/bin_encoder.o: |
| 1700 | objs/$(CONFIG)/src/core/transport/chttp2/frame_data.o: |
| 1701 | objs/$(CONFIG)/src/core/transport/chttp2/frame_goaway.o: |
| 1702 | objs/$(CONFIG)/src/core/transport/chttp2/frame_ping.o: |
| 1703 | objs/$(CONFIG)/src/core/transport/chttp2/frame_rst_stream.o: |
| 1704 | objs/$(CONFIG)/src/core/transport/chttp2/frame_settings.o: |
| 1705 | objs/$(CONFIG)/src/core/transport/chttp2/frame_window_update.o: |
| 1706 | objs/$(CONFIG)/src/core/transport/chttp2/hpack_parser.o: |
| 1707 | objs/$(CONFIG)/src/core/transport/chttp2/hpack_table.o: |
| 1708 | objs/$(CONFIG)/src/core/transport/chttp2/huffsyms.o: |
| 1709 | objs/$(CONFIG)/src/core/transport/chttp2/status_conversion.o: |
| 1710 | objs/$(CONFIG)/src/core/transport/chttp2/stream_encoder.o: |
| 1711 | objs/$(CONFIG)/src/core/transport/chttp2/stream_map.o: |
| 1712 | objs/$(CONFIG)/src/core/transport/chttp2/timeout_encoding.o: |
| 1713 | objs/$(CONFIG)/src/core/transport/chttp2/varint.o: |
| 1714 | objs/$(CONFIG)/src/core/transport/chttp2_transport.o: |
| 1715 | objs/$(CONFIG)/src/core/transport/metadata.o: |
| 1716 | objs/$(CONFIG)/src/core/transport/stream_op.o: |
| 1717 | objs/$(CONFIG)/src/core/transport/transport.o: |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 1718 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1719 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 1720 | LIBGRPC_TEST_UTIL_SRC = \ |
| 1721 | test/core/end2end/cq_verifier.c \ |
| 1722 | test/core/end2end/data/prod_roots_certs.c \ |
| 1723 | test/core/end2end/data/server1_cert.c \ |
| 1724 | test/core/end2end/data/server1_key.c \ |
| 1725 | test/core/end2end/data/test_root_cert.c \ |
| 1726 | test/core/iomgr/endpoint_tests.c \ |
| 1727 | test/core/statistics/census_log_tests.c \ |
| 1728 | test/core/transport/transport_end2end_tests.c \ |
| 1729 | test/core/util/grpc_profiler.c \ |
| 1730 | test/core/util/parse_hexstring.c \ |
| 1731 | test/core/util/port_posix.c \ |
| 1732 | test/core/util/slice_splitter.c \ |
| 1733 | |
| 1734 | |
| 1735 | LIBGRPC_TEST_UTIL_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_TEST_UTIL_SRC)))) |
| 1736 | |
| 1737 | ifeq ($(NO_SECURE),true) |
| 1738 | |
| 1739 | # You can't build secure libraries if you don't have OpenSSL with ALPN. |
| 1740 | |
| 1741 | libs/$(CONFIG)/libgrpc_test_util.a: openssl_dep_error |
| 1742 | |
| 1743 | |
| 1744 | else |
| 1745 | |
| 1746 | ifneq ($(OPENSSL_DEP),) |
| 1747 | test/core/end2end/cq_verifier.c: $(OPENSSL_DEP) |
| 1748 | test/core/end2end/data/prod_roots_certs.c: $(OPENSSL_DEP) |
| 1749 | test/core/end2end/data/server1_cert.c: $(OPENSSL_DEP) |
| 1750 | test/core/end2end/data/server1_key.c: $(OPENSSL_DEP) |
| 1751 | test/core/end2end/data/test_root_cert.c: $(OPENSSL_DEP) |
| 1752 | test/core/iomgr/endpoint_tests.c: $(OPENSSL_DEP) |
| 1753 | test/core/statistics/census_log_tests.c: $(OPENSSL_DEP) |
| 1754 | test/core/transport/transport_end2end_tests.c: $(OPENSSL_DEP) |
| 1755 | test/core/util/grpc_profiler.c: $(OPENSSL_DEP) |
| 1756 | test/core/util/parse_hexstring.c: $(OPENSSL_DEP) |
| 1757 | test/core/util/port_posix.c: $(OPENSSL_DEP) |
| 1758 | test/core/util/slice_splitter.c: $(OPENSSL_DEP) |
| 1759 | endif |
| 1760 | |
| 1761 | libs/$(CONFIG)/libgrpc_test_util.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(LIBGRPC_TEST_UTIL_OBJS) |
| 1762 | $(E) "[AR] Creating $@" |
| 1763 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 1764 | $(Q) rm -f libs/$(CONFIG)/libgrpc_test_util.a |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 1765 | $(Q) $(AR) rcs libs/$(CONFIG)/libgrpc_test_util.a $(LIBGRPC_TEST_UTIL_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 1766 | ifeq ($(SYSTEM),Darwin) |
| 1767 | $(Q) ranlib libs/$(CONFIG)/libgrpc_test_util.a |
| 1768 | endif |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 1769 | |
| 1770 | |
| 1771 | |
| 1772 | |
| 1773 | |
| 1774 | endif |
| 1775 | |
| 1776 | ifneq ($(NO_SECURE),true) |
| 1777 | ifneq ($(NO_DEPS),true) |
| 1778 | -include $(LIBGRPC_TEST_UTIL_OBJS:.o=.dep) |
| 1779 | endif |
| 1780 | endif |
| 1781 | |
| 1782 | objs/$(CONFIG)/test/core/end2end/cq_verifier.o: |
| 1783 | objs/$(CONFIG)/test/core/end2end/data/prod_roots_certs.o: |
| 1784 | objs/$(CONFIG)/test/core/end2end/data/server1_cert.o: |
| 1785 | objs/$(CONFIG)/test/core/end2end/data/server1_key.o: |
| 1786 | objs/$(CONFIG)/test/core/end2end/data/test_root_cert.o: |
| 1787 | objs/$(CONFIG)/test/core/iomgr/endpoint_tests.o: |
| 1788 | objs/$(CONFIG)/test/core/statistics/census_log_tests.o: |
| 1789 | objs/$(CONFIG)/test/core/transport/transport_end2end_tests.o: |
| 1790 | objs/$(CONFIG)/test/core/util/grpc_profiler.o: |
| 1791 | objs/$(CONFIG)/test/core/util/parse_hexstring.o: |
| 1792 | objs/$(CONFIG)/test/core/util/port_posix.o: |
| 1793 | objs/$(CONFIG)/test/core/util/slice_splitter.o: |
| 1794 | |
| 1795 | |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1796 | LIBGRPC_UNSECURE_SRC = \ |
| 1797 | src/core/channel/call_op_string.c \ |
| 1798 | src/core/channel/census_filter.c \ |
| 1799 | src/core/channel/channel_args.c \ |
| 1800 | src/core/channel/channel_stack.c \ |
| 1801 | src/core/channel/child_channel.c \ |
| 1802 | src/core/channel/client_channel.c \ |
| 1803 | src/core/channel/client_setup.c \ |
| 1804 | src/core/channel/connected_channel.c \ |
| 1805 | src/core/channel/http_client_filter.c \ |
| 1806 | src/core/channel/http_filter.c \ |
| 1807 | src/core/channel/http_server_filter.c \ |
| 1808 | src/core/channel/metadata_buffer.c \ |
| 1809 | src/core/channel/noop_filter.c \ |
| 1810 | src/core/compression/algorithm.c \ |
| 1811 | src/core/compression/message_compress.c \ |
| 1812 | src/core/httpcli/format_request.c \ |
| 1813 | src/core/httpcli/httpcli.c \ |
| 1814 | src/core/httpcli/httpcli_security_context.c \ |
| 1815 | src/core/httpcli/parser.c \ |
| 1816 | src/core/iomgr/alarm.c \ |
| 1817 | src/core/iomgr/alarm_heap.c \ |
| 1818 | src/core/iomgr/endpoint.c \ |
| 1819 | src/core/iomgr/endpoint_pair_posix.c \ |
ctiller | 58393c2 | 2015-01-07 14:03:30 -0800 | [diff] [blame] | 1820 | src/core/iomgr/fd_posix.c \ |
| 1821 | src/core/iomgr/iomgr.c \ |
| 1822 | src/core/iomgr/iomgr_posix.c \ |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 1823 | src/core/iomgr/pollset_kick_posix.c \ |
ctiller | 58393c2 | 2015-01-07 14:03:30 -0800 | [diff] [blame] | 1824 | src/core/iomgr/pollset_multipoller_with_poll_posix.c \ |
| 1825 | src/core/iomgr/pollset_posix.c \ |
Craig Tiller | e1addfe | 2015-01-21 15:08:12 -0800 | [diff] [blame] | 1826 | src/core/iomgr/pollset_windows.c \ |
Nicolas "Pixel" Noble | d5a9985 | 2015-01-24 01:27:48 -0800 | [diff] [blame] | 1827 | src/core/iomgr/resolve_address.c \ |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1828 | src/core/iomgr/sockaddr_utils.c \ |
| 1829 | src/core/iomgr/socket_utils_common_posix.c \ |
| 1830 | src/core/iomgr/socket_utils_linux.c \ |
| 1831 | src/core/iomgr/socket_utils_posix.c \ |
| 1832 | src/core/iomgr/tcp_client_posix.c \ |
| 1833 | src/core/iomgr/tcp_posix.c \ |
| 1834 | src/core/iomgr/tcp_server_posix.c \ |
| 1835 | src/core/iomgr/time_averaged_stats.c \ |
Nicolas Noble | 614c2bf | 2015-01-21 15:48:36 -0800 | [diff] [blame] | 1836 | src/core/json/json.c \ |
Nicolas Noble | e04455a | 2015-01-26 17:01:29 -0800 | [diff] [blame^] | 1837 | src/core/json/json_reader.c \ |
| 1838 | src/core/json/json_string.c \ |
| 1839 | src/core/json/json_writer.c \ |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1840 | src/core/statistics/census_init.c \ |
| 1841 | src/core/statistics/census_log.c \ |
| 1842 | src/core/statistics/census_rpc_stats.c \ |
| 1843 | src/core/statistics/census_tracing.c \ |
| 1844 | src/core/statistics/hash_table.c \ |
| 1845 | src/core/statistics/window_stats.c \ |
| 1846 | src/core/surface/byte_buffer.c \ |
| 1847 | src/core/surface/byte_buffer_reader.c \ |
| 1848 | src/core/surface/call.c \ |
| 1849 | src/core/surface/channel.c \ |
| 1850 | src/core/surface/channel_create.c \ |
| 1851 | src/core/surface/client.c \ |
| 1852 | src/core/surface/completion_queue.c \ |
| 1853 | src/core/surface/event_string.c \ |
| 1854 | src/core/surface/init.c \ |
| 1855 | src/core/surface/lame_client.c \ |
| 1856 | src/core/surface/secure_channel_create.c \ |
| 1857 | src/core/surface/secure_server_create.c \ |
| 1858 | src/core/surface/server.c \ |
| 1859 | src/core/surface/server_chttp2.c \ |
| 1860 | src/core/surface/server_create.c \ |
| 1861 | src/core/transport/chttp2/alpn.c \ |
| 1862 | src/core/transport/chttp2/bin_encoder.c \ |
| 1863 | src/core/transport/chttp2/frame_data.c \ |
| 1864 | src/core/transport/chttp2/frame_goaway.c \ |
| 1865 | src/core/transport/chttp2/frame_ping.c \ |
| 1866 | src/core/transport/chttp2/frame_rst_stream.c \ |
| 1867 | src/core/transport/chttp2/frame_settings.c \ |
| 1868 | src/core/transport/chttp2/frame_window_update.c \ |
| 1869 | src/core/transport/chttp2/hpack_parser.c \ |
| 1870 | src/core/transport/chttp2/hpack_table.c \ |
| 1871 | src/core/transport/chttp2/huffsyms.c \ |
| 1872 | src/core/transport/chttp2/status_conversion.c \ |
| 1873 | src/core/transport/chttp2/stream_encoder.c \ |
| 1874 | src/core/transport/chttp2/stream_map.c \ |
| 1875 | src/core/transport/chttp2/timeout_encoding.c \ |
ctiller | e4b4093 | 2015-01-07 12:13:17 -0800 | [diff] [blame] | 1876 | src/core/transport/chttp2/varint.c \ |
ctiller | 58393c2 | 2015-01-07 14:03:30 -0800 | [diff] [blame] | 1877 | src/core/transport/chttp2_transport.c \ |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1878 | src/core/transport/metadata.c \ |
| 1879 | src/core/transport/stream_op.c \ |
| 1880 | src/core/transport/transport.c \ |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1881 | |
| 1882 | PUBLIC_HEADERS_C += \ |
| 1883 | include/grpc/byte_buffer.h \ |
| 1884 | include/grpc/byte_buffer_reader.h \ |
| 1885 | include/grpc/grpc.h \ |
| 1886 | include/grpc/status.h \ |
| 1887 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1888 | LIBGRPC_UNSECURE_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_UNSECURE_SRC)))) |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1889 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 1890 | libs/$(CONFIG)/libgrpc_unsecure.a: $(ZLIB_DEP) $(LIBGRPC_UNSECURE_OBJS) |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1891 | $(E) "[AR] Creating $@" |
| 1892 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 1893 | $(Q) rm -f libs/$(CONFIG)/libgrpc_unsecure.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1894 | $(Q) $(AR) rcs libs/$(CONFIG)/libgrpc_unsecure.a $(LIBGRPC_UNSECURE_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 1895 | ifeq ($(SYSTEM),Darwin) |
| 1896 | $(Q) ranlib libs/$(CONFIG)/libgrpc_unsecure.a |
| 1897 | endif |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1898 | |
| 1899 | |
| 1900 | |
| 1901 | ifeq ($(SYSTEM),MINGW32) |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 1902 | libs/$(CONFIG)/grpc_unsecure.$(SHARED_EXT): $(LIBGRPC_UNSECURE_OBJS) $(ZLIB_DEP)libs/$(CONFIG)/gpr.$(SHARED_EXT) |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1903 | $(E) "[LD] Linking $@" |
| 1904 | $(Q) mkdir -p `dirname $@` |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1905 | $(Q) $(LD) $(LDFLAGS) -Llibs/$(CONFIG) -shared -Wl,--output-def=libs/$(CONFIG)/grpc_unsecure.def -Wl,--out-implib=libs/$(CONFIG)/libgrpc_unsecure-imp.a -o libs/$(CONFIG)/grpc_unsecure.$(SHARED_EXT) $(LIBGRPC_UNSECURE_OBJS) $(LDLIBS) -lgpr-imp |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1906 | else |
Craig Tiller | a614caa | 2015-01-15 09:33:21 -0800 | [diff] [blame] | 1907 | libs/$(CONFIG)/libgrpc_unsecure.$(SHARED_EXT): $(LIBGRPC_UNSECURE_OBJS) $(ZLIB_DEP) libs/$(CONFIG)/libgpr.$(SHARED_EXT) |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1908 | $(E) "[LD] Linking $@" |
| 1909 | $(Q) mkdir -p `dirname $@` |
| 1910 | ifeq ($(SYSTEM),Darwin) |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1911 | $(Q) $(LD) $(LDFLAGS) -Llibs/$(CONFIG) -dynamiclib -o libs/$(CONFIG)/libgrpc_unsecure.$(SHARED_EXT) $(LIBGRPC_UNSECURE_OBJS) $(LDLIBS) -lgpr |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1912 | else |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 1913 | $(Q) $(LD) $(LDFLAGS) -Llibs/$(CONFIG) -shared -Wl,-soname,libgrpc_unsecure.so.0 -o libs/$(CONFIG)/libgrpc_unsecure.$(SHARED_EXT) $(LIBGRPC_UNSECURE_OBJS) $(LDLIBS) -lgpr |
| 1914 | $(Q) ln -sf libgrpc_unsecure.$(SHARED_EXT) libs/$(CONFIG)/libgrpc_unsecure.so |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1915 | endif |
| 1916 | endif |
| 1917 | |
| 1918 | |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1919 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 1920 | -include $(LIBGRPC_UNSECURE_OBJS:.o=.dep) |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 1921 | endif |
| 1922 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 1923 | objs/$(CONFIG)/src/core/channel/call_op_string.o: |
| 1924 | objs/$(CONFIG)/src/core/channel/census_filter.o: |
| 1925 | objs/$(CONFIG)/src/core/channel/channel_args.o: |
| 1926 | objs/$(CONFIG)/src/core/channel/channel_stack.o: |
| 1927 | objs/$(CONFIG)/src/core/channel/child_channel.o: |
| 1928 | objs/$(CONFIG)/src/core/channel/client_channel.o: |
| 1929 | objs/$(CONFIG)/src/core/channel/client_setup.o: |
| 1930 | objs/$(CONFIG)/src/core/channel/connected_channel.o: |
| 1931 | objs/$(CONFIG)/src/core/channel/http_client_filter.o: |
| 1932 | objs/$(CONFIG)/src/core/channel/http_filter.o: |
| 1933 | objs/$(CONFIG)/src/core/channel/http_server_filter.o: |
| 1934 | objs/$(CONFIG)/src/core/channel/metadata_buffer.o: |
| 1935 | objs/$(CONFIG)/src/core/channel/noop_filter.o: |
| 1936 | objs/$(CONFIG)/src/core/compression/algorithm.o: |
| 1937 | objs/$(CONFIG)/src/core/compression/message_compress.o: |
| 1938 | objs/$(CONFIG)/src/core/httpcli/format_request.o: |
| 1939 | objs/$(CONFIG)/src/core/httpcli/httpcli.o: |
| 1940 | objs/$(CONFIG)/src/core/httpcli/httpcli_security_context.o: |
| 1941 | objs/$(CONFIG)/src/core/httpcli/parser.o: |
| 1942 | objs/$(CONFIG)/src/core/iomgr/alarm.o: |
| 1943 | objs/$(CONFIG)/src/core/iomgr/alarm_heap.o: |
| 1944 | objs/$(CONFIG)/src/core/iomgr/endpoint.o: |
| 1945 | objs/$(CONFIG)/src/core/iomgr/endpoint_pair_posix.o: |
| 1946 | objs/$(CONFIG)/src/core/iomgr/fd_posix.o: |
| 1947 | objs/$(CONFIG)/src/core/iomgr/iomgr.o: |
| 1948 | objs/$(CONFIG)/src/core/iomgr/iomgr_posix.o: |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 1949 | objs/$(CONFIG)/src/core/iomgr/pollset_kick_posix.o: |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 1950 | objs/$(CONFIG)/src/core/iomgr/pollset_multipoller_with_poll_posix.o: |
| 1951 | objs/$(CONFIG)/src/core/iomgr/pollset_posix.o: |
Craig Tiller | e1addfe | 2015-01-21 15:08:12 -0800 | [diff] [blame] | 1952 | objs/$(CONFIG)/src/core/iomgr/pollset_windows.o: |
Nicolas "Pixel" Noble | d5a9985 | 2015-01-24 01:27:48 -0800 | [diff] [blame] | 1953 | objs/$(CONFIG)/src/core/iomgr/resolve_address.o: |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 1954 | objs/$(CONFIG)/src/core/iomgr/sockaddr_utils.o: |
| 1955 | objs/$(CONFIG)/src/core/iomgr/socket_utils_common_posix.o: |
| 1956 | objs/$(CONFIG)/src/core/iomgr/socket_utils_linux.o: |
| 1957 | objs/$(CONFIG)/src/core/iomgr/socket_utils_posix.o: |
| 1958 | objs/$(CONFIG)/src/core/iomgr/tcp_client_posix.o: |
| 1959 | objs/$(CONFIG)/src/core/iomgr/tcp_posix.o: |
| 1960 | objs/$(CONFIG)/src/core/iomgr/tcp_server_posix.o: |
| 1961 | objs/$(CONFIG)/src/core/iomgr/time_averaged_stats.o: |
Nicolas Noble | 614c2bf | 2015-01-21 15:48:36 -0800 | [diff] [blame] | 1962 | objs/$(CONFIG)/src/core/json/json.o: |
Nicolas Noble | e04455a | 2015-01-26 17:01:29 -0800 | [diff] [blame^] | 1963 | objs/$(CONFIG)/src/core/json/json_reader.o: |
| 1964 | objs/$(CONFIG)/src/core/json/json_string.o: |
| 1965 | objs/$(CONFIG)/src/core/json/json_writer.o: |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 1966 | objs/$(CONFIG)/src/core/statistics/census_init.o: |
| 1967 | objs/$(CONFIG)/src/core/statistics/census_log.o: |
| 1968 | objs/$(CONFIG)/src/core/statistics/census_rpc_stats.o: |
| 1969 | objs/$(CONFIG)/src/core/statistics/census_tracing.o: |
| 1970 | objs/$(CONFIG)/src/core/statistics/hash_table.o: |
| 1971 | objs/$(CONFIG)/src/core/statistics/window_stats.o: |
| 1972 | objs/$(CONFIG)/src/core/surface/byte_buffer.o: |
| 1973 | objs/$(CONFIG)/src/core/surface/byte_buffer_reader.o: |
| 1974 | objs/$(CONFIG)/src/core/surface/call.o: |
| 1975 | objs/$(CONFIG)/src/core/surface/channel.o: |
| 1976 | objs/$(CONFIG)/src/core/surface/channel_create.o: |
| 1977 | objs/$(CONFIG)/src/core/surface/client.o: |
| 1978 | objs/$(CONFIG)/src/core/surface/completion_queue.o: |
| 1979 | objs/$(CONFIG)/src/core/surface/event_string.o: |
| 1980 | objs/$(CONFIG)/src/core/surface/init.o: |
| 1981 | objs/$(CONFIG)/src/core/surface/lame_client.o: |
| 1982 | objs/$(CONFIG)/src/core/surface/secure_channel_create.o: |
| 1983 | objs/$(CONFIG)/src/core/surface/secure_server_create.o: |
| 1984 | objs/$(CONFIG)/src/core/surface/server.o: |
| 1985 | objs/$(CONFIG)/src/core/surface/server_chttp2.o: |
| 1986 | objs/$(CONFIG)/src/core/surface/server_create.o: |
| 1987 | objs/$(CONFIG)/src/core/transport/chttp2/alpn.o: |
| 1988 | objs/$(CONFIG)/src/core/transport/chttp2/bin_encoder.o: |
| 1989 | objs/$(CONFIG)/src/core/transport/chttp2/frame_data.o: |
| 1990 | objs/$(CONFIG)/src/core/transport/chttp2/frame_goaway.o: |
| 1991 | objs/$(CONFIG)/src/core/transport/chttp2/frame_ping.o: |
| 1992 | objs/$(CONFIG)/src/core/transport/chttp2/frame_rst_stream.o: |
| 1993 | objs/$(CONFIG)/src/core/transport/chttp2/frame_settings.o: |
| 1994 | objs/$(CONFIG)/src/core/transport/chttp2/frame_window_update.o: |
| 1995 | objs/$(CONFIG)/src/core/transport/chttp2/hpack_parser.o: |
| 1996 | objs/$(CONFIG)/src/core/transport/chttp2/hpack_table.o: |
| 1997 | objs/$(CONFIG)/src/core/transport/chttp2/huffsyms.o: |
| 1998 | objs/$(CONFIG)/src/core/transport/chttp2/status_conversion.o: |
| 1999 | objs/$(CONFIG)/src/core/transport/chttp2/stream_encoder.o: |
| 2000 | objs/$(CONFIG)/src/core/transport/chttp2/stream_map.o: |
| 2001 | objs/$(CONFIG)/src/core/transport/chttp2/timeout_encoding.o: |
| 2002 | objs/$(CONFIG)/src/core/transport/chttp2/varint.o: |
| 2003 | objs/$(CONFIG)/src/core/transport/chttp2_transport.o: |
| 2004 | objs/$(CONFIG)/src/core/transport/metadata.o: |
| 2005 | objs/$(CONFIG)/src/core/transport/stream_op.o: |
| 2006 | objs/$(CONFIG)/src/core/transport/transport.o: |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2007 | |
nnoble | c87b1c5 | 2015-01-05 17:15:18 -0800 | [diff] [blame] | 2008 | |
Craig Tiller | 996d9df | 2015-01-19 21:06:50 -0800 | [diff] [blame] | 2009 | LIBGRPC++_SRC = \ |
| 2010 | src/cpp/client/channel.cc \ |
| 2011 | src/cpp/client/channel_arguments.cc \ |
| 2012 | src/cpp/client/client_context.cc \ |
| 2013 | src/cpp/client/create_channel.cc \ |
| 2014 | src/cpp/client/credentials.cc \ |
| 2015 | src/cpp/client/internal_stub.cc \ |
| 2016 | src/cpp/common/rpc_method.cc \ |
| 2017 | src/cpp/proto/proto_utils.cc \ |
| 2018 | src/cpp/server/async_server.cc \ |
| 2019 | src/cpp/server/async_server_context.cc \ |
| 2020 | src/cpp/server/completion_queue.cc \ |
| 2021 | src/cpp/server/server.cc \ |
| 2022 | src/cpp/server/server_builder.cc \ |
| 2023 | src/cpp/server/server_context_impl.cc \ |
| 2024 | src/cpp/server/server_credentials.cc \ |
| 2025 | src/cpp/server/server_rpc_handler.cc \ |
| 2026 | src/cpp/server/thread_pool.cc \ |
| 2027 | src/cpp/stream/stream_context.cc \ |
| 2028 | src/cpp/util/status.cc \ |
| 2029 | src/cpp/util/time.cc \ |
| 2030 | |
| 2031 | PUBLIC_HEADERS_CXX += \ |
| 2032 | include/grpc++/async_server.h \ |
| 2033 | include/grpc++/async_server_context.h \ |
| 2034 | include/grpc++/channel_arguments.h \ |
| 2035 | include/grpc++/channel_interface.h \ |
| 2036 | include/grpc++/client_context.h \ |
| 2037 | include/grpc++/completion_queue.h \ |
| 2038 | include/grpc++/config.h \ |
| 2039 | include/grpc++/create_channel.h \ |
| 2040 | include/grpc++/credentials.h \ |
| 2041 | include/grpc++/impl/internal_stub.h \ |
| 2042 | include/grpc++/impl/rpc_method.h \ |
| 2043 | include/grpc++/impl/rpc_service_method.h \ |
| 2044 | include/grpc++/server.h \ |
| 2045 | include/grpc++/server_builder.h \ |
| 2046 | include/grpc++/server_context.h \ |
| 2047 | include/grpc++/server_credentials.h \ |
| 2048 | include/grpc++/status.h \ |
| 2049 | include/grpc++/stream.h \ |
| 2050 | include/grpc++/stream_context_interface.h \ |
| 2051 | |
| 2052 | LIBGRPC++_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_SRC)))) |
| 2053 | |
| 2054 | ifeq ($(NO_SECURE),true) |
| 2055 | |
| 2056 | # You can't build secure libraries if you don't have OpenSSL with ALPN. |
| 2057 | |
| 2058 | libs/$(CONFIG)/libgrpc++.a: openssl_dep_error |
| 2059 | |
| 2060 | ifeq ($(SYSTEM),MINGW32) |
| 2061 | libs/$(CONFIG)/grpc++.$(SHARED_EXT): openssl_dep_error |
| 2062 | else |
| 2063 | libs/$(CONFIG)/libgrpc++.$(SHARED_EXT): openssl_dep_error |
| 2064 | endif |
| 2065 | |
| 2066 | else |
| 2067 | |
| 2068 | ifneq ($(OPENSSL_DEP),) |
| 2069 | src/cpp/client/channel.cc: $(OPENSSL_DEP) |
| 2070 | src/cpp/client/channel_arguments.cc: $(OPENSSL_DEP) |
| 2071 | src/cpp/client/client_context.cc: $(OPENSSL_DEP) |
| 2072 | src/cpp/client/create_channel.cc: $(OPENSSL_DEP) |
| 2073 | src/cpp/client/credentials.cc: $(OPENSSL_DEP) |
| 2074 | src/cpp/client/internal_stub.cc: $(OPENSSL_DEP) |
| 2075 | src/cpp/common/rpc_method.cc: $(OPENSSL_DEP) |
| 2076 | src/cpp/proto/proto_utils.cc: $(OPENSSL_DEP) |
| 2077 | src/cpp/server/async_server.cc: $(OPENSSL_DEP) |
| 2078 | src/cpp/server/async_server_context.cc: $(OPENSSL_DEP) |
| 2079 | src/cpp/server/completion_queue.cc: $(OPENSSL_DEP) |
| 2080 | src/cpp/server/server.cc: $(OPENSSL_DEP) |
| 2081 | src/cpp/server/server_builder.cc: $(OPENSSL_DEP) |
| 2082 | src/cpp/server/server_context_impl.cc: $(OPENSSL_DEP) |
| 2083 | src/cpp/server/server_credentials.cc: $(OPENSSL_DEP) |
| 2084 | src/cpp/server/server_rpc_handler.cc: $(OPENSSL_DEP) |
| 2085 | src/cpp/server/thread_pool.cc: $(OPENSSL_DEP) |
| 2086 | src/cpp/stream/stream_context.cc: $(OPENSSL_DEP) |
| 2087 | src/cpp/util/status.cc: $(OPENSSL_DEP) |
| 2088 | src/cpp/util/time.cc: $(OPENSSL_DEP) |
| 2089 | endif |
| 2090 | |
| 2091 | libs/$(CONFIG)/libgrpc++.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(LIBGRPC++_OBJS) |
| 2092 | $(E) "[AR] Creating $@" |
| 2093 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2094 | $(Q) rm -f libs/$(CONFIG)/libgrpc++.a |
Craig Tiller | 996d9df | 2015-01-19 21:06:50 -0800 | [diff] [blame] | 2095 | $(Q) $(AR) rcs libs/$(CONFIG)/libgrpc++.a $(LIBGRPC++_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2096 | ifeq ($(SYSTEM),Darwin) |
| 2097 | $(Q) ranlib libs/$(CONFIG)/libgrpc++.a |
| 2098 | endif |
Craig Tiller | 996d9df | 2015-01-19 21:06:50 -0800 | [diff] [blame] | 2099 | |
| 2100 | |
| 2101 | |
| 2102 | ifeq ($(SYSTEM),MINGW32) |
| 2103 | libs/$(CONFIG)/grpc++.$(SHARED_EXT): $(LIBGRPC++_OBJS) $(ZLIB_DEP)libs/$(CONFIG)/grpc.$(SHARED_EXT) $(OPENSSL_DEP) |
| 2104 | $(E) "[LD] Linking $@" |
| 2105 | $(Q) mkdir -p `dirname $@` |
| 2106 | $(Q) $(LDXX) $(LDFLAGS) -Llibs/$(CONFIG) -shared -Wl,--output-def=libs/$(CONFIG)/grpc++.def -Wl,--out-implib=libs/$(CONFIG)/libgrpc++-imp.a -o libs/$(CONFIG)/grpc++.$(SHARED_EXT) $(LIBGRPC++_OBJS) $(LDLIBS) $(LDLIBS_SECURE) $(OPENSSL_MERGE_LIBS) -lgrpc-imp |
| 2107 | else |
| 2108 | libs/$(CONFIG)/libgrpc++.$(SHARED_EXT): $(LIBGRPC++_OBJS) $(ZLIB_DEP) libs/$(CONFIG)/libgrpc.$(SHARED_EXT) $(OPENSSL_DEP) |
| 2109 | $(E) "[LD] Linking $@" |
| 2110 | $(Q) mkdir -p `dirname $@` |
| 2111 | ifeq ($(SYSTEM),Darwin) |
| 2112 | $(Q) $(LDXX) $(LDFLAGS) -Llibs/$(CONFIG) -dynamiclib -o libs/$(CONFIG)/libgrpc++.$(SHARED_EXT) $(LIBGRPC++_OBJS) $(LDLIBS) $(LDLIBS_SECURE) $(OPENSSL_MERGE_LIBS) -lgrpc |
| 2113 | else |
| 2114 | $(Q) $(LDXX) $(LDFLAGS) -Llibs/$(CONFIG) -shared -Wl,-soname,libgrpc++.so.0 -o libs/$(CONFIG)/libgrpc++.$(SHARED_EXT) $(LIBGRPC++_OBJS) $(LDLIBS) $(LDLIBS_SECURE) $(OPENSSL_MERGE_LIBS) -lgrpc |
| 2115 | $(Q) ln -sf libgrpc++.$(SHARED_EXT) libs/$(CONFIG)/libgrpc++.so |
| 2116 | endif |
| 2117 | endif |
| 2118 | |
| 2119 | |
| 2120 | endif |
| 2121 | |
| 2122 | ifneq ($(NO_SECURE),true) |
| 2123 | ifneq ($(NO_DEPS),true) |
| 2124 | -include $(LIBGRPC++_OBJS:.o=.dep) |
| 2125 | endif |
| 2126 | endif |
| 2127 | |
| 2128 | objs/$(CONFIG)/src/cpp/client/channel.o: |
| 2129 | objs/$(CONFIG)/src/cpp/client/channel_arguments.o: |
| 2130 | objs/$(CONFIG)/src/cpp/client/client_context.o: |
| 2131 | objs/$(CONFIG)/src/cpp/client/create_channel.o: |
| 2132 | objs/$(CONFIG)/src/cpp/client/credentials.o: |
| 2133 | objs/$(CONFIG)/src/cpp/client/internal_stub.o: |
| 2134 | objs/$(CONFIG)/src/cpp/common/rpc_method.o: |
| 2135 | objs/$(CONFIG)/src/cpp/proto/proto_utils.o: |
| 2136 | objs/$(CONFIG)/src/cpp/server/async_server.o: |
| 2137 | objs/$(CONFIG)/src/cpp/server/async_server_context.o: |
| 2138 | objs/$(CONFIG)/src/cpp/server/completion_queue.o: |
| 2139 | objs/$(CONFIG)/src/cpp/server/server.o: |
| 2140 | objs/$(CONFIG)/src/cpp/server/server_builder.o: |
| 2141 | objs/$(CONFIG)/src/cpp/server/server_context_impl.o: |
| 2142 | objs/$(CONFIG)/src/cpp/server/server_credentials.o: |
| 2143 | objs/$(CONFIG)/src/cpp/server/server_rpc_handler.o: |
| 2144 | objs/$(CONFIG)/src/cpp/server/thread_pool.o: |
| 2145 | objs/$(CONFIG)/src/cpp/stream/stream_context.o: |
| 2146 | objs/$(CONFIG)/src/cpp/util/status.o: |
| 2147 | objs/$(CONFIG)/src/cpp/util/time.o: |
| 2148 | |
| 2149 | |
| 2150 | LIBGRPC++_TEST_UTIL_SRC = \ |
Yang Gao | ed3ed70 | 2015-01-23 16:09:48 -0800 | [diff] [blame] | 2151 | gens/test/cpp/util/messages.pb.cc \ |
Craig Tiller | 996d9df | 2015-01-19 21:06:50 -0800 | [diff] [blame] | 2152 | gens/test/cpp/util/echo.pb.cc \ |
| 2153 | gens/test/cpp/util/echo_duplicate.pb.cc \ |
Craig Tiller | 996d9df | 2015-01-19 21:06:50 -0800 | [diff] [blame] | 2154 | test/cpp/end2end/async_test_server.cc \ |
| 2155 | test/cpp/util/create_test_channel.cc \ |
| 2156 | |
| 2157 | |
| 2158 | LIBGRPC++_TEST_UTIL_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_TEST_UTIL_SRC)))) |
| 2159 | |
| 2160 | ifeq ($(NO_SECURE),true) |
| 2161 | |
| 2162 | # You can't build secure libraries if you don't have OpenSSL with ALPN. |
| 2163 | |
| 2164 | libs/$(CONFIG)/libgrpc++_test_util.a: openssl_dep_error |
| 2165 | |
| 2166 | |
| 2167 | else |
| 2168 | |
| 2169 | ifneq ($(OPENSSL_DEP),) |
Yang Gao | ed3ed70 | 2015-01-23 16:09:48 -0800 | [diff] [blame] | 2170 | test/cpp/util/messages.proto: $(OPENSSL_DEP) |
Craig Tiller | 996d9df | 2015-01-19 21:06:50 -0800 | [diff] [blame] | 2171 | test/cpp/util/echo.proto: $(OPENSSL_DEP) |
| 2172 | test/cpp/util/echo_duplicate.proto: $(OPENSSL_DEP) |
Craig Tiller | 996d9df | 2015-01-19 21:06:50 -0800 | [diff] [blame] | 2173 | test/cpp/end2end/async_test_server.cc: $(OPENSSL_DEP) |
| 2174 | test/cpp/util/create_test_channel.cc: $(OPENSSL_DEP) |
| 2175 | endif |
| 2176 | |
| 2177 | libs/$(CONFIG)/libgrpc++_test_util.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(LIBGRPC++_TEST_UTIL_OBJS) |
| 2178 | $(E) "[AR] Creating $@" |
| 2179 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2180 | $(Q) rm -f libs/$(CONFIG)/libgrpc++_test_util.a |
Craig Tiller | 996d9df | 2015-01-19 21:06:50 -0800 | [diff] [blame] | 2181 | $(Q) $(AR) rcs libs/$(CONFIG)/libgrpc++_test_util.a $(LIBGRPC++_TEST_UTIL_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2182 | ifeq ($(SYSTEM),Darwin) |
| 2183 | $(Q) ranlib libs/$(CONFIG)/libgrpc++_test_util.a |
| 2184 | endif |
Craig Tiller | 996d9df | 2015-01-19 21:06:50 -0800 | [diff] [blame] | 2185 | |
| 2186 | |
| 2187 | |
| 2188 | |
| 2189 | |
| 2190 | endif |
| 2191 | |
| 2192 | ifneq ($(NO_SECURE),true) |
| 2193 | ifneq ($(NO_DEPS),true) |
| 2194 | -include $(LIBGRPC++_TEST_UTIL_OBJS:.o=.dep) |
| 2195 | endif |
| 2196 | endif |
| 2197 | |
| 2198 | |
| 2199 | |
| 2200 | |
Yang Gao | ed3ed70 | 2015-01-23 16:09:48 -0800 | [diff] [blame] | 2201 | objs/$(CONFIG)/test/cpp/end2end/async_test_server.o: gens/test/cpp/util/messages.pb.cc gens/test/cpp/util/echo.pb.cc gens/test/cpp/util/echo_duplicate.pb.cc |
| 2202 | objs/$(CONFIG)/test/cpp/util/create_test_channel.o: gens/test/cpp/util/messages.pb.cc gens/test/cpp/util/echo.pb.cc gens/test/cpp/util/echo_duplicate.pb.cc |
Craig Tiller | 996d9df | 2015-01-19 21:06:50 -0800 | [diff] [blame] | 2203 | |
| 2204 | |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 2205 | LIBTIPS_CLIENT_LIB_SRC = \ |
| 2206 | gens/examples/tips/label.pb.cc \ |
| 2207 | gens/examples/tips/empty.pb.cc \ |
| 2208 | gens/examples/tips/pubsub.pb.cc \ |
| 2209 | examples/tips/client.cc \ |
| 2210 | |
| 2211 | |
| 2212 | LIBTIPS_CLIENT_LIB_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBTIPS_CLIENT_LIB_SRC)))) |
| 2213 | |
| 2214 | ifeq ($(NO_SECURE),true) |
| 2215 | |
| 2216 | # You can't build secure libraries if you don't have OpenSSL with ALPN. |
| 2217 | |
| 2218 | libs/$(CONFIG)/libtips_client_lib.a: openssl_dep_error |
| 2219 | |
| 2220 | |
| 2221 | else |
| 2222 | |
| 2223 | ifneq ($(OPENSSL_DEP),) |
| 2224 | examples/tips/label.proto: $(OPENSSL_DEP) |
| 2225 | examples/tips/empty.proto: $(OPENSSL_DEP) |
| 2226 | examples/tips/pubsub.proto: $(OPENSSL_DEP) |
| 2227 | examples/tips/client.cc: $(OPENSSL_DEP) |
| 2228 | endif |
| 2229 | |
| 2230 | libs/$(CONFIG)/libtips_client_lib.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(LIBTIPS_CLIENT_LIB_OBJS) |
| 2231 | $(E) "[AR] Creating $@" |
| 2232 | $(Q) mkdir -p `dirname $@` |
Nicolas "Pixel" Noble | be52018 | 2015-01-23 02:32:49 +0100 | [diff] [blame] | 2233 | $(Q) rm -f libs/$(CONFIG)/libtips_client_lib.a |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 2234 | $(Q) $(AR) rcs libs/$(CONFIG)/libtips_client_lib.a $(LIBTIPS_CLIENT_LIB_OBJS) |
Nicolas "Pixel" Noble | be52018 | 2015-01-23 02:32:49 +0100 | [diff] [blame] | 2235 | ifeq ($(SYSTEM),Darwin) |
| 2236 | $(Q) ranlib libs/$(CONFIG)/libtips_client_lib.a |
| 2237 | endif |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 2238 | |
| 2239 | |
| 2240 | |
| 2241 | |
| 2242 | |
| 2243 | endif |
| 2244 | |
| 2245 | ifneq ($(NO_SECURE),true) |
| 2246 | ifneq ($(NO_DEPS),true) |
| 2247 | -include $(LIBTIPS_CLIENT_LIB_OBJS:.o=.dep) |
| 2248 | endif |
| 2249 | endif |
| 2250 | |
| 2251 | |
| 2252 | |
| 2253 | |
| 2254 | objs/$(CONFIG)/examples/tips/client.o: gens/examples/tips/label.pb.cc gens/examples/tips/empty.pb.cc gens/examples/tips/pubsub.pb.cc |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2255 | |
| 2256 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2257 | LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_SRC = \ |
| 2258 | test/core/end2end/fixtures/chttp2_fake_security.c \ |
| 2259 | |
| 2260 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2261 | LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2262 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2263 | ifeq ($(NO_SECURE),true) |
| 2264 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 2265 | # You can't build secure libraries if you don't have OpenSSL with ALPN. |
| 2266 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2267 | libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2268 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2269 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2270 | else |
| 2271 | |
Nicolas "Pixel" Noble | 17f2b59 | 2015-01-16 07:09:10 +0100 | [diff] [blame] | 2272 | ifneq ($(OPENSSL_DEP),) |
| 2273 | test/core/end2end/fixtures/chttp2_fake_security.c: $(OPENSSL_DEP) |
| 2274 | endif |
| 2275 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2276 | libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2277 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2278 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2279 | $(Q) rm -f libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2280 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a $(LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2281 | ifeq ($(SYSTEM),Darwin) |
| 2282 | $(Q) ranlib libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a |
| 2283 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2284 | |
| 2285 | |
| 2286 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2287 | |
| 2288 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2289 | endif |
| 2290 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2291 | ifneq ($(NO_SECURE),true) |
| 2292 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2293 | -include $(LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2294 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2295 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2296 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2297 | objs/$(CONFIG)/test/core/end2end/fixtures/chttp2_fake_security.o: |
| 2298 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2299 | |
| 2300 | LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_SRC = \ |
| 2301 | test/core/end2end/fixtures/chttp2_fullstack.c \ |
| 2302 | |
| 2303 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2304 | LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2305 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2306 | ifeq ($(NO_SECURE),true) |
| 2307 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 2308 | # You can't build secure libraries if you don't have OpenSSL with ALPN. |
| 2309 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2310 | libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2311 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2312 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2313 | else |
| 2314 | |
Nicolas "Pixel" Noble | 17f2b59 | 2015-01-16 07:09:10 +0100 | [diff] [blame] | 2315 | ifneq ($(OPENSSL_DEP),) |
| 2316 | test/core/end2end/fixtures/chttp2_fullstack.c: $(OPENSSL_DEP) |
| 2317 | endif |
| 2318 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2319 | libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2320 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2321 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2322 | $(Q) rm -f libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2323 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a $(LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2324 | ifeq ($(SYSTEM),Darwin) |
| 2325 | $(Q) ranlib libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a |
| 2326 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2327 | |
| 2328 | |
| 2329 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2330 | |
| 2331 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2332 | endif |
| 2333 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2334 | ifneq ($(NO_SECURE),true) |
| 2335 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2336 | -include $(LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2337 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2338 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2339 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2340 | objs/$(CONFIG)/test/core/end2end/fixtures/chttp2_fullstack.o: |
| 2341 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2342 | |
| 2343 | LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_SRC = \ |
| 2344 | test/core/end2end/fixtures/chttp2_simple_ssl_fullstack.c \ |
| 2345 | |
| 2346 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2347 | LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2348 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2349 | ifeq ($(NO_SECURE),true) |
| 2350 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 2351 | # You can't build secure libraries if you don't have OpenSSL with ALPN. |
| 2352 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2353 | libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2354 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2355 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2356 | else |
| 2357 | |
Nicolas "Pixel" Noble | 17f2b59 | 2015-01-16 07:09:10 +0100 | [diff] [blame] | 2358 | ifneq ($(OPENSSL_DEP),) |
| 2359 | test/core/end2end/fixtures/chttp2_simple_ssl_fullstack.c: $(OPENSSL_DEP) |
| 2360 | endif |
| 2361 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2362 | libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2363 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2364 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2365 | $(Q) rm -f libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2366 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2367 | ifeq ($(SYSTEM),Darwin) |
| 2368 | $(Q) ranlib libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a |
| 2369 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2370 | |
| 2371 | |
| 2372 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2373 | |
| 2374 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2375 | endif |
| 2376 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2377 | ifneq ($(NO_SECURE),true) |
| 2378 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2379 | -include $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2380 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2381 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2382 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2383 | objs/$(CONFIG)/test/core/end2end/fixtures/chttp2_simple_ssl_fullstack.o: |
| 2384 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2385 | |
| 2386 | LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SRC = \ |
| 2387 | test/core/end2end/fixtures/chttp2_simple_ssl_with_oauth2_fullstack.c \ |
| 2388 | |
| 2389 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2390 | LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2391 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2392 | ifeq ($(NO_SECURE),true) |
| 2393 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 2394 | # You can't build secure libraries if you don't have OpenSSL with ALPN. |
| 2395 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2396 | libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2397 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2398 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2399 | else |
| 2400 | |
Nicolas "Pixel" Noble | 17f2b59 | 2015-01-16 07:09:10 +0100 | [diff] [blame] | 2401 | ifneq ($(OPENSSL_DEP),) |
| 2402 | test/core/end2end/fixtures/chttp2_simple_ssl_with_oauth2_fullstack.c: $(OPENSSL_DEP) |
| 2403 | endif |
| 2404 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2405 | libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2406 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2407 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2408 | $(Q) rm -f libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2409 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2410 | ifeq ($(SYSTEM),Darwin) |
| 2411 | $(Q) ranlib libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a |
| 2412 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2413 | |
| 2414 | |
| 2415 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2416 | |
| 2417 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2418 | endif |
| 2419 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2420 | ifneq ($(NO_SECURE),true) |
| 2421 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2422 | -include $(LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2423 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2424 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2425 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2426 | objs/$(CONFIG)/test/core/end2end/fixtures/chttp2_simple_ssl_with_oauth2_fullstack.o: |
| 2427 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2428 | |
| 2429 | LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_SRC = \ |
| 2430 | test/core/end2end/fixtures/chttp2_socket_pair.c \ |
| 2431 | |
| 2432 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2433 | LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2434 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2435 | ifeq ($(NO_SECURE),true) |
| 2436 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 2437 | # You can't build secure libraries if you don't have OpenSSL with ALPN. |
| 2438 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2439 | libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2440 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2441 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2442 | else |
| 2443 | |
Nicolas "Pixel" Noble | 17f2b59 | 2015-01-16 07:09:10 +0100 | [diff] [blame] | 2444 | ifneq ($(OPENSSL_DEP),) |
| 2445 | test/core/end2end/fixtures/chttp2_socket_pair.c: $(OPENSSL_DEP) |
| 2446 | endif |
| 2447 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2448 | libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2449 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2450 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2451 | $(Q) rm -f libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2452 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2453 | ifeq ($(SYSTEM),Darwin) |
| 2454 | $(Q) ranlib libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a |
| 2455 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2456 | |
| 2457 | |
| 2458 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2459 | |
| 2460 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2461 | endif |
| 2462 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2463 | ifneq ($(NO_SECURE),true) |
| 2464 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2465 | -include $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2466 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2467 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2468 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2469 | objs/$(CONFIG)/test/core/end2end/fixtures/chttp2_socket_pair.o: |
| 2470 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2471 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 2472 | LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SRC = \ |
| 2473 | test/core/end2end/fixtures/chttp2_socket_pair_one_byte_at_a_time.c \ |
| 2474 | |
| 2475 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2476 | LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 2477 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2478 | ifeq ($(NO_SECURE),true) |
| 2479 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 2480 | # You can't build secure libraries if you don't have OpenSSL with ALPN. |
| 2481 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2482 | libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2483 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2484 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2485 | else |
| 2486 | |
Nicolas "Pixel" Noble | 17f2b59 | 2015-01-16 07:09:10 +0100 | [diff] [blame] | 2487 | ifneq ($(OPENSSL_DEP),) |
| 2488 | test/core/end2end/fixtures/chttp2_socket_pair_one_byte_at_a_time.c: $(OPENSSL_DEP) |
| 2489 | endif |
| 2490 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2491 | libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_OBJS) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 2492 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2493 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2494 | $(Q) rm -f libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2495 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2496 | ifeq ($(SYSTEM),Darwin) |
| 2497 | $(Q) ranlib libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a |
| 2498 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 2499 | |
| 2500 | |
| 2501 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2502 | |
| 2503 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2504 | endif |
| 2505 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2506 | ifneq ($(NO_SECURE),true) |
| 2507 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2508 | -include $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 2509 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2510 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 2511 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2512 | objs/$(CONFIG)/test/core/end2end/fixtures/chttp2_socket_pair_one_byte_at_a_time.o: |
| 2513 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 2514 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2515 | LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_SRC = \ |
| 2516 | test/core/end2end/tests/cancel_after_accept.c \ |
| 2517 | |
| 2518 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2519 | LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2520 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2521 | libs/$(CONFIG)/libend2end_test_cancel_after_accept.a: $(ZLIB_DEP) $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2522 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2523 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2524 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_cancel_after_accept.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2525 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_cancel_after_accept.a $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2526 | ifeq ($(SYSTEM),Darwin) |
| 2527 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_cancel_after_accept.a |
| 2528 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2529 | |
| 2530 | |
| 2531 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2532 | |
| 2533 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2534 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2535 | -include $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2536 | endif |
| 2537 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2538 | objs/$(CONFIG)/test/core/end2end/tests/cancel_after_accept.o: |
| 2539 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2540 | |
| 2541 | LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_SRC = \ |
| 2542 | test/core/end2end/tests/cancel_after_accept_and_writes_closed.c \ |
| 2543 | |
| 2544 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2545 | LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2546 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2547 | libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a: $(ZLIB_DEP) $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2548 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2549 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2550 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2551 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2552 | ifeq ($(SYSTEM),Darwin) |
| 2553 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a |
| 2554 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2555 | |
| 2556 | |
| 2557 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2558 | |
| 2559 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2560 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2561 | -include $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2562 | endif |
| 2563 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2564 | objs/$(CONFIG)/test/core/end2end/tests/cancel_after_accept_and_writes_closed.o: |
| 2565 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2566 | |
| 2567 | LIBEND2END_TEST_CANCEL_AFTER_INVOKE_SRC = \ |
| 2568 | test/core/end2end/tests/cancel_after_invoke.c \ |
| 2569 | |
| 2570 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2571 | LIBEND2END_TEST_CANCEL_AFTER_INVOKE_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_CANCEL_AFTER_INVOKE_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2572 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2573 | libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a: $(ZLIB_DEP) $(LIBEND2END_TEST_CANCEL_AFTER_INVOKE_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2574 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2575 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2576 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2577 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a $(LIBEND2END_TEST_CANCEL_AFTER_INVOKE_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2578 | ifeq ($(SYSTEM),Darwin) |
| 2579 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a |
| 2580 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2581 | |
| 2582 | |
| 2583 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2584 | |
| 2585 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2586 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2587 | -include $(LIBEND2END_TEST_CANCEL_AFTER_INVOKE_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2588 | endif |
| 2589 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2590 | objs/$(CONFIG)/test/core/end2end/tests/cancel_after_invoke.o: |
| 2591 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2592 | |
| 2593 | LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_SRC = \ |
| 2594 | test/core/end2end/tests/cancel_before_invoke.c \ |
| 2595 | |
| 2596 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2597 | LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2598 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2599 | libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a: $(ZLIB_DEP) $(LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2600 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2601 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2602 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2603 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a $(LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2604 | ifeq ($(SYSTEM),Darwin) |
| 2605 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a |
| 2606 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2607 | |
| 2608 | |
| 2609 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2610 | |
| 2611 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2612 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2613 | -include $(LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2614 | endif |
| 2615 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2616 | objs/$(CONFIG)/test/core/end2end/tests/cancel_before_invoke.o: |
| 2617 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2618 | |
| 2619 | LIBEND2END_TEST_CANCEL_IN_A_VACUUM_SRC = \ |
| 2620 | test/core/end2end/tests/cancel_in_a_vacuum.c \ |
| 2621 | |
| 2622 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2623 | LIBEND2END_TEST_CANCEL_IN_A_VACUUM_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_CANCEL_IN_A_VACUUM_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2624 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2625 | libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a: $(ZLIB_DEP) $(LIBEND2END_TEST_CANCEL_IN_A_VACUUM_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2626 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2627 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2628 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2629 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a $(LIBEND2END_TEST_CANCEL_IN_A_VACUUM_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2630 | ifeq ($(SYSTEM),Darwin) |
| 2631 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a |
| 2632 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2633 | |
| 2634 | |
| 2635 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2636 | |
| 2637 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2638 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2639 | -include $(LIBEND2END_TEST_CANCEL_IN_A_VACUUM_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2640 | endif |
| 2641 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2642 | objs/$(CONFIG)/test/core/end2end/tests/cancel_in_a_vacuum.o: |
| 2643 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2644 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 2645 | LIBEND2END_TEST_CENSUS_SIMPLE_REQUEST_SRC = \ |
| 2646 | test/core/end2end/tests/census_simple_request.c \ |
| 2647 | |
| 2648 | |
| 2649 | LIBEND2END_TEST_CENSUS_SIMPLE_REQUEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_CENSUS_SIMPLE_REQUEST_SRC)))) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 2650 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2651 | libs/$(CONFIG)/libend2end_test_census_simple_request.a: $(ZLIB_DEP) $(LIBEND2END_TEST_CENSUS_SIMPLE_REQUEST_OBJS) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 2652 | $(E) "[AR] Creating $@" |
| 2653 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2654 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_census_simple_request.a |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 2655 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_census_simple_request.a $(LIBEND2END_TEST_CENSUS_SIMPLE_REQUEST_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2656 | ifeq ($(SYSTEM),Darwin) |
| 2657 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_census_simple_request.a |
| 2658 | endif |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 2659 | |
| 2660 | |
| 2661 | |
| 2662 | |
| 2663 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 2664 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2665 | -include $(LIBEND2END_TEST_CENSUS_SIMPLE_REQUEST_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 2666 | endif |
| 2667 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2668 | objs/$(CONFIG)/test/core/end2end/tests/census_simple_request.o: |
| 2669 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 2670 | |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 2671 | LIBEND2END_TEST_DISAPPEARING_SERVER_SRC = \ |
| 2672 | test/core/end2end/tests/disappearing_server.c \ |
| 2673 | |
| 2674 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2675 | LIBEND2END_TEST_DISAPPEARING_SERVER_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_DISAPPEARING_SERVER_SRC)))) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 2676 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2677 | libs/$(CONFIG)/libend2end_test_disappearing_server.a: $(ZLIB_DEP) $(LIBEND2END_TEST_DISAPPEARING_SERVER_OBJS) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 2678 | $(E) "[AR] Creating $@" |
| 2679 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2680 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_disappearing_server.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2681 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_disappearing_server.a $(LIBEND2END_TEST_DISAPPEARING_SERVER_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2682 | ifeq ($(SYSTEM),Darwin) |
| 2683 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_disappearing_server.a |
| 2684 | endif |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 2685 | |
| 2686 | |
| 2687 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2688 | |
| 2689 | |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 2690 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2691 | -include $(LIBEND2END_TEST_DISAPPEARING_SERVER_OBJS:.o=.dep) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 2692 | endif |
| 2693 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2694 | objs/$(CONFIG)/test/core/end2end/tests/disappearing_server.o: |
| 2695 | |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 2696 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2697 | LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_SRC = \ |
| 2698 | test/core/end2end/tests/early_server_shutdown_finishes_inflight_calls.c \ |
| 2699 | |
| 2700 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2701 | LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2702 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2703 | libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a: $(ZLIB_DEP) $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2704 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2705 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2706 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2707 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2708 | ifeq ($(SYSTEM),Darwin) |
| 2709 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a |
| 2710 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2711 | |
| 2712 | |
| 2713 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2714 | |
| 2715 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2716 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2717 | -include $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2718 | endif |
| 2719 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2720 | objs/$(CONFIG)/test/core/end2end/tests/early_server_shutdown_finishes_inflight_calls.o: |
| 2721 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2722 | |
| 2723 | LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_SRC = \ |
| 2724 | test/core/end2end/tests/early_server_shutdown_finishes_tags.c \ |
| 2725 | |
| 2726 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2727 | LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2728 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2729 | libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a: $(ZLIB_DEP) $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2730 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2731 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2732 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2733 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2734 | ifeq ($(SYSTEM),Darwin) |
| 2735 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a |
| 2736 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2737 | |
| 2738 | |
| 2739 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2740 | |
| 2741 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2742 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2743 | -include $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2744 | endif |
| 2745 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2746 | objs/$(CONFIG)/test/core/end2end/tests/early_server_shutdown_finishes_tags.o: |
| 2747 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2748 | |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 2749 | LIBEND2END_TEST_GRACEFUL_SERVER_SHUTDOWN_SRC = \ |
| 2750 | test/core/end2end/tests/graceful_server_shutdown.c \ |
| 2751 | |
| 2752 | |
| 2753 | LIBEND2END_TEST_GRACEFUL_SERVER_SHUTDOWN_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_GRACEFUL_SERVER_SHUTDOWN_SRC)))) |
| 2754 | |
| 2755 | libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a: $(ZLIB_DEP) $(LIBEND2END_TEST_GRACEFUL_SERVER_SHUTDOWN_OBJS) |
| 2756 | $(E) "[AR] Creating $@" |
| 2757 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2758 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 2759 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a $(LIBEND2END_TEST_GRACEFUL_SERVER_SHUTDOWN_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2760 | ifeq ($(SYSTEM),Darwin) |
| 2761 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a |
| 2762 | endif |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 2763 | |
| 2764 | |
| 2765 | |
| 2766 | |
| 2767 | |
| 2768 | ifneq ($(NO_DEPS),true) |
| 2769 | -include $(LIBEND2END_TEST_GRACEFUL_SERVER_SHUTDOWN_OBJS:.o=.dep) |
| 2770 | endif |
| 2771 | |
| 2772 | objs/$(CONFIG)/test/core/end2end/tests/graceful_server_shutdown.o: |
| 2773 | |
| 2774 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2775 | LIBEND2END_TEST_INVOKE_LARGE_REQUEST_SRC = \ |
| 2776 | test/core/end2end/tests/invoke_large_request.c \ |
| 2777 | |
| 2778 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2779 | LIBEND2END_TEST_INVOKE_LARGE_REQUEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_INVOKE_LARGE_REQUEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2780 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2781 | libs/$(CONFIG)/libend2end_test_invoke_large_request.a: $(ZLIB_DEP) $(LIBEND2END_TEST_INVOKE_LARGE_REQUEST_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2782 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2783 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2784 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_invoke_large_request.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2785 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_invoke_large_request.a $(LIBEND2END_TEST_INVOKE_LARGE_REQUEST_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2786 | ifeq ($(SYSTEM),Darwin) |
| 2787 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_invoke_large_request.a |
| 2788 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2789 | |
| 2790 | |
| 2791 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2792 | |
| 2793 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2794 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2795 | -include $(LIBEND2END_TEST_INVOKE_LARGE_REQUEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2796 | endif |
| 2797 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2798 | objs/$(CONFIG)/test/core/end2end/tests/invoke_large_request.o: |
| 2799 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2800 | |
| 2801 | LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_SRC = \ |
| 2802 | test/core/end2end/tests/max_concurrent_streams.c \ |
| 2803 | |
| 2804 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2805 | LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2806 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2807 | libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a: $(ZLIB_DEP) $(LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2808 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2809 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2810 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2811 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a $(LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2812 | ifeq ($(SYSTEM),Darwin) |
| 2813 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a |
| 2814 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2815 | |
| 2816 | |
| 2817 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2818 | |
| 2819 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2820 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2821 | -include $(LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2822 | endif |
| 2823 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2824 | objs/$(CONFIG)/test/core/end2end/tests/max_concurrent_streams.o: |
| 2825 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2826 | |
| 2827 | LIBEND2END_TEST_NO_OP_SRC = \ |
| 2828 | test/core/end2end/tests/no_op.c \ |
| 2829 | |
| 2830 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2831 | LIBEND2END_TEST_NO_OP_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_NO_OP_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2832 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2833 | libs/$(CONFIG)/libend2end_test_no_op.a: $(ZLIB_DEP) $(LIBEND2END_TEST_NO_OP_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2834 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2835 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2836 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_no_op.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2837 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_no_op.a $(LIBEND2END_TEST_NO_OP_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2838 | ifeq ($(SYSTEM),Darwin) |
| 2839 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_no_op.a |
| 2840 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2841 | |
| 2842 | |
| 2843 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2844 | |
| 2845 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2846 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2847 | -include $(LIBEND2END_TEST_NO_OP_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2848 | endif |
| 2849 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2850 | objs/$(CONFIG)/test/core/end2end/tests/no_op.o: |
| 2851 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2852 | |
| 2853 | LIBEND2END_TEST_PING_PONG_STREAMING_SRC = \ |
| 2854 | test/core/end2end/tests/ping_pong_streaming.c \ |
| 2855 | |
| 2856 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2857 | LIBEND2END_TEST_PING_PONG_STREAMING_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_PING_PONG_STREAMING_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2858 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2859 | libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a: $(ZLIB_DEP) $(LIBEND2END_TEST_PING_PONG_STREAMING_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2860 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2861 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2862 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2863 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a $(LIBEND2END_TEST_PING_PONG_STREAMING_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2864 | ifeq ($(SYSTEM),Darwin) |
| 2865 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a |
| 2866 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2867 | |
| 2868 | |
| 2869 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2870 | |
| 2871 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2872 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2873 | -include $(LIBEND2END_TEST_PING_PONG_STREAMING_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2874 | endif |
| 2875 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2876 | objs/$(CONFIG)/test/core/end2end/tests/ping_pong_streaming.o: |
| 2877 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2878 | |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 2879 | LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_SRC = \ |
| 2880 | test/core/end2end/tests/request_response_with_binary_metadata_and_payload.c \ |
| 2881 | |
| 2882 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2883 | LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_SRC)))) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 2884 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2885 | libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a: $(ZLIB_DEP) $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_OBJS) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 2886 | $(E) "[AR] Creating $@" |
| 2887 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2888 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2889 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2890 | ifeq ($(SYSTEM),Darwin) |
| 2891 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a |
| 2892 | endif |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 2893 | |
| 2894 | |
| 2895 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2896 | |
| 2897 | |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 2898 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2899 | -include $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_OBJS:.o=.dep) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 2900 | endif |
| 2901 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2902 | objs/$(CONFIG)/test/core/end2end/tests/request_response_with_binary_metadata_and_payload.o: |
| 2903 | |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 2904 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2905 | LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_SRC = \ |
| 2906 | test/core/end2end/tests/request_response_with_metadata_and_payload.c \ |
| 2907 | |
| 2908 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2909 | LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2910 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2911 | libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a: $(ZLIB_DEP) $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2912 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2913 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2914 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2915 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2916 | ifeq ($(SYSTEM),Darwin) |
| 2917 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a |
| 2918 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2919 | |
| 2920 | |
| 2921 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2922 | |
| 2923 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2924 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2925 | -include $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2926 | endif |
| 2927 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2928 | objs/$(CONFIG)/test/core/end2end/tests/request_response_with_metadata_and_payload.o: |
| 2929 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2930 | |
| 2931 | LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_SRC = \ |
| 2932 | test/core/end2end/tests/request_response_with_payload.c \ |
| 2933 | |
| 2934 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2935 | LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2936 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2937 | libs/$(CONFIG)/libend2end_test_request_response_with_payload.a: $(ZLIB_DEP) $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2938 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2939 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2940 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_request_response_with_payload.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2941 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_request_response_with_payload.a $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2942 | ifeq ($(SYSTEM),Darwin) |
| 2943 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_request_response_with_payload.a |
| 2944 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2945 | |
| 2946 | |
| 2947 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2948 | |
| 2949 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 2950 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2951 | -include $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2952 | endif |
| 2953 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2954 | objs/$(CONFIG)/test/core/end2end/tests/request_response_with_payload.o: |
| 2955 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2956 | |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 2957 | LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_SRC = \ |
| 2958 | test/core/end2end/tests/request_response_with_trailing_metadata_and_payload.c \ |
| 2959 | |
| 2960 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2961 | LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_SRC)))) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 2962 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2963 | libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a: $(ZLIB_DEP) $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_OBJS) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 2964 | $(E) "[AR] Creating $@" |
| 2965 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2966 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2967 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2968 | ifeq ($(SYSTEM),Darwin) |
| 2969 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a |
| 2970 | endif |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 2971 | |
| 2972 | |
| 2973 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 2974 | |
| 2975 | |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 2976 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 2977 | -include $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_OBJS:.o=.dep) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 2978 | endif |
| 2979 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 2980 | objs/$(CONFIG)/test/core/end2end/tests/request_response_with_trailing_metadata_and_payload.o: |
| 2981 | |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 2982 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2983 | LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_SRC = \ |
| 2984 | test/core/end2end/tests/simple_delayed_request.c \ |
| 2985 | |
| 2986 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2987 | LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2988 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 2989 | libs/$(CONFIG)/libend2end_test_simple_delayed_request.a: $(ZLIB_DEP) $(LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2990 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 2991 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2992 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_simple_delayed_request.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 2993 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_simple_delayed_request.a $(LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 2994 | ifeq ($(SYSTEM),Darwin) |
| 2995 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_simple_delayed_request.a |
| 2996 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 2997 | |
| 2998 | |
| 2999 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 3000 | |
| 3001 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 3002 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 3003 | -include $(LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3004 | endif |
| 3005 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 3006 | objs/$(CONFIG)/test/core/end2end/tests/simple_delayed_request.o: |
| 3007 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3008 | |
| 3009 | LIBEND2END_TEST_SIMPLE_REQUEST_SRC = \ |
| 3010 | test/core/end2end/tests/simple_request.c \ |
| 3011 | |
| 3012 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 3013 | LIBEND2END_TEST_SIMPLE_REQUEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_SIMPLE_REQUEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3014 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 3015 | libs/$(CONFIG)/libend2end_test_simple_request.a: $(ZLIB_DEP) $(LIBEND2END_TEST_SIMPLE_REQUEST_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3016 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 3017 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 3018 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_simple_request.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 3019 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_simple_request.a $(LIBEND2END_TEST_SIMPLE_REQUEST_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 3020 | ifeq ($(SYSTEM),Darwin) |
| 3021 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_simple_request.a |
| 3022 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3023 | |
| 3024 | |
| 3025 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 3026 | |
| 3027 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 3028 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 3029 | -include $(LIBEND2END_TEST_SIMPLE_REQUEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3030 | endif |
| 3031 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 3032 | objs/$(CONFIG)/test/core/end2end/tests/simple_request.o: |
| 3033 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3034 | |
nathaniel | 5287817 | 2014-12-09 10:17:19 -0800 | [diff] [blame] | 3035 | LIBEND2END_TEST_THREAD_STRESS_SRC = \ |
| 3036 | test/core/end2end/tests/thread_stress.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3037 | |
| 3038 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 3039 | LIBEND2END_TEST_THREAD_STRESS_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_THREAD_STRESS_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3040 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 3041 | libs/$(CONFIG)/libend2end_test_thread_stress.a: $(ZLIB_DEP) $(LIBEND2END_TEST_THREAD_STRESS_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3042 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 3043 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 3044 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_thread_stress.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 3045 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_thread_stress.a $(LIBEND2END_TEST_THREAD_STRESS_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 3046 | ifeq ($(SYSTEM),Darwin) |
| 3047 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_thread_stress.a |
| 3048 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3049 | |
| 3050 | |
| 3051 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 3052 | |
| 3053 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 3054 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 3055 | -include $(LIBEND2END_TEST_THREAD_STRESS_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3056 | endif |
| 3057 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 3058 | objs/$(CONFIG)/test/core/end2end/tests/thread_stress.o: |
| 3059 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3060 | |
| 3061 | LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_SRC = \ |
| 3062 | test/core/end2end/tests/writes_done_hangs_with_pending_read.c \ |
| 3063 | |
| 3064 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 3065 | LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3066 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 3067 | libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a: $(ZLIB_DEP) $(LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3068 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 3069 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 3070 | $(Q) rm -f libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 3071 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a $(LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 3072 | ifeq ($(SYSTEM),Darwin) |
| 3073 | $(Q) ranlib libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a |
| 3074 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3075 | |
| 3076 | |
| 3077 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 3078 | |
| 3079 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 3080 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 3081 | -include $(LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3082 | endif |
| 3083 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 3084 | objs/$(CONFIG)/test/core/end2end/tests/writes_done_hangs_with_pending_read.o: |
| 3085 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3086 | |
| 3087 | LIBEND2END_CERTS_SRC = \ |
chenw | 97fd9e5 | 2014-12-19 17:12:36 -0800 | [diff] [blame] | 3088 | test/core/end2end/data/test_root_cert.c \ |
| 3089 | test/core/end2end/data/prod_roots_certs.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3090 | test/core/end2end/data/server1_cert.c \ |
| 3091 | test/core/end2end/data/server1_key.c \ |
| 3092 | |
| 3093 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 3094 | LIBEND2END_CERTS_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_CERTS_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3095 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 3096 | ifeq ($(NO_SECURE),true) |
| 3097 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 3098 | # You can't build secure libraries if you don't have OpenSSL with ALPN. |
| 3099 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 3100 | libs/$(CONFIG)/libend2end_certs.a: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 3101 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 3102 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 3103 | else |
| 3104 | |
Nicolas "Pixel" Noble | 17f2b59 | 2015-01-16 07:09:10 +0100 | [diff] [blame] | 3105 | ifneq ($(OPENSSL_DEP),) |
| 3106 | test/core/end2end/data/test_root_cert.c: $(OPENSSL_DEP) |
| 3107 | test/core/end2end/data/prod_roots_certs.c: $(OPENSSL_DEP) |
| 3108 | test/core/end2end/data/server1_cert.c: $(OPENSSL_DEP) |
| 3109 | test/core/end2end/data/server1_key.c: $(OPENSSL_DEP) |
| 3110 | endif |
| 3111 | |
Nicolas "Pixel" Noble | 85bf09b | 2015-01-15 18:22:40 +0100 | [diff] [blame] | 3112 | libs/$(CONFIG)/libend2end_certs.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(LIBEND2END_CERTS_OBJS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3113 | $(E) "[AR] Creating $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 3114 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 3115 | $(Q) rm -f libs/$(CONFIG)/libend2end_certs.a |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 3116 | $(Q) $(AR) rcs libs/$(CONFIG)/libend2end_certs.a $(LIBEND2END_CERTS_OBJS) |
Craig Tiller | b4ee3b5 | 2015-01-21 16:22:50 -0800 | [diff] [blame] | 3117 | ifeq ($(SYSTEM),Darwin) |
| 3118 | $(Q) ranlib libs/$(CONFIG)/libend2end_certs.a |
| 3119 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3120 | |
| 3121 | |
| 3122 | |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 3123 | |
| 3124 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 3125 | endif |
| 3126 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 3127 | ifneq ($(NO_SECURE),true) |
| 3128 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 3129 | -include $(LIBEND2END_CERTS_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3130 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 3131 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3132 | |
Craig Tiller | 27715ca | 2015-01-12 16:55:59 -0800 | [diff] [blame] | 3133 | objs/$(CONFIG)/test/core/end2end/data/test_root_cert.o: |
| 3134 | objs/$(CONFIG)/test/core/end2end/data/prod_roots_certs.o: |
| 3135 | objs/$(CONFIG)/test/core/end2end/data/server1_cert.o: |
| 3136 | objs/$(CONFIG)/test/core/end2end/data/server1_key.o: |
| 3137 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3138 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3139 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 3140 | # All of the test targets, and protoc plugins |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 3141 | |
| 3142 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 3143 | ALARM_HEAP_TEST_SRC = \ |
| 3144 | test/core/iomgr/alarm_heap_test.c \ |
| 3145 | |
| 3146 | ALARM_HEAP_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(ALARM_HEAP_TEST_SRC)))) |
| 3147 | |
| 3148 | ifeq ($(NO_SECURE),true) |
| 3149 | |
| 3150 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3151 | |
| 3152 | bins/$(CONFIG)/alarm_heap_test: openssl_dep_error |
| 3153 | |
| 3154 | else |
| 3155 | |
| 3156 | bins/$(CONFIG)/alarm_heap_test: $(ALARM_HEAP_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3157 | $(E) "[LD] Linking $@" |
| 3158 | $(Q) mkdir -p `dirname $@` |
| 3159 | $(Q) $(LD) $(LDFLAGS) $(ALARM_HEAP_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/alarm_heap_test |
| 3160 | |
| 3161 | endif |
| 3162 | |
| 3163 | objs/$(CONFIG)/test/core/iomgr/alarm_heap_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3164 | |
| 3165 | deps_alarm_heap_test: $(ALARM_HEAP_TEST_OBJS:.o=.dep) |
| 3166 | |
| 3167 | ifneq ($(NO_SECURE),true) |
| 3168 | ifneq ($(NO_DEPS),true) |
| 3169 | -include $(ALARM_HEAP_TEST_OBJS:.o=.dep) |
| 3170 | endif |
| 3171 | endif |
| 3172 | |
| 3173 | |
| 3174 | ALARM_LIST_TEST_SRC = \ |
| 3175 | test/core/iomgr/alarm_list_test.c \ |
| 3176 | |
| 3177 | ALARM_LIST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(ALARM_LIST_TEST_SRC)))) |
| 3178 | |
| 3179 | ifeq ($(NO_SECURE),true) |
| 3180 | |
| 3181 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3182 | |
| 3183 | bins/$(CONFIG)/alarm_list_test: openssl_dep_error |
| 3184 | |
| 3185 | else |
| 3186 | |
| 3187 | bins/$(CONFIG)/alarm_list_test: $(ALARM_LIST_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3188 | $(E) "[LD] Linking $@" |
| 3189 | $(Q) mkdir -p `dirname $@` |
| 3190 | $(Q) $(LD) $(LDFLAGS) $(ALARM_LIST_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/alarm_list_test |
| 3191 | |
| 3192 | endif |
| 3193 | |
| 3194 | objs/$(CONFIG)/test/core/iomgr/alarm_list_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3195 | |
| 3196 | deps_alarm_list_test: $(ALARM_LIST_TEST_OBJS:.o=.dep) |
| 3197 | |
| 3198 | ifneq ($(NO_SECURE),true) |
| 3199 | ifneq ($(NO_DEPS),true) |
| 3200 | -include $(ALARM_LIST_TEST_OBJS:.o=.dep) |
| 3201 | endif |
| 3202 | endif |
| 3203 | |
| 3204 | |
| 3205 | ALARM_TEST_SRC = \ |
| 3206 | test/core/iomgr/alarm_test.c \ |
| 3207 | |
| 3208 | ALARM_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(ALARM_TEST_SRC)))) |
| 3209 | |
| 3210 | ifeq ($(NO_SECURE),true) |
| 3211 | |
| 3212 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3213 | |
| 3214 | bins/$(CONFIG)/alarm_test: openssl_dep_error |
| 3215 | |
| 3216 | else |
| 3217 | |
| 3218 | bins/$(CONFIG)/alarm_test: $(ALARM_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3219 | $(E) "[LD] Linking $@" |
| 3220 | $(Q) mkdir -p `dirname $@` |
| 3221 | $(Q) $(LD) $(LDFLAGS) $(ALARM_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/alarm_test |
| 3222 | |
| 3223 | endif |
| 3224 | |
| 3225 | objs/$(CONFIG)/test/core/iomgr/alarm_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3226 | |
| 3227 | deps_alarm_test: $(ALARM_TEST_OBJS:.o=.dep) |
| 3228 | |
| 3229 | ifneq ($(NO_SECURE),true) |
| 3230 | ifneq ($(NO_DEPS),true) |
| 3231 | -include $(ALARM_TEST_OBJS:.o=.dep) |
| 3232 | endif |
| 3233 | endif |
| 3234 | |
| 3235 | |
| 3236 | ALPN_TEST_SRC = \ |
| 3237 | test/core/transport/chttp2/alpn_test.c \ |
| 3238 | |
| 3239 | ALPN_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(ALPN_TEST_SRC)))) |
| 3240 | |
| 3241 | ifeq ($(NO_SECURE),true) |
| 3242 | |
| 3243 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3244 | |
| 3245 | bins/$(CONFIG)/alpn_test: openssl_dep_error |
| 3246 | |
| 3247 | else |
| 3248 | |
| 3249 | bins/$(CONFIG)/alpn_test: $(ALPN_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3250 | $(E) "[LD] Linking $@" |
| 3251 | $(Q) mkdir -p `dirname $@` |
| 3252 | $(Q) $(LD) $(LDFLAGS) $(ALPN_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/alpn_test |
| 3253 | |
| 3254 | endif |
| 3255 | |
| 3256 | objs/$(CONFIG)/test/core/transport/chttp2/alpn_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3257 | |
| 3258 | deps_alpn_test: $(ALPN_TEST_OBJS:.o=.dep) |
| 3259 | |
| 3260 | ifneq ($(NO_SECURE),true) |
| 3261 | ifneq ($(NO_DEPS),true) |
| 3262 | -include $(ALPN_TEST_OBJS:.o=.dep) |
| 3263 | endif |
| 3264 | endif |
| 3265 | |
| 3266 | |
| 3267 | BIN_ENCODER_TEST_SRC = \ |
| 3268 | test/core/transport/chttp2/bin_encoder_test.c \ |
| 3269 | |
| 3270 | BIN_ENCODER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(BIN_ENCODER_TEST_SRC)))) |
| 3271 | |
| 3272 | ifeq ($(NO_SECURE),true) |
| 3273 | |
| 3274 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3275 | |
| 3276 | bins/$(CONFIG)/bin_encoder_test: openssl_dep_error |
| 3277 | |
| 3278 | else |
| 3279 | |
| 3280 | bins/$(CONFIG)/bin_encoder_test: $(BIN_ENCODER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3281 | $(E) "[LD] Linking $@" |
| 3282 | $(Q) mkdir -p `dirname $@` |
| 3283 | $(Q) $(LD) $(LDFLAGS) $(BIN_ENCODER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/bin_encoder_test |
| 3284 | |
| 3285 | endif |
| 3286 | |
| 3287 | objs/$(CONFIG)/test/core/transport/chttp2/bin_encoder_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3288 | |
| 3289 | deps_bin_encoder_test: $(BIN_ENCODER_TEST_OBJS:.o=.dep) |
| 3290 | |
| 3291 | ifneq ($(NO_SECURE),true) |
| 3292 | ifneq ($(NO_DEPS),true) |
| 3293 | -include $(BIN_ENCODER_TEST_OBJS:.o=.dep) |
| 3294 | endif |
| 3295 | endif |
| 3296 | |
| 3297 | |
| 3298 | CENSUS_HASH_TABLE_TEST_SRC = \ |
| 3299 | test/core/statistics/hash_table_test.c \ |
| 3300 | |
| 3301 | CENSUS_HASH_TABLE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CENSUS_HASH_TABLE_TEST_SRC)))) |
| 3302 | |
| 3303 | ifeq ($(NO_SECURE),true) |
| 3304 | |
| 3305 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3306 | |
| 3307 | bins/$(CONFIG)/census_hash_table_test: openssl_dep_error |
| 3308 | |
| 3309 | else |
| 3310 | |
| 3311 | bins/$(CONFIG)/census_hash_table_test: $(CENSUS_HASH_TABLE_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3312 | $(E) "[LD] Linking $@" |
| 3313 | $(Q) mkdir -p `dirname $@` |
| 3314 | $(Q) $(LD) $(LDFLAGS) $(CENSUS_HASH_TABLE_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/census_hash_table_test |
| 3315 | |
| 3316 | endif |
| 3317 | |
| 3318 | objs/$(CONFIG)/test/core/statistics/hash_table_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3319 | |
| 3320 | deps_census_hash_table_test: $(CENSUS_HASH_TABLE_TEST_OBJS:.o=.dep) |
| 3321 | |
| 3322 | ifneq ($(NO_SECURE),true) |
| 3323 | ifneq ($(NO_DEPS),true) |
| 3324 | -include $(CENSUS_HASH_TABLE_TEST_OBJS:.o=.dep) |
| 3325 | endif |
| 3326 | endif |
| 3327 | |
| 3328 | |
| 3329 | CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_SRC = \ |
| 3330 | test/core/statistics/multiple_writers_circular_buffer_test.c \ |
| 3331 | |
| 3332 | CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_SRC)))) |
| 3333 | |
| 3334 | ifeq ($(NO_SECURE),true) |
| 3335 | |
| 3336 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3337 | |
| 3338 | bins/$(CONFIG)/census_statistics_multiple_writers_circular_buffer_test: openssl_dep_error |
| 3339 | |
| 3340 | else |
| 3341 | |
| 3342 | bins/$(CONFIG)/census_statistics_multiple_writers_circular_buffer_test: $(CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3343 | $(E) "[LD] Linking $@" |
| 3344 | $(Q) mkdir -p `dirname $@` |
| 3345 | $(Q) $(LD) $(LDFLAGS) $(CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/census_statistics_multiple_writers_circular_buffer_test |
| 3346 | |
| 3347 | endif |
| 3348 | |
| 3349 | objs/$(CONFIG)/test/core/statistics/multiple_writers_circular_buffer_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3350 | |
| 3351 | deps_census_statistics_multiple_writers_circular_buffer_test: $(CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_OBJS:.o=.dep) |
| 3352 | |
| 3353 | ifneq ($(NO_SECURE),true) |
| 3354 | ifneq ($(NO_DEPS),true) |
| 3355 | -include $(CENSUS_STATISTICS_MULTIPLE_WRITERS_CIRCULAR_BUFFER_TEST_OBJS:.o=.dep) |
| 3356 | endif |
| 3357 | endif |
| 3358 | |
| 3359 | |
| 3360 | CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_SRC = \ |
| 3361 | test/core/statistics/multiple_writers_test.c \ |
| 3362 | |
| 3363 | CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_SRC)))) |
| 3364 | |
| 3365 | ifeq ($(NO_SECURE),true) |
| 3366 | |
| 3367 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3368 | |
| 3369 | bins/$(CONFIG)/census_statistics_multiple_writers_test: openssl_dep_error |
| 3370 | |
| 3371 | else |
| 3372 | |
| 3373 | bins/$(CONFIG)/census_statistics_multiple_writers_test: $(CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3374 | $(E) "[LD] Linking $@" |
| 3375 | $(Q) mkdir -p `dirname $@` |
| 3376 | $(Q) $(LD) $(LDFLAGS) $(CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/census_statistics_multiple_writers_test |
| 3377 | |
| 3378 | endif |
| 3379 | |
| 3380 | objs/$(CONFIG)/test/core/statistics/multiple_writers_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3381 | |
| 3382 | deps_census_statistics_multiple_writers_test: $(CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_OBJS:.o=.dep) |
| 3383 | |
| 3384 | ifneq ($(NO_SECURE),true) |
| 3385 | ifneq ($(NO_DEPS),true) |
| 3386 | -include $(CENSUS_STATISTICS_MULTIPLE_WRITERS_TEST_OBJS:.o=.dep) |
| 3387 | endif |
| 3388 | endif |
| 3389 | |
| 3390 | |
| 3391 | CENSUS_STATISTICS_PERFORMANCE_TEST_SRC = \ |
| 3392 | test/core/statistics/performance_test.c \ |
| 3393 | |
| 3394 | CENSUS_STATISTICS_PERFORMANCE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CENSUS_STATISTICS_PERFORMANCE_TEST_SRC)))) |
| 3395 | |
| 3396 | ifeq ($(NO_SECURE),true) |
| 3397 | |
| 3398 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3399 | |
| 3400 | bins/$(CONFIG)/census_statistics_performance_test: openssl_dep_error |
| 3401 | |
| 3402 | else |
| 3403 | |
| 3404 | bins/$(CONFIG)/census_statistics_performance_test: $(CENSUS_STATISTICS_PERFORMANCE_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3405 | $(E) "[LD] Linking $@" |
| 3406 | $(Q) mkdir -p `dirname $@` |
| 3407 | $(Q) $(LD) $(LDFLAGS) $(CENSUS_STATISTICS_PERFORMANCE_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/census_statistics_performance_test |
| 3408 | |
| 3409 | endif |
| 3410 | |
| 3411 | objs/$(CONFIG)/test/core/statistics/performance_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3412 | |
| 3413 | deps_census_statistics_performance_test: $(CENSUS_STATISTICS_PERFORMANCE_TEST_OBJS:.o=.dep) |
| 3414 | |
| 3415 | ifneq ($(NO_SECURE),true) |
| 3416 | ifneq ($(NO_DEPS),true) |
| 3417 | -include $(CENSUS_STATISTICS_PERFORMANCE_TEST_OBJS:.o=.dep) |
| 3418 | endif |
| 3419 | endif |
| 3420 | |
| 3421 | |
| 3422 | CENSUS_STATISTICS_QUICK_TEST_SRC = \ |
| 3423 | test/core/statistics/quick_test.c \ |
| 3424 | |
| 3425 | CENSUS_STATISTICS_QUICK_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CENSUS_STATISTICS_QUICK_TEST_SRC)))) |
| 3426 | |
| 3427 | ifeq ($(NO_SECURE),true) |
| 3428 | |
| 3429 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3430 | |
| 3431 | bins/$(CONFIG)/census_statistics_quick_test: openssl_dep_error |
| 3432 | |
| 3433 | else |
| 3434 | |
| 3435 | bins/$(CONFIG)/census_statistics_quick_test: $(CENSUS_STATISTICS_QUICK_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3436 | $(E) "[LD] Linking $@" |
| 3437 | $(Q) mkdir -p `dirname $@` |
| 3438 | $(Q) $(LD) $(LDFLAGS) $(CENSUS_STATISTICS_QUICK_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/census_statistics_quick_test |
| 3439 | |
| 3440 | endif |
| 3441 | |
| 3442 | objs/$(CONFIG)/test/core/statistics/quick_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3443 | |
| 3444 | deps_census_statistics_quick_test: $(CENSUS_STATISTICS_QUICK_TEST_OBJS:.o=.dep) |
| 3445 | |
| 3446 | ifneq ($(NO_SECURE),true) |
| 3447 | ifneq ($(NO_DEPS),true) |
| 3448 | -include $(CENSUS_STATISTICS_QUICK_TEST_OBJS:.o=.dep) |
| 3449 | endif |
| 3450 | endif |
| 3451 | |
| 3452 | |
| 3453 | CENSUS_STATISTICS_SMALL_LOG_TEST_SRC = \ |
| 3454 | test/core/statistics/small_log_test.c \ |
| 3455 | |
| 3456 | CENSUS_STATISTICS_SMALL_LOG_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CENSUS_STATISTICS_SMALL_LOG_TEST_SRC)))) |
| 3457 | |
| 3458 | ifeq ($(NO_SECURE),true) |
| 3459 | |
| 3460 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3461 | |
| 3462 | bins/$(CONFIG)/census_statistics_small_log_test: openssl_dep_error |
| 3463 | |
| 3464 | else |
| 3465 | |
| 3466 | bins/$(CONFIG)/census_statistics_small_log_test: $(CENSUS_STATISTICS_SMALL_LOG_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3467 | $(E) "[LD] Linking $@" |
| 3468 | $(Q) mkdir -p `dirname $@` |
| 3469 | $(Q) $(LD) $(LDFLAGS) $(CENSUS_STATISTICS_SMALL_LOG_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/census_statistics_small_log_test |
| 3470 | |
| 3471 | endif |
| 3472 | |
| 3473 | objs/$(CONFIG)/test/core/statistics/small_log_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3474 | |
| 3475 | deps_census_statistics_small_log_test: $(CENSUS_STATISTICS_SMALL_LOG_TEST_OBJS:.o=.dep) |
| 3476 | |
| 3477 | ifneq ($(NO_SECURE),true) |
| 3478 | ifneq ($(NO_DEPS),true) |
| 3479 | -include $(CENSUS_STATISTICS_SMALL_LOG_TEST_OBJS:.o=.dep) |
| 3480 | endif |
| 3481 | endif |
| 3482 | |
| 3483 | |
| 3484 | CENSUS_STATS_STORE_TEST_SRC = \ |
| 3485 | test/core/statistics/rpc_stats_test.c \ |
| 3486 | |
| 3487 | CENSUS_STATS_STORE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CENSUS_STATS_STORE_TEST_SRC)))) |
| 3488 | |
| 3489 | ifeq ($(NO_SECURE),true) |
| 3490 | |
| 3491 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3492 | |
| 3493 | bins/$(CONFIG)/census_stats_store_test: openssl_dep_error |
| 3494 | |
| 3495 | else |
| 3496 | |
| 3497 | bins/$(CONFIG)/census_stats_store_test: $(CENSUS_STATS_STORE_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3498 | $(E) "[LD] Linking $@" |
| 3499 | $(Q) mkdir -p `dirname $@` |
| 3500 | $(Q) $(LD) $(LDFLAGS) $(CENSUS_STATS_STORE_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/census_stats_store_test |
| 3501 | |
| 3502 | endif |
| 3503 | |
| 3504 | objs/$(CONFIG)/test/core/statistics/rpc_stats_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3505 | |
| 3506 | deps_census_stats_store_test: $(CENSUS_STATS_STORE_TEST_OBJS:.o=.dep) |
| 3507 | |
| 3508 | ifneq ($(NO_SECURE),true) |
| 3509 | ifneq ($(NO_DEPS),true) |
| 3510 | -include $(CENSUS_STATS_STORE_TEST_OBJS:.o=.dep) |
| 3511 | endif |
| 3512 | endif |
| 3513 | |
| 3514 | |
| 3515 | CENSUS_STUB_TEST_SRC = \ |
| 3516 | test/core/statistics/census_stub_test.c \ |
| 3517 | |
| 3518 | CENSUS_STUB_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CENSUS_STUB_TEST_SRC)))) |
| 3519 | |
| 3520 | ifeq ($(NO_SECURE),true) |
| 3521 | |
| 3522 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3523 | |
| 3524 | bins/$(CONFIG)/census_stub_test: openssl_dep_error |
| 3525 | |
| 3526 | else |
| 3527 | |
| 3528 | bins/$(CONFIG)/census_stub_test: $(CENSUS_STUB_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3529 | $(E) "[LD] Linking $@" |
| 3530 | $(Q) mkdir -p `dirname $@` |
| 3531 | $(Q) $(LD) $(LDFLAGS) $(CENSUS_STUB_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/census_stub_test |
| 3532 | |
| 3533 | endif |
| 3534 | |
| 3535 | objs/$(CONFIG)/test/core/statistics/census_stub_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3536 | |
| 3537 | deps_census_stub_test: $(CENSUS_STUB_TEST_OBJS:.o=.dep) |
| 3538 | |
| 3539 | ifneq ($(NO_SECURE),true) |
| 3540 | ifneq ($(NO_DEPS),true) |
| 3541 | -include $(CENSUS_STUB_TEST_OBJS:.o=.dep) |
| 3542 | endif |
| 3543 | endif |
| 3544 | |
| 3545 | |
| 3546 | CENSUS_TRACE_STORE_TEST_SRC = \ |
| 3547 | test/core/statistics/trace_test.c \ |
| 3548 | |
| 3549 | CENSUS_TRACE_STORE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CENSUS_TRACE_STORE_TEST_SRC)))) |
| 3550 | |
| 3551 | ifeq ($(NO_SECURE),true) |
| 3552 | |
| 3553 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3554 | |
| 3555 | bins/$(CONFIG)/census_trace_store_test: openssl_dep_error |
| 3556 | |
| 3557 | else |
| 3558 | |
| 3559 | bins/$(CONFIG)/census_trace_store_test: $(CENSUS_TRACE_STORE_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3560 | $(E) "[LD] Linking $@" |
| 3561 | $(Q) mkdir -p `dirname $@` |
| 3562 | $(Q) $(LD) $(LDFLAGS) $(CENSUS_TRACE_STORE_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/census_trace_store_test |
| 3563 | |
| 3564 | endif |
| 3565 | |
| 3566 | objs/$(CONFIG)/test/core/statistics/trace_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3567 | |
| 3568 | deps_census_trace_store_test: $(CENSUS_TRACE_STORE_TEST_OBJS:.o=.dep) |
| 3569 | |
| 3570 | ifneq ($(NO_SECURE),true) |
| 3571 | ifneq ($(NO_DEPS),true) |
| 3572 | -include $(CENSUS_TRACE_STORE_TEST_OBJS:.o=.dep) |
| 3573 | endif |
| 3574 | endif |
| 3575 | |
| 3576 | |
| 3577 | CENSUS_WINDOW_STATS_TEST_SRC = \ |
| 3578 | test/core/statistics/window_stats_test.c \ |
| 3579 | |
| 3580 | CENSUS_WINDOW_STATS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CENSUS_WINDOW_STATS_TEST_SRC)))) |
| 3581 | |
| 3582 | ifeq ($(NO_SECURE),true) |
| 3583 | |
| 3584 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3585 | |
| 3586 | bins/$(CONFIG)/census_window_stats_test: openssl_dep_error |
| 3587 | |
| 3588 | else |
| 3589 | |
| 3590 | bins/$(CONFIG)/census_window_stats_test: $(CENSUS_WINDOW_STATS_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3591 | $(E) "[LD] Linking $@" |
| 3592 | $(Q) mkdir -p `dirname $@` |
| 3593 | $(Q) $(LD) $(LDFLAGS) $(CENSUS_WINDOW_STATS_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/census_window_stats_test |
| 3594 | |
| 3595 | endif |
| 3596 | |
| 3597 | objs/$(CONFIG)/test/core/statistics/window_stats_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3598 | |
| 3599 | deps_census_window_stats_test: $(CENSUS_WINDOW_STATS_TEST_OBJS:.o=.dep) |
| 3600 | |
| 3601 | ifneq ($(NO_SECURE),true) |
| 3602 | ifneq ($(NO_DEPS),true) |
| 3603 | -include $(CENSUS_WINDOW_STATS_TEST_OBJS:.o=.dep) |
| 3604 | endif |
| 3605 | endif |
| 3606 | |
| 3607 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 3608 | CHTTP2_STATUS_CONVERSION_TEST_SRC = \ |
| 3609 | test/core/transport/chttp2/status_conversion_test.c \ |
| 3610 | |
| 3611 | CHTTP2_STATUS_CONVERSION_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_STATUS_CONVERSION_TEST_SRC)))) |
| 3612 | |
| 3613 | ifeq ($(NO_SECURE),true) |
| 3614 | |
| 3615 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3616 | |
| 3617 | bins/$(CONFIG)/chttp2_status_conversion_test: openssl_dep_error |
| 3618 | |
| 3619 | else |
| 3620 | |
| 3621 | bins/$(CONFIG)/chttp2_status_conversion_test: $(CHTTP2_STATUS_CONVERSION_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3622 | $(E) "[LD] Linking $@" |
| 3623 | $(Q) mkdir -p `dirname $@` |
| 3624 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_STATUS_CONVERSION_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_status_conversion_test |
| 3625 | |
| 3626 | endif |
| 3627 | |
| 3628 | objs/$(CONFIG)/test/core/transport/chttp2/status_conversion_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3629 | |
| 3630 | deps_chttp2_status_conversion_test: $(CHTTP2_STATUS_CONVERSION_TEST_OBJS:.o=.dep) |
| 3631 | |
| 3632 | ifneq ($(NO_SECURE),true) |
| 3633 | ifneq ($(NO_DEPS),true) |
| 3634 | -include $(CHTTP2_STATUS_CONVERSION_TEST_OBJS:.o=.dep) |
| 3635 | endif |
| 3636 | endif |
| 3637 | |
| 3638 | |
| 3639 | CHTTP2_STREAM_ENCODER_TEST_SRC = \ |
| 3640 | test/core/transport/chttp2/stream_encoder_test.c \ |
| 3641 | |
| 3642 | CHTTP2_STREAM_ENCODER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_STREAM_ENCODER_TEST_SRC)))) |
| 3643 | |
| 3644 | ifeq ($(NO_SECURE),true) |
| 3645 | |
| 3646 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3647 | |
| 3648 | bins/$(CONFIG)/chttp2_stream_encoder_test: openssl_dep_error |
| 3649 | |
| 3650 | else |
| 3651 | |
| 3652 | bins/$(CONFIG)/chttp2_stream_encoder_test: $(CHTTP2_STREAM_ENCODER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3653 | $(E) "[LD] Linking $@" |
| 3654 | $(Q) mkdir -p `dirname $@` |
| 3655 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_STREAM_ENCODER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_stream_encoder_test |
| 3656 | |
| 3657 | endif |
| 3658 | |
| 3659 | objs/$(CONFIG)/test/core/transport/chttp2/stream_encoder_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3660 | |
| 3661 | deps_chttp2_stream_encoder_test: $(CHTTP2_STREAM_ENCODER_TEST_OBJS:.o=.dep) |
| 3662 | |
| 3663 | ifneq ($(NO_SECURE),true) |
| 3664 | ifneq ($(NO_DEPS),true) |
| 3665 | -include $(CHTTP2_STREAM_ENCODER_TEST_OBJS:.o=.dep) |
| 3666 | endif |
| 3667 | endif |
| 3668 | |
| 3669 | |
| 3670 | CHTTP2_STREAM_MAP_TEST_SRC = \ |
| 3671 | test/core/transport/chttp2/stream_map_test.c \ |
| 3672 | |
| 3673 | CHTTP2_STREAM_MAP_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_STREAM_MAP_TEST_SRC)))) |
| 3674 | |
| 3675 | ifeq ($(NO_SECURE),true) |
| 3676 | |
| 3677 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3678 | |
| 3679 | bins/$(CONFIG)/chttp2_stream_map_test: openssl_dep_error |
| 3680 | |
| 3681 | else |
| 3682 | |
| 3683 | bins/$(CONFIG)/chttp2_stream_map_test: $(CHTTP2_STREAM_MAP_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3684 | $(E) "[LD] Linking $@" |
| 3685 | $(Q) mkdir -p `dirname $@` |
| 3686 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_STREAM_MAP_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_stream_map_test |
| 3687 | |
| 3688 | endif |
| 3689 | |
| 3690 | objs/$(CONFIG)/test/core/transport/chttp2/stream_map_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3691 | |
| 3692 | deps_chttp2_stream_map_test: $(CHTTP2_STREAM_MAP_TEST_OBJS:.o=.dep) |
| 3693 | |
| 3694 | ifneq ($(NO_SECURE),true) |
| 3695 | ifneq ($(NO_DEPS),true) |
| 3696 | -include $(CHTTP2_STREAM_MAP_TEST_OBJS:.o=.dep) |
| 3697 | endif |
| 3698 | endif |
| 3699 | |
| 3700 | |
| 3701 | CHTTP2_TRANSPORT_END2END_TEST_SRC = \ |
| 3702 | test/core/transport/chttp2_transport_end2end_test.c \ |
| 3703 | |
| 3704 | CHTTP2_TRANSPORT_END2END_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_TRANSPORT_END2END_TEST_SRC)))) |
| 3705 | |
| 3706 | ifeq ($(NO_SECURE),true) |
| 3707 | |
| 3708 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3709 | |
| 3710 | bins/$(CONFIG)/chttp2_transport_end2end_test: openssl_dep_error |
| 3711 | |
| 3712 | else |
| 3713 | |
| 3714 | bins/$(CONFIG)/chttp2_transport_end2end_test: $(CHTTP2_TRANSPORT_END2END_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3715 | $(E) "[LD] Linking $@" |
| 3716 | $(Q) mkdir -p `dirname $@` |
| 3717 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_TRANSPORT_END2END_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_transport_end2end_test |
| 3718 | |
| 3719 | endif |
| 3720 | |
| 3721 | objs/$(CONFIG)/test/core/transport/chttp2_transport_end2end_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3722 | |
| 3723 | deps_chttp2_transport_end2end_test: $(CHTTP2_TRANSPORT_END2END_TEST_OBJS:.o=.dep) |
| 3724 | |
| 3725 | ifneq ($(NO_SECURE),true) |
| 3726 | ifneq ($(NO_DEPS),true) |
| 3727 | -include $(CHTTP2_TRANSPORT_END2END_TEST_OBJS:.o=.dep) |
| 3728 | endif |
| 3729 | endif |
| 3730 | |
| 3731 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 3732 | DUALSTACK_SOCKET_TEST_SRC = \ |
| 3733 | test/core/end2end/dualstack_socket_test.c \ |
| 3734 | |
| 3735 | DUALSTACK_SOCKET_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(DUALSTACK_SOCKET_TEST_SRC)))) |
| 3736 | |
| 3737 | ifeq ($(NO_SECURE),true) |
| 3738 | |
| 3739 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3740 | |
| 3741 | bins/$(CONFIG)/dualstack_socket_test: openssl_dep_error |
| 3742 | |
| 3743 | else |
| 3744 | |
| 3745 | bins/$(CONFIG)/dualstack_socket_test: $(DUALSTACK_SOCKET_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3746 | $(E) "[LD] Linking $@" |
| 3747 | $(Q) mkdir -p `dirname $@` |
| 3748 | $(Q) $(LD) $(LDFLAGS) $(DUALSTACK_SOCKET_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/dualstack_socket_test |
| 3749 | |
| 3750 | endif |
| 3751 | |
| 3752 | objs/$(CONFIG)/test/core/end2end/dualstack_socket_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3753 | |
| 3754 | deps_dualstack_socket_test: $(DUALSTACK_SOCKET_TEST_OBJS:.o=.dep) |
| 3755 | |
| 3756 | ifneq ($(NO_SECURE),true) |
| 3757 | ifneq ($(NO_DEPS),true) |
| 3758 | -include $(DUALSTACK_SOCKET_TEST_OBJS:.o=.dep) |
| 3759 | endif |
| 3760 | endif |
| 3761 | |
| 3762 | |
| 3763 | ECHO_CLIENT_SRC = \ |
| 3764 | test/core/echo/client.c \ |
| 3765 | |
| 3766 | ECHO_CLIENT_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(ECHO_CLIENT_SRC)))) |
| 3767 | |
| 3768 | ifeq ($(NO_SECURE),true) |
| 3769 | |
| 3770 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3771 | |
| 3772 | bins/$(CONFIG)/echo_client: openssl_dep_error |
| 3773 | |
| 3774 | else |
| 3775 | |
| 3776 | bins/$(CONFIG)/echo_client: $(ECHO_CLIENT_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3777 | $(E) "[LD] Linking $@" |
| 3778 | $(Q) mkdir -p `dirname $@` |
| 3779 | $(Q) $(LD) $(LDFLAGS) $(ECHO_CLIENT_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/echo_client |
| 3780 | |
| 3781 | endif |
| 3782 | |
| 3783 | objs/$(CONFIG)/test/core/echo/client.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3784 | |
| 3785 | deps_echo_client: $(ECHO_CLIENT_OBJS:.o=.dep) |
| 3786 | |
| 3787 | ifneq ($(NO_SECURE),true) |
| 3788 | ifneq ($(NO_DEPS),true) |
| 3789 | -include $(ECHO_CLIENT_OBJS:.o=.dep) |
| 3790 | endif |
| 3791 | endif |
| 3792 | |
| 3793 | |
| 3794 | ECHO_SERVER_SRC = \ |
| 3795 | test/core/echo/server.c \ |
| 3796 | |
| 3797 | ECHO_SERVER_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(ECHO_SERVER_SRC)))) |
| 3798 | |
| 3799 | ifeq ($(NO_SECURE),true) |
| 3800 | |
| 3801 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3802 | |
| 3803 | bins/$(CONFIG)/echo_server: openssl_dep_error |
| 3804 | |
| 3805 | else |
| 3806 | |
| 3807 | bins/$(CONFIG)/echo_server: $(ECHO_SERVER_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3808 | $(E) "[LD] Linking $@" |
| 3809 | $(Q) mkdir -p `dirname $@` |
| 3810 | $(Q) $(LD) $(LDFLAGS) $(ECHO_SERVER_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/echo_server |
| 3811 | |
| 3812 | endif |
| 3813 | |
| 3814 | objs/$(CONFIG)/test/core/echo/server.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3815 | |
| 3816 | deps_echo_server: $(ECHO_SERVER_OBJS:.o=.dep) |
| 3817 | |
| 3818 | ifneq ($(NO_SECURE),true) |
| 3819 | ifneq ($(NO_DEPS),true) |
| 3820 | -include $(ECHO_SERVER_OBJS:.o=.dep) |
| 3821 | endif |
| 3822 | endif |
| 3823 | |
| 3824 | |
| 3825 | ECHO_TEST_SRC = \ |
| 3826 | test/core/echo/echo_test.c \ |
| 3827 | |
| 3828 | ECHO_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(ECHO_TEST_SRC)))) |
| 3829 | |
| 3830 | ifeq ($(NO_SECURE),true) |
| 3831 | |
| 3832 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3833 | |
| 3834 | bins/$(CONFIG)/echo_test: openssl_dep_error |
| 3835 | |
| 3836 | else |
| 3837 | |
| 3838 | bins/$(CONFIG)/echo_test: $(ECHO_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3839 | $(E) "[LD] Linking $@" |
| 3840 | $(Q) mkdir -p `dirname $@` |
| 3841 | $(Q) $(LD) $(LDFLAGS) $(ECHO_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/echo_test |
| 3842 | |
| 3843 | endif |
| 3844 | |
| 3845 | objs/$(CONFIG)/test/core/echo/echo_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3846 | |
| 3847 | deps_echo_test: $(ECHO_TEST_OBJS:.o=.dep) |
| 3848 | |
| 3849 | ifneq ($(NO_SECURE),true) |
| 3850 | ifneq ($(NO_DEPS),true) |
| 3851 | -include $(ECHO_TEST_OBJS:.o=.dep) |
| 3852 | endif |
| 3853 | endif |
| 3854 | |
| 3855 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 3856 | FD_POSIX_TEST_SRC = \ |
| 3857 | test/core/iomgr/fd_posix_test.c \ |
| 3858 | |
| 3859 | FD_POSIX_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(FD_POSIX_TEST_SRC)))) |
| 3860 | |
| 3861 | ifeq ($(NO_SECURE),true) |
| 3862 | |
| 3863 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3864 | |
| 3865 | bins/$(CONFIG)/fd_posix_test: openssl_dep_error |
| 3866 | |
| 3867 | else |
| 3868 | |
| 3869 | bins/$(CONFIG)/fd_posix_test: $(FD_POSIX_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3870 | $(E) "[LD] Linking $@" |
| 3871 | $(Q) mkdir -p `dirname $@` |
| 3872 | $(Q) $(LD) $(LDFLAGS) $(FD_POSIX_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/fd_posix_test |
| 3873 | |
| 3874 | endif |
| 3875 | |
| 3876 | objs/$(CONFIG)/test/core/iomgr/fd_posix_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3877 | |
| 3878 | deps_fd_posix_test: $(FD_POSIX_TEST_OBJS:.o=.dep) |
| 3879 | |
| 3880 | ifneq ($(NO_SECURE),true) |
| 3881 | ifneq ($(NO_DEPS),true) |
| 3882 | -include $(FD_POSIX_TEST_OBJS:.o=.dep) |
| 3883 | endif |
| 3884 | endif |
| 3885 | |
| 3886 | |
| 3887 | FLING_CLIENT_SRC = \ |
| 3888 | test/core/fling/client.c \ |
| 3889 | |
| 3890 | FLING_CLIENT_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(FLING_CLIENT_SRC)))) |
| 3891 | |
| 3892 | ifeq ($(NO_SECURE),true) |
| 3893 | |
| 3894 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3895 | |
| 3896 | bins/$(CONFIG)/fling_client: openssl_dep_error |
| 3897 | |
| 3898 | else |
| 3899 | |
| 3900 | bins/$(CONFIG)/fling_client: $(FLING_CLIENT_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3901 | $(E) "[LD] Linking $@" |
| 3902 | $(Q) mkdir -p `dirname $@` |
| 3903 | $(Q) $(LD) $(LDFLAGS) $(FLING_CLIENT_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/fling_client |
| 3904 | |
| 3905 | endif |
| 3906 | |
| 3907 | objs/$(CONFIG)/test/core/fling/client.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3908 | |
| 3909 | deps_fling_client: $(FLING_CLIENT_OBJS:.o=.dep) |
| 3910 | |
| 3911 | ifneq ($(NO_SECURE),true) |
| 3912 | ifneq ($(NO_DEPS),true) |
| 3913 | -include $(FLING_CLIENT_OBJS:.o=.dep) |
| 3914 | endif |
| 3915 | endif |
| 3916 | |
| 3917 | |
| 3918 | FLING_SERVER_SRC = \ |
| 3919 | test/core/fling/server.c \ |
| 3920 | |
| 3921 | FLING_SERVER_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(FLING_SERVER_SRC)))) |
| 3922 | |
| 3923 | ifeq ($(NO_SECURE),true) |
| 3924 | |
| 3925 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3926 | |
| 3927 | bins/$(CONFIG)/fling_server: openssl_dep_error |
| 3928 | |
| 3929 | else |
| 3930 | |
| 3931 | bins/$(CONFIG)/fling_server: $(FLING_SERVER_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3932 | $(E) "[LD] Linking $@" |
| 3933 | $(Q) mkdir -p `dirname $@` |
| 3934 | $(Q) $(LD) $(LDFLAGS) $(FLING_SERVER_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/fling_server |
| 3935 | |
| 3936 | endif |
| 3937 | |
| 3938 | objs/$(CONFIG)/test/core/fling/server.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3939 | |
| 3940 | deps_fling_server: $(FLING_SERVER_OBJS:.o=.dep) |
| 3941 | |
| 3942 | ifneq ($(NO_SECURE),true) |
| 3943 | ifneq ($(NO_DEPS),true) |
| 3944 | -include $(FLING_SERVER_OBJS:.o=.dep) |
| 3945 | endif |
| 3946 | endif |
| 3947 | |
| 3948 | |
| 3949 | FLING_STREAM_TEST_SRC = \ |
| 3950 | test/core/fling/fling_stream_test.c \ |
| 3951 | |
| 3952 | FLING_STREAM_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(FLING_STREAM_TEST_SRC)))) |
| 3953 | |
| 3954 | ifeq ($(NO_SECURE),true) |
| 3955 | |
| 3956 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3957 | |
| 3958 | bins/$(CONFIG)/fling_stream_test: openssl_dep_error |
| 3959 | |
| 3960 | else |
| 3961 | |
| 3962 | bins/$(CONFIG)/fling_stream_test: $(FLING_STREAM_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3963 | $(E) "[LD] Linking $@" |
| 3964 | $(Q) mkdir -p `dirname $@` |
| 3965 | $(Q) $(LD) $(LDFLAGS) $(FLING_STREAM_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/fling_stream_test |
| 3966 | |
| 3967 | endif |
| 3968 | |
| 3969 | objs/$(CONFIG)/test/core/fling/fling_stream_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3970 | |
| 3971 | deps_fling_stream_test: $(FLING_STREAM_TEST_OBJS:.o=.dep) |
| 3972 | |
| 3973 | ifneq ($(NO_SECURE),true) |
| 3974 | ifneq ($(NO_DEPS),true) |
| 3975 | -include $(FLING_STREAM_TEST_OBJS:.o=.dep) |
| 3976 | endif |
| 3977 | endif |
| 3978 | |
| 3979 | |
| 3980 | FLING_TEST_SRC = \ |
| 3981 | test/core/fling/fling_test.c \ |
| 3982 | |
| 3983 | FLING_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(FLING_TEST_SRC)))) |
| 3984 | |
| 3985 | ifeq ($(NO_SECURE),true) |
| 3986 | |
| 3987 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 3988 | |
| 3989 | bins/$(CONFIG)/fling_test: openssl_dep_error |
| 3990 | |
| 3991 | else |
| 3992 | |
| 3993 | bins/$(CONFIG)/fling_test: $(FLING_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 3994 | $(E) "[LD] Linking $@" |
| 3995 | $(Q) mkdir -p `dirname $@` |
| 3996 | $(Q) $(LD) $(LDFLAGS) $(FLING_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/fling_test |
| 3997 | |
| 3998 | endif |
| 3999 | |
| 4000 | objs/$(CONFIG)/test/core/fling/fling_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 4001 | |
| 4002 | deps_fling_test: $(FLING_TEST_OBJS:.o=.dep) |
| 4003 | |
| 4004 | ifneq ($(NO_SECURE),true) |
| 4005 | ifneq ($(NO_DEPS),true) |
| 4006 | -include $(FLING_TEST_OBJS:.o=.dep) |
| 4007 | endif |
| 4008 | endif |
| 4009 | |
| 4010 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4011 | GEN_HPACK_TABLES_SRC = \ |
| 4012 | src/core/transport/chttp2/gen_hpack_tables.c \ |
| 4013 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4014 | GEN_HPACK_TABLES_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GEN_HPACK_TABLES_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4015 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4016 | ifeq ($(NO_SECURE),true) |
| 4017 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4018 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4019 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4020 | bins/$(CONFIG)/gen_hpack_tables: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4021 | |
| 4022 | else |
| 4023 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4024 | bins/$(CONFIG)/gen_hpack_tables: $(GEN_HPACK_TABLES_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgpr.a libs/$(CONFIG)/libgrpc.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4025 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4026 | $(Q) mkdir -p `dirname $@` |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4027 | $(Q) $(LD) $(LDFLAGS) $(GEN_HPACK_TABLES_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgpr.a libs/$(CONFIG)/libgrpc.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/gen_hpack_tables |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4028 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4029 | endif |
| 4030 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4031 | objs/$(CONFIG)/src/core/transport/chttp2/gen_hpack_tables.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgpr.a libs/$(CONFIG)/libgrpc.a |
| 4032 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4033 | deps_gen_hpack_tables: $(GEN_HPACK_TABLES_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4034 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4035 | ifneq ($(NO_SECURE),true) |
| 4036 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4037 | -include $(GEN_HPACK_TABLES_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4038 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4039 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4040 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4041 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4042 | GPR_CANCELLABLE_TEST_SRC = \ |
| 4043 | test/core/support/cancellable_test.c \ |
| 4044 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4045 | GPR_CANCELLABLE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_CANCELLABLE_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4046 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4047 | ifeq ($(NO_SECURE),true) |
| 4048 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4049 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4050 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4051 | bins/$(CONFIG)/gpr_cancellable_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4052 | |
| 4053 | else |
| 4054 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4055 | bins/$(CONFIG)/gpr_cancellable_test: $(GPR_CANCELLABLE_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4056 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4057 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4058 | $(Q) $(LD) $(LDFLAGS) $(GPR_CANCELLABLE_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/gpr_cancellable_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4059 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4060 | endif |
| 4061 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4062 | objs/$(CONFIG)/test/core/support/cancellable_test.o: libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4063 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4064 | deps_gpr_cancellable_test: $(GPR_CANCELLABLE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4065 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4066 | ifneq ($(NO_SECURE),true) |
| 4067 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4068 | -include $(GPR_CANCELLABLE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4069 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4070 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4071 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4072 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4073 | GPR_CMDLINE_TEST_SRC = \ |
| 4074 | test/core/support/cmdline_test.c \ |
| 4075 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4076 | GPR_CMDLINE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_CMDLINE_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4077 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4078 | ifeq ($(NO_SECURE),true) |
| 4079 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4080 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4081 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4082 | bins/$(CONFIG)/gpr_cmdline_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4083 | |
| 4084 | else |
| 4085 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4086 | bins/$(CONFIG)/gpr_cmdline_test: $(GPR_CMDLINE_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4087 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4088 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4089 | $(Q) $(LD) $(LDFLAGS) $(GPR_CMDLINE_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/gpr_cmdline_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4090 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4091 | endif |
| 4092 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4093 | objs/$(CONFIG)/test/core/support/cmdline_test.o: libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4094 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4095 | deps_gpr_cmdline_test: $(GPR_CMDLINE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4096 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4097 | ifneq ($(NO_SECURE),true) |
| 4098 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4099 | -include $(GPR_CMDLINE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4100 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4101 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4102 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4103 | |
| 4104 | GPR_HISTOGRAM_TEST_SRC = \ |
| 4105 | test/core/support/histogram_test.c \ |
| 4106 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4107 | GPR_HISTOGRAM_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_HISTOGRAM_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4108 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4109 | ifeq ($(NO_SECURE),true) |
| 4110 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4111 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4112 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4113 | bins/$(CONFIG)/gpr_histogram_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4114 | |
| 4115 | else |
| 4116 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4117 | bins/$(CONFIG)/gpr_histogram_test: $(GPR_HISTOGRAM_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4118 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4119 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4120 | $(Q) $(LD) $(LDFLAGS) $(GPR_HISTOGRAM_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/gpr_histogram_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4121 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4122 | endif |
| 4123 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4124 | objs/$(CONFIG)/test/core/support/histogram_test.o: libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4125 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4126 | deps_gpr_histogram_test: $(GPR_HISTOGRAM_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4127 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4128 | ifneq ($(NO_SECURE),true) |
| 4129 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4130 | -include $(GPR_HISTOGRAM_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4131 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4132 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4133 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4134 | |
| 4135 | GPR_HOST_PORT_TEST_SRC = \ |
| 4136 | test/core/support/host_port_test.c \ |
| 4137 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4138 | GPR_HOST_PORT_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_HOST_PORT_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4139 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4140 | ifeq ($(NO_SECURE),true) |
| 4141 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4142 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4143 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4144 | bins/$(CONFIG)/gpr_host_port_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4145 | |
| 4146 | else |
| 4147 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4148 | bins/$(CONFIG)/gpr_host_port_test: $(GPR_HOST_PORT_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4149 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4150 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4151 | $(Q) $(LD) $(LDFLAGS) $(GPR_HOST_PORT_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/gpr_host_port_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4152 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4153 | endif |
| 4154 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4155 | objs/$(CONFIG)/test/core/support/host_port_test.o: libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4156 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4157 | deps_gpr_host_port_test: $(GPR_HOST_PORT_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4158 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4159 | ifneq ($(NO_SECURE),true) |
| 4160 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4161 | -include $(GPR_HOST_PORT_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4162 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4163 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4164 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4165 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4166 | GPR_LOG_TEST_SRC = \ |
| 4167 | test/core/support/log_test.c \ |
| 4168 | |
| 4169 | GPR_LOG_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_LOG_TEST_SRC)))) |
| 4170 | |
| 4171 | ifeq ($(NO_SECURE),true) |
| 4172 | |
| 4173 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4174 | |
| 4175 | bins/$(CONFIG)/gpr_log_test: openssl_dep_error |
| 4176 | |
| 4177 | else |
| 4178 | |
| 4179 | bins/$(CONFIG)/gpr_log_test: $(GPR_LOG_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 4180 | $(E) "[LD] Linking $@" |
| 4181 | $(Q) mkdir -p `dirname $@` |
| 4182 | $(Q) $(LD) $(LDFLAGS) $(GPR_LOG_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/gpr_log_test |
| 4183 | |
| 4184 | endif |
| 4185 | |
| 4186 | objs/$(CONFIG)/test/core/support/log_test.o: libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 4187 | |
| 4188 | deps_gpr_log_test: $(GPR_LOG_TEST_OBJS:.o=.dep) |
| 4189 | |
| 4190 | ifneq ($(NO_SECURE),true) |
| 4191 | ifneq ($(NO_DEPS),true) |
| 4192 | -include $(GPR_LOG_TEST_OBJS:.o=.dep) |
| 4193 | endif |
| 4194 | endif |
| 4195 | |
| 4196 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4197 | GPR_SLICE_BUFFER_TEST_SRC = \ |
| 4198 | test/core/support/slice_buffer_test.c \ |
| 4199 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4200 | GPR_SLICE_BUFFER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_SLICE_BUFFER_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4201 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4202 | ifeq ($(NO_SECURE),true) |
| 4203 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4204 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4205 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4206 | bins/$(CONFIG)/gpr_slice_buffer_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4207 | |
| 4208 | else |
| 4209 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4210 | bins/$(CONFIG)/gpr_slice_buffer_test: $(GPR_SLICE_BUFFER_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4211 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4212 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4213 | $(Q) $(LD) $(LDFLAGS) $(GPR_SLICE_BUFFER_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/gpr_slice_buffer_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4214 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4215 | endif |
| 4216 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4217 | objs/$(CONFIG)/test/core/support/slice_buffer_test.o: libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4218 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4219 | deps_gpr_slice_buffer_test: $(GPR_SLICE_BUFFER_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4220 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4221 | ifneq ($(NO_SECURE),true) |
| 4222 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4223 | -include $(GPR_SLICE_BUFFER_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4224 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4225 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4226 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4227 | |
| 4228 | GPR_SLICE_TEST_SRC = \ |
| 4229 | test/core/support/slice_test.c \ |
| 4230 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4231 | GPR_SLICE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_SLICE_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4232 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4233 | ifeq ($(NO_SECURE),true) |
| 4234 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4235 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4236 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4237 | bins/$(CONFIG)/gpr_slice_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4238 | |
| 4239 | else |
| 4240 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4241 | bins/$(CONFIG)/gpr_slice_test: $(GPR_SLICE_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4242 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4243 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4244 | $(Q) $(LD) $(LDFLAGS) $(GPR_SLICE_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/gpr_slice_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4245 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4246 | endif |
| 4247 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4248 | objs/$(CONFIG)/test/core/support/slice_test.o: libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4249 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4250 | deps_gpr_slice_test: $(GPR_SLICE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4251 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4252 | ifneq ($(NO_SECURE),true) |
| 4253 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4254 | -include $(GPR_SLICE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4255 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4256 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4257 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4258 | |
| 4259 | GPR_STRING_TEST_SRC = \ |
| 4260 | test/core/support/string_test.c \ |
| 4261 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4262 | GPR_STRING_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_STRING_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4263 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4264 | ifeq ($(NO_SECURE),true) |
| 4265 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4266 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4267 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4268 | bins/$(CONFIG)/gpr_string_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4269 | |
| 4270 | else |
| 4271 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4272 | bins/$(CONFIG)/gpr_string_test: $(GPR_STRING_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4273 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4274 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4275 | $(Q) $(LD) $(LDFLAGS) $(GPR_STRING_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/gpr_string_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4276 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4277 | endif |
| 4278 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4279 | objs/$(CONFIG)/test/core/support/string_test.o: libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4280 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4281 | deps_gpr_string_test: $(GPR_STRING_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4282 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4283 | ifneq ($(NO_SECURE),true) |
| 4284 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4285 | -include $(GPR_STRING_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4286 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4287 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4288 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4289 | |
| 4290 | GPR_SYNC_TEST_SRC = \ |
| 4291 | test/core/support/sync_test.c \ |
| 4292 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4293 | GPR_SYNC_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_SYNC_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4294 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4295 | ifeq ($(NO_SECURE),true) |
| 4296 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4297 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4298 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4299 | bins/$(CONFIG)/gpr_sync_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4300 | |
| 4301 | else |
| 4302 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4303 | bins/$(CONFIG)/gpr_sync_test: $(GPR_SYNC_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4304 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4305 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4306 | $(Q) $(LD) $(LDFLAGS) $(GPR_SYNC_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/gpr_sync_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4307 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4308 | endif |
| 4309 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4310 | objs/$(CONFIG)/test/core/support/sync_test.o: libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4311 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4312 | deps_gpr_sync_test: $(GPR_SYNC_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4313 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4314 | ifneq ($(NO_SECURE),true) |
| 4315 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4316 | -include $(GPR_SYNC_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4317 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4318 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4319 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4320 | |
| 4321 | GPR_THD_TEST_SRC = \ |
| 4322 | test/core/support/thd_test.c \ |
| 4323 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4324 | GPR_THD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_THD_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4325 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4326 | ifeq ($(NO_SECURE),true) |
| 4327 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4328 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4329 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4330 | bins/$(CONFIG)/gpr_thd_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4331 | |
| 4332 | else |
| 4333 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4334 | bins/$(CONFIG)/gpr_thd_test: $(GPR_THD_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4335 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4336 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4337 | $(Q) $(LD) $(LDFLAGS) $(GPR_THD_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/gpr_thd_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4338 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4339 | endif |
| 4340 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4341 | objs/$(CONFIG)/test/core/support/thd_test.o: libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4342 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4343 | deps_gpr_thd_test: $(GPR_THD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4344 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4345 | ifneq ($(NO_SECURE),true) |
| 4346 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4347 | -include $(GPR_THD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4348 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4349 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4350 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4351 | |
| 4352 | GPR_TIME_TEST_SRC = \ |
| 4353 | test/core/support/time_test.c \ |
| 4354 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4355 | GPR_TIME_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_TIME_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4356 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4357 | ifeq ($(NO_SECURE),true) |
| 4358 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4359 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4360 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4361 | bins/$(CONFIG)/gpr_time_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4362 | |
| 4363 | else |
| 4364 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4365 | bins/$(CONFIG)/gpr_time_test: $(GPR_TIME_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4366 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4367 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4368 | $(Q) $(LD) $(LDFLAGS) $(GPR_TIME_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/gpr_time_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4369 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4370 | endif |
| 4371 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4372 | objs/$(CONFIG)/test/core/support/time_test.o: libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4373 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4374 | deps_gpr_time_test: $(GPR_TIME_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4375 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4376 | ifneq ($(NO_SECURE),true) |
| 4377 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4378 | -include $(GPR_TIME_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4379 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4380 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4381 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4382 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4383 | GPR_USEFUL_TEST_SRC = \ |
| 4384 | test/core/support/useful_test.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4385 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4386 | GPR_USEFUL_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_USEFUL_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4387 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4388 | ifeq ($(NO_SECURE),true) |
| 4389 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4390 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4391 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4392 | bins/$(CONFIG)/gpr_useful_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4393 | |
| 4394 | else |
| 4395 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4396 | bins/$(CONFIG)/gpr_useful_test: $(GPR_USEFUL_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4397 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4398 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4399 | $(Q) $(LD) $(LDFLAGS) $(GPR_USEFUL_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/gpr_useful_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4400 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4401 | endif |
| 4402 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4403 | objs/$(CONFIG)/test/core/support/useful_test.o: libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4404 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4405 | deps_gpr_useful_test: $(GPR_USEFUL_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4406 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4407 | ifneq ($(NO_SECURE),true) |
| 4408 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4409 | -include $(GPR_USEFUL_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4410 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4411 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4412 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4413 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4414 | GRPC_BASE64_TEST_SRC = \ |
| 4415 | test/core/security/base64_test.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4416 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4417 | GRPC_BASE64_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_BASE64_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4418 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4419 | ifeq ($(NO_SECURE),true) |
| 4420 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4421 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4422 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4423 | bins/$(CONFIG)/grpc_base64_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4424 | |
| 4425 | else |
| 4426 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4427 | bins/$(CONFIG)/grpc_base64_test: $(GRPC_BASE64_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4428 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4429 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4430 | $(Q) $(LD) $(LDFLAGS) $(GRPC_BASE64_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/grpc_base64_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4431 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4432 | endif |
| 4433 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4434 | objs/$(CONFIG)/test/core/security/base64_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4435 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4436 | deps_grpc_base64_test: $(GRPC_BASE64_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4437 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4438 | ifneq ($(NO_SECURE),true) |
| 4439 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4440 | -include $(GRPC_BASE64_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4441 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4442 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4443 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4444 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4445 | GRPC_BYTE_BUFFER_READER_TEST_SRC = \ |
| 4446 | test/core/surface/byte_buffer_reader_test.c \ |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 4447 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4448 | GRPC_BYTE_BUFFER_READER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_BYTE_BUFFER_READER_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 4449 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4450 | ifeq ($(NO_SECURE),true) |
| 4451 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4452 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4453 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4454 | bins/$(CONFIG)/grpc_byte_buffer_reader_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4455 | |
| 4456 | else |
| 4457 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4458 | bins/$(CONFIG)/grpc_byte_buffer_reader_test: $(GRPC_BYTE_BUFFER_READER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 4459 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4460 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4461 | $(Q) $(LD) $(LDFLAGS) $(GRPC_BYTE_BUFFER_READER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/grpc_byte_buffer_reader_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 4462 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4463 | endif |
| 4464 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4465 | objs/$(CONFIG)/test/core/surface/byte_buffer_reader_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4466 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4467 | deps_grpc_byte_buffer_reader_test: $(GRPC_BYTE_BUFFER_READER_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 4468 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4469 | ifneq ($(NO_SECURE),true) |
| 4470 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4471 | -include $(GRPC_BYTE_BUFFER_READER_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4472 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4473 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4474 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4475 | |
| 4476 | GRPC_CHANNEL_STACK_TEST_SRC = \ |
| 4477 | test/core/channel/channel_stack_test.c \ |
| 4478 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4479 | GRPC_CHANNEL_STACK_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_CHANNEL_STACK_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4480 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4481 | ifeq ($(NO_SECURE),true) |
| 4482 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4483 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4484 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4485 | bins/$(CONFIG)/grpc_channel_stack_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4486 | |
| 4487 | else |
| 4488 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4489 | bins/$(CONFIG)/grpc_channel_stack_test: $(GRPC_CHANNEL_STACK_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4490 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4491 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4492 | $(Q) $(LD) $(LDFLAGS) $(GRPC_CHANNEL_STACK_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/grpc_channel_stack_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4493 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4494 | endif |
| 4495 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4496 | objs/$(CONFIG)/test/core/channel/channel_stack_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4497 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4498 | deps_grpc_channel_stack_test: $(GRPC_CHANNEL_STACK_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4499 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4500 | ifneq ($(NO_SECURE),true) |
| 4501 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4502 | -include $(GRPC_CHANNEL_STACK_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4503 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4504 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4505 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4506 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4507 | GRPC_COMPLETION_QUEUE_BENCHMARK_SRC = \ |
| 4508 | test/core/surface/completion_queue_benchmark.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4509 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4510 | GRPC_COMPLETION_QUEUE_BENCHMARK_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_COMPLETION_QUEUE_BENCHMARK_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4511 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4512 | ifeq ($(NO_SECURE),true) |
| 4513 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4514 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4515 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4516 | bins/$(CONFIG)/grpc_completion_queue_benchmark: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4517 | |
| 4518 | else |
| 4519 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4520 | bins/$(CONFIG)/grpc_completion_queue_benchmark: $(GRPC_COMPLETION_QUEUE_BENCHMARK_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4521 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4522 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4523 | $(Q) $(LD) $(LDFLAGS) $(GRPC_COMPLETION_QUEUE_BENCHMARK_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/grpc_completion_queue_benchmark |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4524 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4525 | endif |
| 4526 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4527 | objs/$(CONFIG)/test/core/surface/completion_queue_benchmark.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4528 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4529 | deps_grpc_completion_queue_benchmark: $(GRPC_COMPLETION_QUEUE_BENCHMARK_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4530 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4531 | ifneq ($(NO_SECURE),true) |
| 4532 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4533 | -include $(GRPC_COMPLETION_QUEUE_BENCHMARK_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4534 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4535 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4536 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4537 | |
| 4538 | GRPC_COMPLETION_QUEUE_TEST_SRC = \ |
| 4539 | test/core/surface/completion_queue_test.c \ |
| 4540 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4541 | GRPC_COMPLETION_QUEUE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_COMPLETION_QUEUE_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4542 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4543 | ifeq ($(NO_SECURE),true) |
| 4544 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4545 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4546 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4547 | bins/$(CONFIG)/grpc_completion_queue_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4548 | |
| 4549 | else |
| 4550 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4551 | bins/$(CONFIG)/grpc_completion_queue_test: $(GRPC_COMPLETION_QUEUE_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4552 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4553 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4554 | $(Q) $(LD) $(LDFLAGS) $(GRPC_COMPLETION_QUEUE_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/grpc_completion_queue_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4555 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4556 | endif |
| 4557 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4558 | objs/$(CONFIG)/test/core/surface/completion_queue_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4559 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4560 | deps_grpc_completion_queue_test: $(GRPC_COMPLETION_QUEUE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4561 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4562 | ifneq ($(NO_SECURE),true) |
| 4563 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4564 | -include $(GRPC_COMPLETION_QUEUE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4565 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4566 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4567 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4568 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4569 | GRPC_CREDENTIALS_TEST_SRC = \ |
| 4570 | test/core/security/credentials_test.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4571 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4572 | GRPC_CREDENTIALS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_CREDENTIALS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4573 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4574 | ifeq ($(NO_SECURE),true) |
| 4575 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4576 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4577 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4578 | bins/$(CONFIG)/grpc_credentials_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4579 | |
| 4580 | else |
| 4581 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4582 | bins/$(CONFIG)/grpc_credentials_test: $(GRPC_CREDENTIALS_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4583 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4584 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4585 | $(Q) $(LD) $(LDFLAGS) $(GRPC_CREDENTIALS_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/grpc_credentials_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4586 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4587 | endif |
| 4588 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4589 | objs/$(CONFIG)/test/core/security/credentials_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4590 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4591 | deps_grpc_credentials_test: $(GRPC_CREDENTIALS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4592 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4593 | ifneq ($(NO_SECURE),true) |
| 4594 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4595 | -include $(GRPC_CREDENTIALS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4596 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4597 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4598 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4599 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4600 | GRPC_FETCH_OAUTH2_SRC = \ |
| 4601 | test/core/security/fetch_oauth2.c \ |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4602 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4603 | GRPC_FETCH_OAUTH2_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_FETCH_OAUTH2_SRC)))) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4604 | |
| 4605 | ifeq ($(NO_SECURE),true) |
| 4606 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4607 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4608 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4609 | bins/$(CONFIG)/grpc_fetch_oauth2: openssl_dep_error |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4610 | |
| 4611 | else |
| 4612 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4613 | bins/$(CONFIG)/grpc_fetch_oauth2: $(GRPC_FETCH_OAUTH2_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4614 | $(E) "[LD] Linking $@" |
| 4615 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4616 | $(Q) $(LD) $(LDFLAGS) $(GRPC_FETCH_OAUTH2_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/grpc_fetch_oauth2 |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4617 | |
| 4618 | endif |
| 4619 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4620 | objs/$(CONFIG)/test/core/security/fetch_oauth2.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4621 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4622 | deps_grpc_fetch_oauth2: $(GRPC_FETCH_OAUTH2_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4623 | |
| 4624 | ifneq ($(NO_SECURE),true) |
| 4625 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4626 | -include $(GRPC_FETCH_OAUTH2_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4627 | endif |
| 4628 | endif |
| 4629 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4630 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4631 | GRPC_JSON_TOKEN_TEST_SRC = \ |
| 4632 | test/core/security/json_token_test.c \ |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4633 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4634 | GRPC_JSON_TOKEN_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_JSON_TOKEN_TEST_SRC)))) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4635 | |
| 4636 | ifeq ($(NO_SECURE),true) |
| 4637 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4638 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4639 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4640 | bins/$(CONFIG)/grpc_json_token_test: openssl_dep_error |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4641 | |
| 4642 | else |
| 4643 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4644 | bins/$(CONFIG)/grpc_json_token_test: $(GRPC_JSON_TOKEN_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4645 | $(E) "[LD] Linking $@" |
| 4646 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4647 | $(Q) $(LD) $(LDFLAGS) $(GRPC_JSON_TOKEN_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/grpc_json_token_test |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4648 | |
| 4649 | endif |
| 4650 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4651 | objs/$(CONFIG)/test/core/security/json_token_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4652 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4653 | deps_grpc_json_token_test: $(GRPC_JSON_TOKEN_TEST_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4654 | |
| 4655 | ifneq ($(NO_SECURE),true) |
| 4656 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4657 | -include $(GRPC_JSON_TOKEN_TEST_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4658 | endif |
| 4659 | endif |
| 4660 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 4661 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4662 | GRPC_STREAM_OP_TEST_SRC = \ |
| 4663 | test/core/transport/stream_op_test.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4664 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4665 | GRPC_STREAM_OP_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_STREAM_OP_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4666 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4667 | ifeq ($(NO_SECURE),true) |
| 4668 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4669 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4670 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4671 | bins/$(CONFIG)/grpc_stream_op_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4672 | |
| 4673 | else |
| 4674 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4675 | bins/$(CONFIG)/grpc_stream_op_test: $(GRPC_STREAM_OP_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4676 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4677 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4678 | $(Q) $(LD) $(LDFLAGS) $(GRPC_STREAM_OP_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/grpc_stream_op_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4679 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4680 | endif |
| 4681 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4682 | objs/$(CONFIG)/test/core/transport/stream_op_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4683 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4684 | deps_grpc_stream_op_test: $(GRPC_STREAM_OP_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4685 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4686 | ifneq ($(NO_SECURE),true) |
| 4687 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4688 | -include $(GRPC_STREAM_OP_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4689 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4690 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4691 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4692 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4693 | HPACK_PARSER_TEST_SRC = \ |
| 4694 | test/core/transport/chttp2/hpack_parser_test.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4695 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4696 | HPACK_PARSER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(HPACK_PARSER_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4697 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4698 | ifeq ($(NO_SECURE),true) |
| 4699 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4700 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4701 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4702 | bins/$(CONFIG)/hpack_parser_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4703 | |
| 4704 | else |
| 4705 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4706 | bins/$(CONFIG)/hpack_parser_test: $(HPACK_PARSER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4707 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4708 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4709 | $(Q) $(LD) $(LDFLAGS) $(HPACK_PARSER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/hpack_parser_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4710 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4711 | endif |
| 4712 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4713 | objs/$(CONFIG)/test/core/transport/chttp2/hpack_parser_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4714 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4715 | deps_hpack_parser_test: $(HPACK_PARSER_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4716 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4717 | ifneq ($(NO_SECURE),true) |
| 4718 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4719 | -include $(HPACK_PARSER_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4720 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4721 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4722 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4723 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4724 | HPACK_TABLE_TEST_SRC = \ |
| 4725 | test/core/transport/chttp2/hpack_table_test.c \ |
aveitch | 482a5be | 2014-12-15 10:25:12 -0800 | [diff] [blame] | 4726 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4727 | HPACK_TABLE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(HPACK_TABLE_TEST_SRC)))) |
aveitch | 482a5be | 2014-12-15 10:25:12 -0800 | [diff] [blame] | 4728 | |
| 4729 | ifeq ($(NO_SECURE),true) |
| 4730 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4731 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4732 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4733 | bins/$(CONFIG)/hpack_table_test: openssl_dep_error |
aveitch | 482a5be | 2014-12-15 10:25:12 -0800 | [diff] [blame] | 4734 | |
| 4735 | else |
| 4736 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4737 | bins/$(CONFIG)/hpack_table_test: $(HPACK_TABLE_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
aveitch | 482a5be | 2014-12-15 10:25:12 -0800 | [diff] [blame] | 4738 | $(E) "[LD] Linking $@" |
| 4739 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4740 | $(Q) $(LD) $(LDFLAGS) $(HPACK_TABLE_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/hpack_table_test |
aveitch | 482a5be | 2014-12-15 10:25:12 -0800 | [diff] [blame] | 4741 | |
| 4742 | endif |
| 4743 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4744 | objs/$(CONFIG)/test/core/transport/chttp2/hpack_table_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4745 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4746 | deps_hpack_table_test: $(HPACK_TABLE_TEST_OBJS:.o=.dep) |
aveitch | 482a5be | 2014-12-15 10:25:12 -0800 | [diff] [blame] | 4747 | |
| 4748 | ifneq ($(NO_SECURE),true) |
| 4749 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4750 | -include $(HPACK_TABLE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4751 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4752 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4753 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4754 | |
| 4755 | HTTPCLI_FORMAT_REQUEST_TEST_SRC = \ |
| 4756 | test/core/httpcli/format_request_test.c \ |
| 4757 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4758 | HTTPCLI_FORMAT_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(HTTPCLI_FORMAT_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4759 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4760 | ifeq ($(NO_SECURE),true) |
| 4761 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4762 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4763 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4764 | bins/$(CONFIG)/httpcli_format_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4765 | |
| 4766 | else |
| 4767 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4768 | bins/$(CONFIG)/httpcli_format_request_test: $(HTTPCLI_FORMAT_REQUEST_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4769 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4770 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4771 | $(Q) $(LD) $(LDFLAGS) $(HTTPCLI_FORMAT_REQUEST_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/httpcli_format_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4772 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4773 | endif |
| 4774 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4775 | objs/$(CONFIG)/test/core/httpcli/format_request_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4776 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4777 | deps_httpcli_format_request_test: $(HTTPCLI_FORMAT_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4778 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4779 | ifneq ($(NO_SECURE),true) |
| 4780 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4781 | -include $(HTTPCLI_FORMAT_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4782 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4783 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4784 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4785 | |
| 4786 | HTTPCLI_PARSER_TEST_SRC = \ |
| 4787 | test/core/httpcli/parser_test.c \ |
| 4788 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4789 | HTTPCLI_PARSER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(HTTPCLI_PARSER_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4790 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4791 | ifeq ($(NO_SECURE),true) |
| 4792 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4793 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4794 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4795 | bins/$(CONFIG)/httpcli_parser_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4796 | |
| 4797 | else |
| 4798 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4799 | bins/$(CONFIG)/httpcli_parser_test: $(HTTPCLI_PARSER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4800 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4801 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4802 | $(Q) $(LD) $(LDFLAGS) $(HTTPCLI_PARSER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/httpcli_parser_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4803 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4804 | endif |
| 4805 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4806 | objs/$(CONFIG)/test/core/httpcli/parser_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4807 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4808 | deps_httpcli_parser_test: $(HTTPCLI_PARSER_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4809 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4810 | ifneq ($(NO_SECURE),true) |
| 4811 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4812 | -include $(HTTPCLI_PARSER_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4813 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4814 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4815 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4816 | |
| 4817 | HTTPCLI_TEST_SRC = \ |
| 4818 | test/core/httpcli/httpcli_test.c \ |
| 4819 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4820 | HTTPCLI_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(HTTPCLI_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4821 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4822 | ifeq ($(NO_SECURE),true) |
| 4823 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4824 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4825 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4826 | bins/$(CONFIG)/httpcli_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4827 | |
| 4828 | else |
| 4829 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4830 | bins/$(CONFIG)/httpcli_test: $(HTTPCLI_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4831 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4832 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4833 | $(Q) $(LD) $(LDFLAGS) $(HTTPCLI_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/httpcli_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4834 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4835 | endif |
| 4836 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4837 | objs/$(CONFIG)/test/core/httpcli/httpcli_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4838 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4839 | deps_httpcli_test: $(HTTPCLI_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4840 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4841 | ifneq ($(NO_SECURE),true) |
| 4842 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4843 | -include $(HTTPCLI_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4844 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4845 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4846 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4847 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4848 | LAME_CLIENT_TEST_SRC = \ |
| 4849 | test/core/surface/lame_client_test.c \ |
| 4850 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4851 | LAME_CLIENT_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LAME_CLIENT_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4852 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4853 | ifeq ($(NO_SECURE),true) |
| 4854 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4855 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4856 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 4857 | bins/$(CONFIG)/lame_client_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4858 | |
| 4859 | else |
| 4860 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4861 | bins/$(CONFIG)/lame_client_test: $(LAME_CLIENT_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4862 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4863 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 4864 | $(Q) $(LD) $(LDFLAGS) $(LAME_CLIENT_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/lame_client_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4865 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4866 | endif |
| 4867 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 4868 | objs/$(CONFIG)/test/core/surface/lame_client_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4869 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4870 | deps_lame_client_test: $(LAME_CLIENT_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4871 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4872 | ifneq ($(NO_SECURE),true) |
| 4873 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 4874 | -include $(LAME_CLIENT_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4875 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4876 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4877 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4878 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4879 | LOW_LEVEL_PING_PONG_BENCHMARK_SRC = \ |
| 4880 | test/core/network_benchmarks/low_level_ping_pong.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4881 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4882 | LOW_LEVEL_PING_PONG_BENCHMARK_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(LOW_LEVEL_PING_PONG_BENCHMARK_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4883 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4884 | ifeq ($(NO_SECURE),true) |
| 4885 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4886 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4887 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4888 | bins/$(CONFIG)/low_level_ping_pong_benchmark: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4889 | |
| 4890 | else |
| 4891 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4892 | bins/$(CONFIG)/low_level_ping_pong_benchmark: $(LOW_LEVEL_PING_PONG_BENCHMARK_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4893 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4894 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4895 | $(Q) $(LD) $(LDFLAGS) $(LOW_LEVEL_PING_PONG_BENCHMARK_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/low_level_ping_pong_benchmark |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4896 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4897 | endif |
| 4898 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4899 | objs/$(CONFIG)/test/core/network_benchmarks/low_level_ping_pong.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4900 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4901 | deps_low_level_ping_pong_benchmark: $(LOW_LEVEL_PING_PONG_BENCHMARK_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4902 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4903 | ifneq ($(NO_SECURE),true) |
| 4904 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4905 | -include $(LOW_LEVEL_PING_PONG_BENCHMARK_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4906 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4907 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4908 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4909 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4910 | MESSAGE_COMPRESS_TEST_SRC = \ |
| 4911 | test/core/compression/message_compress_test.c \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4912 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4913 | MESSAGE_COMPRESS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(MESSAGE_COMPRESS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4914 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4915 | ifeq ($(NO_SECURE),true) |
| 4916 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4917 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4918 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4919 | bins/$(CONFIG)/message_compress_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4920 | |
| 4921 | else |
| 4922 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4923 | bins/$(CONFIG)/message_compress_test: $(MESSAGE_COMPRESS_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4924 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 4925 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4926 | $(Q) $(LD) $(LDFLAGS) $(MESSAGE_COMPRESS_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/message_compress_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4927 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4928 | endif |
| 4929 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4930 | objs/$(CONFIG)/test/core/compression/message_compress_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4931 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4932 | deps_message_compress_test: $(MESSAGE_COMPRESS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4933 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4934 | ifneq ($(NO_SECURE),true) |
| 4935 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4936 | -include $(MESSAGE_COMPRESS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4937 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4938 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4939 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4940 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4941 | METADATA_BUFFER_TEST_SRC = \ |
| 4942 | test/core/channel/metadata_buffer_test.c \ |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 4943 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4944 | METADATA_BUFFER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(METADATA_BUFFER_TEST_SRC)))) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 4945 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4946 | ifeq ($(NO_SECURE),true) |
| 4947 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 4948 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4949 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4950 | bins/$(CONFIG)/metadata_buffer_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4951 | |
| 4952 | else |
| 4953 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4954 | bins/$(CONFIG)/metadata_buffer_test: $(METADATA_BUFFER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 4955 | $(E) "[LD] Linking $@" |
| 4956 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4957 | $(Q) $(LD) $(LDFLAGS) $(METADATA_BUFFER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/metadata_buffer_test |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 4958 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4959 | endif |
| 4960 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4961 | objs/$(CONFIG)/test/core/channel/metadata_buffer_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 4962 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4963 | deps_metadata_buffer_test: $(METADATA_BUFFER_TEST_OBJS:.o=.dep) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 4964 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 4965 | ifneq ($(NO_SECURE),true) |
| 4966 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 4967 | -include $(METADATA_BUFFER_TEST_OBJS:.o=.dep) |
| 4968 | endif |
| 4969 | endif |
| 4970 | |
| 4971 | |
| 4972 | MURMUR_HASH_TEST_SRC = \ |
| 4973 | test/core/support/murmur_hash_test.c \ |
| 4974 | |
| 4975 | MURMUR_HASH_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(MURMUR_HASH_TEST_SRC)))) |
| 4976 | |
| 4977 | ifeq ($(NO_SECURE),true) |
| 4978 | |
| 4979 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 4980 | |
| 4981 | bins/$(CONFIG)/murmur_hash_test: openssl_dep_error |
| 4982 | |
| 4983 | else |
| 4984 | |
| 4985 | bins/$(CONFIG)/murmur_hash_test: $(MURMUR_HASH_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 4986 | $(E) "[LD] Linking $@" |
| 4987 | $(Q) mkdir -p `dirname $@` |
| 4988 | $(Q) $(LD) $(LDFLAGS) $(MURMUR_HASH_TEST_OBJS) libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/murmur_hash_test |
| 4989 | |
| 4990 | endif |
| 4991 | |
| 4992 | objs/$(CONFIG)/test/core/support/murmur_hash_test.o: libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 4993 | |
| 4994 | deps_murmur_hash_test: $(MURMUR_HASH_TEST_OBJS:.o=.dep) |
| 4995 | |
| 4996 | ifneq ($(NO_SECURE),true) |
| 4997 | ifneq ($(NO_DEPS),true) |
| 4998 | -include $(MURMUR_HASH_TEST_OBJS:.o=.dep) |
| 4999 | endif |
| 5000 | endif |
| 5001 | |
| 5002 | |
| 5003 | NO_SERVER_TEST_SRC = \ |
| 5004 | test/core/end2end/no_server_test.c \ |
| 5005 | |
| 5006 | NO_SERVER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(NO_SERVER_TEST_SRC)))) |
| 5007 | |
| 5008 | ifeq ($(NO_SECURE),true) |
| 5009 | |
| 5010 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5011 | |
| 5012 | bins/$(CONFIG)/no_server_test: openssl_dep_error |
| 5013 | |
| 5014 | else |
| 5015 | |
| 5016 | bins/$(CONFIG)/no_server_test: $(NO_SERVER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5017 | $(E) "[LD] Linking $@" |
| 5018 | $(Q) mkdir -p `dirname $@` |
| 5019 | $(Q) $(LD) $(LDFLAGS) $(NO_SERVER_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/no_server_test |
| 5020 | |
| 5021 | endif |
| 5022 | |
| 5023 | objs/$(CONFIG)/test/core/end2end/no_server_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5024 | |
| 5025 | deps_no_server_test: $(NO_SERVER_TEST_OBJS:.o=.dep) |
| 5026 | |
| 5027 | ifneq ($(NO_SECURE),true) |
| 5028 | ifneq ($(NO_DEPS),true) |
| 5029 | -include $(NO_SERVER_TEST_OBJS:.o=.dep) |
| 5030 | endif |
| 5031 | endif |
| 5032 | |
| 5033 | |
| 5034 | POLL_KICK_TEST_SRC = \ |
| 5035 | test/core/iomgr/poll_kick_test.c \ |
| 5036 | |
| 5037 | POLL_KICK_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(POLL_KICK_TEST_SRC)))) |
| 5038 | |
| 5039 | ifeq ($(NO_SECURE),true) |
| 5040 | |
| 5041 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5042 | |
| 5043 | bins/$(CONFIG)/poll_kick_test: openssl_dep_error |
| 5044 | |
| 5045 | else |
| 5046 | |
| 5047 | bins/$(CONFIG)/poll_kick_test: $(POLL_KICK_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5048 | $(E) "[LD] Linking $@" |
| 5049 | $(Q) mkdir -p `dirname $@` |
| 5050 | $(Q) $(LD) $(LDFLAGS) $(POLL_KICK_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/poll_kick_test |
| 5051 | |
| 5052 | endif |
| 5053 | |
| 5054 | objs/$(CONFIG)/test/core/iomgr/poll_kick_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5055 | |
| 5056 | deps_poll_kick_test: $(POLL_KICK_TEST_OBJS:.o=.dep) |
| 5057 | |
| 5058 | ifneq ($(NO_SECURE),true) |
| 5059 | ifneq ($(NO_DEPS),true) |
| 5060 | -include $(POLL_KICK_TEST_OBJS:.o=.dep) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5061 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5062 | endif |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5063 | |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5064 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5065 | RESOLVE_ADDRESS_TEST_SRC = \ |
| 5066 | test/core/iomgr/resolve_address_test.c \ |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5067 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5068 | RESOLVE_ADDRESS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(RESOLVE_ADDRESS_TEST_SRC)))) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5069 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5070 | ifeq ($(NO_SECURE),true) |
| 5071 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 5072 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5073 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5074 | bins/$(CONFIG)/resolve_address_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5075 | |
| 5076 | else |
| 5077 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5078 | bins/$(CONFIG)/resolve_address_test: $(RESOLVE_ADDRESS_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5079 | $(E) "[LD] Linking $@" |
| 5080 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5081 | $(Q) $(LD) $(LDFLAGS) $(RESOLVE_ADDRESS_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/resolve_address_test |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5082 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5083 | endif |
| 5084 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5085 | objs/$(CONFIG)/test/core/iomgr/resolve_address_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 5086 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5087 | deps_resolve_address_test: $(RESOLVE_ADDRESS_TEST_OBJS:.o=.dep) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5088 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5089 | ifneq ($(NO_SECURE),true) |
| 5090 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5091 | -include $(RESOLVE_ADDRESS_TEST_OBJS:.o=.dep) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5092 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5093 | endif |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5094 | |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5095 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5096 | SECURE_ENDPOINT_TEST_SRC = \ |
| 5097 | test/core/security/secure_endpoint_test.c \ |
| 5098 | |
| 5099 | SECURE_ENDPOINT_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(SECURE_ENDPOINT_TEST_SRC)))) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5100 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5101 | ifeq ($(NO_SECURE),true) |
| 5102 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 5103 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5104 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5105 | bins/$(CONFIG)/secure_endpoint_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5106 | |
| 5107 | else |
| 5108 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5109 | bins/$(CONFIG)/secure_endpoint_test: $(SECURE_ENDPOINT_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5110 | $(E) "[LD] Linking $@" |
| 5111 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5112 | $(Q) $(LD) $(LDFLAGS) $(SECURE_ENDPOINT_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/secure_endpoint_test |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5113 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5114 | endif |
| 5115 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5116 | objs/$(CONFIG)/test/core/security/secure_endpoint_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 5117 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5118 | deps_secure_endpoint_test: $(SECURE_ENDPOINT_TEST_OBJS:.o=.dep) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5119 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5120 | ifneq ($(NO_SECURE),true) |
| 5121 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5122 | -include $(SECURE_ENDPOINT_TEST_OBJS:.o=.dep) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5123 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5124 | endif |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5125 | |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5126 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5127 | SOCKADDR_UTILS_TEST_SRC = \ |
| 5128 | test/core/iomgr/sockaddr_utils_test.c \ |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5129 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5130 | SOCKADDR_UTILS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(SOCKADDR_UTILS_TEST_SRC)))) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5131 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5132 | ifeq ($(NO_SECURE),true) |
| 5133 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 5134 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5135 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5136 | bins/$(CONFIG)/sockaddr_utils_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5137 | |
| 5138 | else |
| 5139 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5140 | bins/$(CONFIG)/sockaddr_utils_test: $(SOCKADDR_UTILS_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5141 | $(E) "[LD] Linking $@" |
| 5142 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5143 | $(Q) $(LD) $(LDFLAGS) $(SOCKADDR_UTILS_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/sockaddr_utils_test |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5144 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5145 | endif |
| 5146 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5147 | objs/$(CONFIG)/test/core/iomgr/sockaddr_utils_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 5148 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5149 | deps_sockaddr_utils_test: $(SOCKADDR_UTILS_TEST_OBJS:.o=.dep) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5150 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5151 | ifneq ($(NO_SECURE),true) |
| 5152 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5153 | -include $(SOCKADDR_UTILS_TEST_OBJS:.o=.dep) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5154 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5155 | endif |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5156 | |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5157 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5158 | TCP_CLIENT_POSIX_TEST_SRC = \ |
| 5159 | test/core/iomgr/tcp_client_posix_test.c \ |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5160 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5161 | TCP_CLIENT_POSIX_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(TCP_CLIENT_POSIX_TEST_SRC)))) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5162 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5163 | ifeq ($(NO_SECURE),true) |
| 5164 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 5165 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5166 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5167 | bins/$(CONFIG)/tcp_client_posix_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5168 | |
| 5169 | else |
| 5170 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5171 | bins/$(CONFIG)/tcp_client_posix_test: $(TCP_CLIENT_POSIX_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5172 | $(E) "[LD] Linking $@" |
| 5173 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5174 | $(Q) $(LD) $(LDFLAGS) $(TCP_CLIENT_POSIX_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/tcp_client_posix_test |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5175 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5176 | endif |
| 5177 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5178 | objs/$(CONFIG)/test/core/iomgr/tcp_client_posix_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 5179 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5180 | deps_tcp_client_posix_test: $(TCP_CLIENT_POSIX_TEST_OBJS:.o=.dep) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5181 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5182 | ifneq ($(NO_SECURE),true) |
| 5183 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5184 | -include $(TCP_CLIENT_POSIX_TEST_OBJS:.o=.dep) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5185 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5186 | endif |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5187 | |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5188 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5189 | TCP_POSIX_TEST_SRC = \ |
| 5190 | test/core/iomgr/tcp_posix_test.c \ |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5191 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5192 | TCP_POSIX_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(TCP_POSIX_TEST_SRC)))) |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5193 | |
| 5194 | ifeq ($(NO_SECURE),true) |
| 5195 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 5196 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5197 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5198 | bins/$(CONFIG)/tcp_posix_test: openssl_dep_error |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5199 | |
| 5200 | else |
| 5201 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5202 | bins/$(CONFIG)/tcp_posix_test: $(TCP_POSIX_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5203 | $(E) "[LD] Linking $@" |
| 5204 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5205 | $(Q) $(LD) $(LDFLAGS) $(TCP_POSIX_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/tcp_posix_test |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5206 | |
| 5207 | endif |
| 5208 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5209 | objs/$(CONFIG)/test/core/iomgr/tcp_posix_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 5210 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5211 | deps_tcp_posix_test: $(TCP_POSIX_TEST_OBJS:.o=.dep) |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5212 | |
| 5213 | ifneq ($(NO_SECURE),true) |
| 5214 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5215 | -include $(TCP_POSIX_TEST_OBJS:.o=.dep) |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5216 | endif |
| 5217 | endif |
| 5218 | |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5219 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5220 | TCP_SERVER_POSIX_TEST_SRC = \ |
| 5221 | test/core/iomgr/tcp_server_posix_test.c \ |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5222 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5223 | TCP_SERVER_POSIX_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(TCP_SERVER_POSIX_TEST_SRC)))) |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5224 | |
| 5225 | ifeq ($(NO_SECURE),true) |
| 5226 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 5227 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5228 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5229 | bins/$(CONFIG)/tcp_server_posix_test: openssl_dep_error |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5230 | |
| 5231 | else |
| 5232 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5233 | bins/$(CONFIG)/tcp_server_posix_test: $(TCP_SERVER_POSIX_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5234 | $(E) "[LD] Linking $@" |
| 5235 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5236 | $(Q) $(LD) $(LDFLAGS) $(TCP_SERVER_POSIX_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/tcp_server_posix_test |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5237 | |
| 5238 | endif |
| 5239 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5240 | objs/$(CONFIG)/test/core/iomgr/tcp_server_posix_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 5241 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5242 | deps_tcp_server_posix_test: $(TCP_SERVER_POSIX_TEST_OBJS:.o=.dep) |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5243 | |
| 5244 | ifneq ($(NO_SECURE),true) |
| 5245 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5246 | -include $(TCP_SERVER_POSIX_TEST_OBJS:.o=.dep) |
| 5247 | endif |
| 5248 | endif |
| 5249 | |
| 5250 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5251 | TIME_AVERAGED_STATS_TEST_SRC = \ |
| 5252 | test/core/iomgr/time_averaged_stats_test.c \ |
| 5253 | |
| 5254 | TIME_AVERAGED_STATS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(TIME_AVERAGED_STATS_TEST_SRC)))) |
| 5255 | |
| 5256 | ifeq ($(NO_SECURE),true) |
| 5257 | |
| 5258 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5259 | |
| 5260 | bins/$(CONFIG)/time_averaged_stats_test: openssl_dep_error |
| 5261 | |
| 5262 | else |
| 5263 | |
| 5264 | bins/$(CONFIG)/time_averaged_stats_test: $(TIME_AVERAGED_STATS_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5265 | $(E) "[LD] Linking $@" |
| 5266 | $(Q) mkdir -p `dirname $@` |
| 5267 | $(Q) $(LD) $(LDFLAGS) $(TIME_AVERAGED_STATS_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/time_averaged_stats_test |
| 5268 | |
| 5269 | endif |
| 5270 | |
| 5271 | objs/$(CONFIG)/test/core/iomgr/time_averaged_stats_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5272 | |
| 5273 | deps_time_averaged_stats_test: $(TIME_AVERAGED_STATS_TEST_OBJS:.o=.dep) |
| 5274 | |
| 5275 | ifneq ($(NO_SECURE),true) |
| 5276 | ifneq ($(NO_DEPS),true) |
| 5277 | -include $(TIME_AVERAGED_STATS_TEST_OBJS:.o=.dep) |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5278 | endif |
| 5279 | endif |
| 5280 | |
ctiller | 3bf466f | 2014-12-19 16:21:57 -0800 | [diff] [blame] | 5281 | |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5282 | TIME_TEST_SRC = \ |
| 5283 | test/core/support/time_test.c \ |
| 5284 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 5285 | TIME_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(TIME_TEST_SRC)))) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5286 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5287 | ifeq ($(NO_SECURE),true) |
| 5288 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 5289 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5290 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 5291 | bins/$(CONFIG)/time_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5292 | |
| 5293 | else |
| 5294 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5295 | bins/$(CONFIG)/time_test: $(TIME_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5296 | $(E) "[LD] Linking $@" |
| 5297 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5298 | $(Q) $(LD) $(LDFLAGS) $(TIME_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/time_test |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5299 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5300 | endif |
| 5301 | |
Craig Tiller | 770f60a | 2015-01-12 17:44:43 -0800 | [diff] [blame] | 5302 | objs/$(CONFIG)/test/core/support/time_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 5303 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 5304 | deps_time_test: $(TIME_TEST_OBJS:.o=.dep) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5305 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5306 | ifneq ($(NO_SECURE),true) |
| 5307 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 5308 | -include $(TIME_TEST_OBJS:.o=.dep) |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5309 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5310 | endif |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5311 | |
ctiller | 8919f60 | 2014-12-10 10:19:42 -0800 | [diff] [blame] | 5312 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5313 | TIMEOUT_ENCODING_TEST_SRC = \ |
| 5314 | test/core/transport/chttp2/timeout_encoding_test.c \ |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 5315 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5316 | TIMEOUT_ENCODING_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(TIMEOUT_ENCODING_TEST_SRC)))) |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 5317 | |
| 5318 | ifeq ($(NO_SECURE),true) |
| 5319 | |
| 5320 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5321 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5322 | bins/$(CONFIG)/timeout_encoding_test: openssl_dep_error |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 5323 | |
| 5324 | else |
| 5325 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5326 | bins/$(CONFIG)/timeout_encoding_test: $(TIMEOUT_ENCODING_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 5327 | $(E) "[LD] Linking $@" |
| 5328 | $(Q) mkdir -p `dirname $@` |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5329 | $(Q) $(LD) $(LDFLAGS) $(TIMEOUT_ENCODING_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/timeout_encoding_test |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 5330 | |
| 5331 | endif |
| 5332 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5333 | objs/$(CONFIG)/test/core/transport/chttp2/timeout_encoding_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 5334 | |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5335 | deps_timeout_encoding_test: $(TIMEOUT_ENCODING_TEST_OBJS:.o=.dep) |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 5336 | |
| 5337 | ifneq ($(NO_SECURE),true) |
| 5338 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 17ec5f9 | 2015-01-18 11:30:41 -0800 | [diff] [blame] | 5339 | -include $(TIMEOUT_ENCODING_TEST_OBJS:.o=.dep) |
| 5340 | endif |
| 5341 | endif |
| 5342 | |
| 5343 | |
| 5344 | TRANSPORT_METADATA_TEST_SRC = \ |
| 5345 | test/core/transport/metadata_test.c \ |
| 5346 | |
| 5347 | TRANSPORT_METADATA_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(TRANSPORT_METADATA_TEST_SRC)))) |
| 5348 | |
| 5349 | ifeq ($(NO_SECURE),true) |
| 5350 | |
| 5351 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5352 | |
| 5353 | bins/$(CONFIG)/transport_metadata_test: openssl_dep_error |
| 5354 | |
| 5355 | else |
| 5356 | |
| 5357 | bins/$(CONFIG)/transport_metadata_test: $(TRANSPORT_METADATA_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5358 | $(E) "[LD] Linking $@" |
| 5359 | $(Q) mkdir -p `dirname $@` |
| 5360 | $(Q) $(LD) $(LDFLAGS) $(TRANSPORT_METADATA_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/transport_metadata_test |
| 5361 | |
| 5362 | endif |
| 5363 | |
| 5364 | objs/$(CONFIG)/test/core/transport/metadata_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5365 | |
| 5366 | deps_transport_metadata_test: $(TRANSPORT_METADATA_TEST_OBJS:.o=.dep) |
| 5367 | |
| 5368 | ifneq ($(NO_SECURE),true) |
| 5369 | ifneq ($(NO_DEPS),true) |
| 5370 | -include $(TRANSPORT_METADATA_TEST_OBJS:.o=.dep) |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 5371 | endif |
| 5372 | endif |
| 5373 | |
| 5374 | |
Craig Tiller | 996d9df | 2015-01-19 21:06:50 -0800 | [diff] [blame] | 5375 | CHANNEL_ARGUMENTS_TEST_SRC = \ |
| 5376 | test/cpp/client/channel_arguments_test.cc \ |
| 5377 | |
| 5378 | CHANNEL_ARGUMENTS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHANNEL_ARGUMENTS_TEST_SRC)))) |
| 5379 | |
| 5380 | ifeq ($(NO_SECURE),true) |
| 5381 | |
| 5382 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5383 | |
| 5384 | bins/$(CONFIG)/channel_arguments_test: openssl_dep_error |
| 5385 | |
| 5386 | else |
| 5387 | |
| 5388 | bins/$(CONFIG)/channel_arguments_test: $(CHANNEL_ARGUMENTS_TEST_OBJS) libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr.a |
| 5389 | $(E) "[LD] Linking $@" |
| 5390 | $(Q) mkdir -p `dirname $@` |
| 5391 | $(Q) $(LDXX) $(LDFLAGS) $(CHANNEL_ARGUMENTS_TEST_OBJS) $(GTEST_LIB) libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/channel_arguments_test |
| 5392 | |
| 5393 | endif |
| 5394 | |
| 5395 | objs/$(CONFIG)/test/cpp/client/channel_arguments_test.o: libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr.a |
| 5396 | |
| 5397 | deps_channel_arguments_test: $(CHANNEL_ARGUMENTS_TEST_OBJS:.o=.dep) |
| 5398 | |
| 5399 | ifneq ($(NO_SECURE),true) |
| 5400 | ifneq ($(NO_DEPS),true) |
| 5401 | -include $(CHANNEL_ARGUMENTS_TEST_OBJS:.o=.dep) |
| 5402 | endif |
| 5403 | endif |
| 5404 | |
| 5405 | |
| 5406 | CPP_PLUGIN_SRC = \ |
| 5407 | src/compiler/cpp_generator.cc \ |
| 5408 | src/compiler/cpp_plugin.cc \ |
| 5409 | |
| 5410 | CPP_PLUGIN_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CPP_PLUGIN_SRC)))) |
| 5411 | |
| 5412 | bins/$(CONFIG)/cpp_plugin: $(CPP_PLUGIN_OBJS) |
| 5413 | $(E) "[HOSTLD] Linking $@" |
| 5414 | $(Q) mkdir -p `dirname $@` |
| 5415 | $(Q) $(HOST_LDXX) $(HOST_LDFLAGS) $(CPP_PLUGIN_OBJS) $(HOST_LDLIBSXX) $(HOST_LDLIBS) $(HOST_LDLIBS_PROTOC) -o bins/$(CONFIG)/cpp_plugin |
| 5416 | |
| 5417 | objs/$(CONFIG)/src/compiler/cpp_generator.o: |
| 5418 | objs/$(CONFIG)/src/compiler/cpp_plugin.o: |
| 5419 | |
| 5420 | deps_cpp_plugin: $(CPP_PLUGIN_OBJS:.o=.dep) |
| 5421 | |
| 5422 | ifneq ($(NO_DEPS),true) |
| 5423 | -include $(CPP_PLUGIN_OBJS:.o=.dep) |
| 5424 | endif |
| 5425 | |
| 5426 | |
| 5427 | CREDENTIALS_TEST_SRC = \ |
| 5428 | test/cpp/client/credentials_test.cc \ |
| 5429 | |
| 5430 | CREDENTIALS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CREDENTIALS_TEST_SRC)))) |
| 5431 | |
| 5432 | ifeq ($(NO_SECURE),true) |
| 5433 | |
| 5434 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5435 | |
| 5436 | bins/$(CONFIG)/credentials_test: openssl_dep_error |
| 5437 | |
| 5438 | else |
| 5439 | |
| 5440 | bins/$(CONFIG)/credentials_test: $(CREDENTIALS_TEST_OBJS) libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr.a |
| 5441 | $(E) "[LD] Linking $@" |
| 5442 | $(Q) mkdir -p `dirname $@` |
| 5443 | $(Q) $(LDXX) $(LDFLAGS) $(CREDENTIALS_TEST_OBJS) $(GTEST_LIB) libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/credentials_test |
| 5444 | |
| 5445 | endif |
| 5446 | |
| 5447 | objs/$(CONFIG)/test/cpp/client/credentials_test.o: libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr.a |
| 5448 | |
| 5449 | deps_credentials_test: $(CREDENTIALS_TEST_OBJS:.o=.dep) |
| 5450 | |
| 5451 | ifneq ($(NO_SECURE),true) |
| 5452 | ifneq ($(NO_DEPS),true) |
| 5453 | -include $(CREDENTIALS_TEST_OBJS:.o=.dep) |
| 5454 | endif |
| 5455 | endif |
| 5456 | |
| 5457 | |
| 5458 | END2END_TEST_SRC = \ |
| 5459 | test/cpp/end2end/end2end_test.cc \ |
| 5460 | |
| 5461 | END2END_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(END2END_TEST_SRC)))) |
| 5462 | |
| 5463 | ifeq ($(NO_SECURE),true) |
| 5464 | |
| 5465 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5466 | |
| 5467 | bins/$(CONFIG)/end2end_test: openssl_dep_error |
| 5468 | |
| 5469 | else |
| 5470 | |
| 5471 | bins/$(CONFIG)/end2end_test: $(END2END_TEST_OBJS) libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5472 | $(E) "[LD] Linking $@" |
| 5473 | $(Q) mkdir -p `dirname $@` |
| 5474 | $(Q) $(LDXX) $(LDFLAGS) $(END2END_TEST_OBJS) $(GTEST_LIB) libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/end2end_test |
| 5475 | |
| 5476 | endif |
| 5477 | |
| 5478 | objs/$(CONFIG)/test/cpp/end2end/end2end_test.o: libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5479 | |
| 5480 | deps_end2end_test: $(END2END_TEST_OBJS:.o=.dep) |
| 5481 | |
| 5482 | ifneq ($(NO_SECURE),true) |
| 5483 | ifneq ($(NO_DEPS),true) |
| 5484 | -include $(END2END_TEST_OBJS:.o=.dep) |
| 5485 | endif |
| 5486 | endif |
| 5487 | |
| 5488 | |
| 5489 | INTEROP_CLIENT_SRC = \ |
| 5490 | gens/test/cpp/interop/empty.pb.cc \ |
| 5491 | gens/test/cpp/interop/messages.pb.cc \ |
| 5492 | gens/test/cpp/interop/test.pb.cc \ |
| 5493 | test/cpp/interop/client.cc \ |
| 5494 | |
| 5495 | INTEROP_CLIENT_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(INTEROP_CLIENT_SRC)))) |
| 5496 | |
| 5497 | ifeq ($(NO_SECURE),true) |
| 5498 | |
| 5499 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5500 | |
| 5501 | bins/$(CONFIG)/interop_client: openssl_dep_error |
| 5502 | |
| 5503 | else |
| 5504 | |
| 5505 | bins/$(CONFIG)/interop_client: $(INTEROP_CLIENT_OBJS) libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5506 | $(E) "[LD] Linking $@" |
| 5507 | $(Q) mkdir -p `dirname $@` |
| 5508 | $(Q) $(LDXX) $(LDFLAGS) $(INTEROP_CLIENT_OBJS) $(GTEST_LIB) libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/interop_client |
| 5509 | |
| 5510 | endif |
| 5511 | |
| 5512 | objs/$(CONFIG)/test/cpp/interop/empty.o: libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5513 | objs/$(CONFIG)/test/cpp/interop/messages.o: libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5514 | objs/$(CONFIG)/test/cpp/interop/test.o: libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5515 | objs/$(CONFIG)/test/cpp/interop/client.o: libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5516 | |
| 5517 | deps_interop_client: $(INTEROP_CLIENT_OBJS:.o=.dep) |
| 5518 | |
| 5519 | ifneq ($(NO_SECURE),true) |
| 5520 | ifneq ($(NO_DEPS),true) |
| 5521 | -include $(INTEROP_CLIENT_OBJS:.o=.dep) |
| 5522 | endif |
| 5523 | endif |
| 5524 | |
| 5525 | |
| 5526 | INTEROP_SERVER_SRC = \ |
| 5527 | gens/test/cpp/interop/empty.pb.cc \ |
| 5528 | gens/test/cpp/interop/messages.pb.cc \ |
| 5529 | gens/test/cpp/interop/test.pb.cc \ |
| 5530 | test/cpp/interop/server.cc \ |
| 5531 | |
| 5532 | INTEROP_SERVER_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(INTEROP_SERVER_SRC)))) |
| 5533 | |
| 5534 | ifeq ($(NO_SECURE),true) |
| 5535 | |
| 5536 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5537 | |
| 5538 | bins/$(CONFIG)/interop_server: openssl_dep_error |
| 5539 | |
| 5540 | else |
| 5541 | |
| 5542 | bins/$(CONFIG)/interop_server: $(INTEROP_SERVER_OBJS) libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5543 | $(E) "[LD] Linking $@" |
| 5544 | $(Q) mkdir -p `dirname $@` |
| 5545 | $(Q) $(LDXX) $(LDFLAGS) $(INTEROP_SERVER_OBJS) $(GTEST_LIB) libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/interop_server |
| 5546 | |
| 5547 | endif |
| 5548 | |
| 5549 | objs/$(CONFIG)/test/cpp/interop/empty.o: libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5550 | objs/$(CONFIG)/test/cpp/interop/messages.o: libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5551 | objs/$(CONFIG)/test/cpp/interop/test.o: libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5552 | objs/$(CONFIG)/test/cpp/interop/server.o: libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5553 | |
| 5554 | deps_interop_server: $(INTEROP_SERVER_OBJS:.o=.dep) |
| 5555 | |
| 5556 | ifneq ($(NO_SECURE),true) |
| 5557 | ifneq ($(NO_DEPS),true) |
| 5558 | -include $(INTEROP_SERVER_OBJS:.o=.dep) |
| 5559 | endif |
| 5560 | endif |
| 5561 | |
| 5562 | |
Chen Wang | 6933075 | 2015-01-21 18:57:46 -0800 | [diff] [blame] | 5563 | TIPS_CLIENT_SRC = \ |
| 5564 | examples/tips/client_main.cc \ |
| 5565 | |
| 5566 | TIPS_CLIENT_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(TIPS_CLIENT_SRC)))) |
| 5567 | |
| 5568 | ifeq ($(NO_SECURE),true) |
| 5569 | |
| 5570 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5571 | |
| 5572 | bins/$(CONFIG)/tips_client: openssl_dep_error |
| 5573 | |
| 5574 | else |
| 5575 | |
| 5576 | bins/$(CONFIG)/tips_client: $(TIPS_CLIENT_OBJS) libs/$(CONFIG)/libtips_client_lib.a libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5577 | $(E) "[LD] Linking $@" |
| 5578 | $(Q) mkdir -p `dirname $@` |
| 5579 | $(Q) $(LDXX) $(LDFLAGS) $(TIPS_CLIENT_OBJS) $(GTEST_LIB) libs/$(CONFIG)/libtips_client_lib.a libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/tips_client |
| 5580 | |
| 5581 | endif |
| 5582 | |
| 5583 | objs/$(CONFIG)/examples/tips/client_main.o: libs/$(CONFIG)/libtips_client_lib.a libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5584 | |
| 5585 | deps_tips_client: $(TIPS_CLIENT_OBJS:.o=.dep) |
| 5586 | |
| 5587 | ifneq ($(NO_SECURE),true) |
| 5588 | ifneq ($(NO_DEPS),true) |
| 5589 | -include $(TIPS_CLIENT_OBJS:.o=.dep) |
| 5590 | endif |
| 5591 | endif |
| 5592 | |
| 5593 | |
| 5594 | TIPS_CLIENT_TEST_SRC = \ |
| 5595 | examples/tips/client_test.cc \ |
| 5596 | |
| 5597 | TIPS_CLIENT_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(TIPS_CLIENT_TEST_SRC)))) |
| 5598 | |
| 5599 | ifeq ($(NO_SECURE),true) |
| 5600 | |
| 5601 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5602 | |
| 5603 | bins/$(CONFIG)/tips_client_test: openssl_dep_error |
| 5604 | |
| 5605 | else |
| 5606 | |
| 5607 | bins/$(CONFIG)/tips_client_test: $(TIPS_CLIENT_TEST_OBJS) libs/$(CONFIG)/libtips_client_lib.a libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5608 | $(E) "[LD] Linking $@" |
| 5609 | $(Q) mkdir -p `dirname $@` |
| 5610 | $(Q) $(LDXX) $(LDFLAGS) $(TIPS_CLIENT_TEST_OBJS) $(GTEST_LIB) libs/$(CONFIG)/libtips_client_lib.a libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/tips_client_test |
| 5611 | |
| 5612 | endif |
| 5613 | |
| 5614 | objs/$(CONFIG)/examples/tips/client_test.o: libs/$(CONFIG)/libtips_client_lib.a libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5615 | |
| 5616 | deps_tips_client_test: $(TIPS_CLIENT_TEST_OBJS:.o=.dep) |
| 5617 | |
| 5618 | ifneq ($(NO_SECURE),true) |
| 5619 | ifneq ($(NO_DEPS),true) |
| 5620 | -include $(TIPS_CLIENT_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5621 | endif |
| 5622 | endif |
| 5623 | |
| 5624 | |
Craig Tiller | 996d9df | 2015-01-19 21:06:50 -0800 | [diff] [blame] | 5625 | QPS_CLIENT_SRC = \ |
| 5626 | gens/test/cpp/qps/qpstest.pb.cc \ |
| 5627 | test/cpp/qps/client.cc \ |
| 5628 | |
| 5629 | QPS_CLIENT_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(QPS_CLIENT_SRC)))) |
| 5630 | |
| 5631 | ifeq ($(NO_SECURE),true) |
| 5632 | |
| 5633 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5634 | |
| 5635 | bins/$(CONFIG)/qps_client: openssl_dep_error |
| 5636 | |
| 5637 | else |
| 5638 | |
| 5639 | bins/$(CONFIG)/qps_client: $(QPS_CLIENT_OBJS) libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5640 | $(E) "[LD] Linking $@" |
| 5641 | $(Q) mkdir -p `dirname $@` |
| 5642 | $(Q) $(LDXX) $(LDFLAGS) $(QPS_CLIENT_OBJS) $(GTEST_LIB) libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/qps_client |
| 5643 | |
| 5644 | endif |
| 5645 | |
| 5646 | objs/$(CONFIG)/test/cpp/qps/qpstest.o: libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5647 | objs/$(CONFIG)/test/cpp/qps/client.o: libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5648 | |
| 5649 | deps_qps_client: $(QPS_CLIENT_OBJS:.o=.dep) |
| 5650 | |
| 5651 | ifneq ($(NO_SECURE),true) |
| 5652 | ifneq ($(NO_DEPS),true) |
| 5653 | -include $(QPS_CLIENT_OBJS:.o=.dep) |
| 5654 | endif |
| 5655 | endif |
| 5656 | |
| 5657 | |
| 5658 | QPS_SERVER_SRC = \ |
| 5659 | gens/test/cpp/qps/qpstest.pb.cc \ |
| 5660 | test/cpp/qps/server.cc \ |
| 5661 | |
| 5662 | QPS_SERVER_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(QPS_SERVER_SRC)))) |
| 5663 | |
| 5664 | ifeq ($(NO_SECURE),true) |
| 5665 | |
| 5666 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5667 | |
| 5668 | bins/$(CONFIG)/qps_server: openssl_dep_error |
| 5669 | |
| 5670 | else |
| 5671 | |
| 5672 | bins/$(CONFIG)/qps_server: $(QPS_SERVER_OBJS) libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5673 | $(E) "[LD] Linking $@" |
| 5674 | $(Q) mkdir -p `dirname $@` |
| 5675 | $(Q) $(LDXX) $(LDFLAGS) $(QPS_SERVER_OBJS) $(GTEST_LIB) libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/qps_server |
| 5676 | |
| 5677 | endif |
| 5678 | |
| 5679 | objs/$(CONFIG)/test/cpp/qps/qpstest.o: libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5680 | objs/$(CONFIG)/test/cpp/qps/server.o: libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5681 | |
| 5682 | deps_qps_server: $(QPS_SERVER_OBJS:.o=.dep) |
| 5683 | |
| 5684 | ifneq ($(NO_SECURE),true) |
| 5685 | ifneq ($(NO_DEPS),true) |
| 5686 | -include $(QPS_SERVER_OBJS:.o=.dep) |
| 5687 | endif |
| 5688 | endif |
| 5689 | |
| 5690 | |
| 5691 | RUBY_PLUGIN_SRC = \ |
| 5692 | src/compiler/ruby_generator.cc \ |
| 5693 | src/compiler/ruby_plugin.cc \ |
| 5694 | |
| 5695 | RUBY_PLUGIN_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(RUBY_PLUGIN_SRC)))) |
| 5696 | |
| 5697 | bins/$(CONFIG)/ruby_plugin: $(RUBY_PLUGIN_OBJS) |
| 5698 | $(E) "[HOSTLD] Linking $@" |
| 5699 | $(Q) mkdir -p `dirname $@` |
| 5700 | $(Q) $(HOST_LDXX) $(HOST_LDFLAGS) $(RUBY_PLUGIN_OBJS) $(HOST_LDLIBSXX) $(HOST_LDLIBS) $(HOST_LDLIBS_PROTOC) -o bins/$(CONFIG)/ruby_plugin |
| 5701 | |
| 5702 | objs/$(CONFIG)/src/compiler/ruby_generator.o: |
| 5703 | objs/$(CONFIG)/src/compiler/ruby_plugin.o: |
| 5704 | |
| 5705 | deps_ruby_plugin: $(RUBY_PLUGIN_OBJS:.o=.dep) |
| 5706 | |
| 5707 | ifneq ($(NO_DEPS),true) |
| 5708 | -include $(RUBY_PLUGIN_OBJS:.o=.dep) |
| 5709 | endif |
| 5710 | |
| 5711 | |
| 5712 | STATUS_TEST_SRC = \ |
| 5713 | test/cpp/util/status_test.cc \ |
| 5714 | |
| 5715 | STATUS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(STATUS_TEST_SRC)))) |
| 5716 | |
| 5717 | ifeq ($(NO_SECURE),true) |
| 5718 | |
| 5719 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5720 | |
| 5721 | bins/$(CONFIG)/status_test: openssl_dep_error |
| 5722 | |
| 5723 | else |
| 5724 | |
| 5725 | bins/$(CONFIG)/status_test: $(STATUS_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5726 | $(E) "[LD] Linking $@" |
| 5727 | $(Q) mkdir -p `dirname $@` |
| 5728 | $(Q) $(LDXX) $(LDFLAGS) $(STATUS_TEST_OBJS) $(GTEST_LIB) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/status_test |
| 5729 | |
| 5730 | endif |
| 5731 | |
| 5732 | objs/$(CONFIG)/test/cpp/util/status_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5733 | |
| 5734 | deps_status_test: $(STATUS_TEST_OBJS:.o=.dep) |
| 5735 | |
| 5736 | ifneq ($(NO_SECURE),true) |
| 5737 | ifneq ($(NO_DEPS),true) |
| 5738 | -include $(STATUS_TEST_OBJS:.o=.dep) |
| 5739 | endif |
| 5740 | endif |
| 5741 | |
| 5742 | |
| 5743 | SYNC_CLIENT_ASYNC_SERVER_TEST_SRC = \ |
| 5744 | test/cpp/end2end/sync_client_async_server_test.cc \ |
| 5745 | |
| 5746 | SYNC_CLIENT_ASYNC_SERVER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(SYNC_CLIENT_ASYNC_SERVER_TEST_SRC)))) |
| 5747 | |
| 5748 | ifeq ($(NO_SECURE),true) |
| 5749 | |
| 5750 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5751 | |
| 5752 | bins/$(CONFIG)/sync_client_async_server_test: openssl_dep_error |
| 5753 | |
| 5754 | else |
| 5755 | |
| 5756 | bins/$(CONFIG)/sync_client_async_server_test: $(SYNC_CLIENT_ASYNC_SERVER_TEST_OBJS) libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5757 | $(E) "[LD] Linking $@" |
| 5758 | $(Q) mkdir -p `dirname $@` |
| 5759 | $(Q) $(LDXX) $(LDFLAGS) $(SYNC_CLIENT_ASYNC_SERVER_TEST_OBJS) $(GTEST_LIB) libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/sync_client_async_server_test |
| 5760 | |
| 5761 | endif |
| 5762 | |
| 5763 | objs/$(CONFIG)/test/cpp/end2end/sync_client_async_server_test.o: libs/$(CONFIG)/libgrpc++_test_util.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5764 | |
| 5765 | deps_sync_client_async_server_test: $(SYNC_CLIENT_ASYNC_SERVER_TEST_OBJS:.o=.dep) |
| 5766 | |
| 5767 | ifneq ($(NO_SECURE),true) |
| 5768 | ifneq ($(NO_DEPS),true) |
| 5769 | -include $(SYNC_CLIENT_ASYNC_SERVER_TEST_OBJS:.o=.dep) |
| 5770 | endif |
| 5771 | endif |
| 5772 | |
| 5773 | |
| 5774 | THREAD_POOL_TEST_SRC = \ |
| 5775 | test/cpp/server/thread_pool_test.cc \ |
| 5776 | |
| 5777 | THREAD_POOL_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(THREAD_POOL_TEST_SRC)))) |
| 5778 | |
| 5779 | ifeq ($(NO_SECURE),true) |
| 5780 | |
| 5781 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5782 | |
| 5783 | bins/$(CONFIG)/thread_pool_test: openssl_dep_error |
| 5784 | |
| 5785 | else |
| 5786 | |
| 5787 | bins/$(CONFIG)/thread_pool_test: $(THREAD_POOL_TEST_OBJS) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5788 | $(E) "[LD] Linking $@" |
| 5789 | $(Q) mkdir -p `dirname $@` |
| 5790 | $(Q) $(LDXX) $(LDFLAGS) $(THREAD_POOL_TEST_OBJS) $(GTEST_LIB) libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/thread_pool_test |
| 5791 | |
| 5792 | endif |
| 5793 | |
| 5794 | objs/$(CONFIG)/test/cpp/server/thread_pool_test.o: libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc++.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 5795 | |
| 5796 | deps_thread_pool_test: $(THREAD_POOL_TEST_OBJS:.o=.dep) |
| 5797 | |
| 5798 | ifneq ($(NO_SECURE),true) |
| 5799 | ifneq ($(NO_DEPS),true) |
| 5800 | -include $(THREAD_POOL_TEST_OBJS:.o=.dep) |
| 5801 | endif |
| 5802 | endif |
| 5803 | |
| 5804 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5805 | CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_SRC = \ |
| 5806 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 5807 | CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5808 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5809 | ifeq ($(NO_SECURE),true) |
| 5810 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 5811 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5812 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 5813 | bins/$(CONFIG)/chttp2_fake_security_cancel_after_accept_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5814 | |
| 5815 | else |
| 5816 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5817 | bins/$(CONFIG)/chttp2_fake_security_cancel_after_accept_test: $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_cancel_after_accept.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5818 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 5819 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5820 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_cancel_after_accept.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_cancel_after_accept_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5821 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5822 | endif |
| 5823 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 5824 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 5825 | deps_chttp2_fake_security_cancel_after_accept_test: $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5826 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5827 | ifneq ($(NO_SECURE),true) |
| 5828 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 5829 | -include $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5830 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5831 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5832 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5833 | |
| 5834 | CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC = \ |
| 5835 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 5836 | CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5837 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5838 | ifeq ($(NO_SECURE),true) |
| 5839 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 5840 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5841 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 5842 | bins/$(CONFIG)/chttp2_fake_security_cancel_after_accept_and_writes_closed_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5843 | |
| 5844 | else |
| 5845 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5846 | bins/$(CONFIG)/chttp2_fake_security_cancel_after_accept_and_writes_closed_test: $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5847 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 5848 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5849 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_cancel_after_accept_and_writes_closed_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5850 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5851 | endif |
| 5852 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 5853 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 5854 | deps_chttp2_fake_security_cancel_after_accept_and_writes_closed_test: $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5855 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5856 | ifneq ($(NO_SECURE),true) |
| 5857 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 5858 | -include $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5859 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5860 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5861 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5862 | |
| 5863 | CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_SRC = \ |
| 5864 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 5865 | CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5866 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5867 | ifeq ($(NO_SECURE),true) |
| 5868 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 5869 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5870 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 5871 | bins/$(CONFIG)/chttp2_fake_security_cancel_after_invoke_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5872 | |
| 5873 | else |
| 5874 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5875 | bins/$(CONFIG)/chttp2_fake_security_cancel_after_invoke_test: $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5876 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 5877 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5878 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_cancel_after_invoke_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5879 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5880 | endif |
| 5881 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 5882 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 5883 | deps_chttp2_fake_security_cancel_after_invoke_test: $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5884 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5885 | ifneq ($(NO_SECURE),true) |
| 5886 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 5887 | -include $(CHTTP2_FAKE_SECURITY_CANCEL_AFTER_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5888 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5889 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5890 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5891 | |
| 5892 | CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_SRC = \ |
| 5893 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 5894 | CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5895 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5896 | ifeq ($(NO_SECURE),true) |
| 5897 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 5898 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5899 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 5900 | bins/$(CONFIG)/chttp2_fake_security_cancel_before_invoke_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5901 | |
| 5902 | else |
| 5903 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5904 | bins/$(CONFIG)/chttp2_fake_security_cancel_before_invoke_test: $(CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5905 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 5906 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5907 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_cancel_before_invoke_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5908 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5909 | endif |
| 5910 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 5911 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 5912 | deps_chttp2_fake_security_cancel_before_invoke_test: $(CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5913 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5914 | ifneq ($(NO_SECURE),true) |
| 5915 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 5916 | -include $(CHTTP2_FAKE_SECURITY_CANCEL_BEFORE_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5917 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5918 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5919 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5920 | |
| 5921 | CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_SRC = \ |
| 5922 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 5923 | CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5924 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5925 | ifeq ($(NO_SECURE),true) |
| 5926 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 5927 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5928 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 5929 | bins/$(CONFIG)/chttp2_fake_security_cancel_in_a_vacuum_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5930 | |
| 5931 | else |
| 5932 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5933 | bins/$(CONFIG)/chttp2_fake_security_cancel_in_a_vacuum_test: $(CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5934 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 5935 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5936 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_cancel_in_a_vacuum_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5937 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5938 | endif |
| 5939 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 5940 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 5941 | deps_chttp2_fake_security_cancel_in_a_vacuum_test: $(CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5942 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5943 | ifneq ($(NO_SECURE),true) |
| 5944 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 5945 | -include $(CHTTP2_FAKE_SECURITY_CANCEL_IN_A_VACUUM_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5946 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 5947 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5948 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 5949 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 5950 | CHTTP2_FAKE_SECURITY_CENSUS_SIMPLE_REQUEST_TEST_SRC = \ |
| 5951 | |
| 5952 | CHTTP2_FAKE_SECURITY_CENSUS_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_CENSUS_SIMPLE_REQUEST_TEST_SRC)))) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 5953 | |
| 5954 | ifeq ($(NO_SECURE),true) |
| 5955 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 5956 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5957 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 5958 | bins/$(CONFIG)/chttp2_fake_security_census_simple_request_test: openssl_dep_error |
| 5959 | |
| 5960 | else |
| 5961 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5962 | bins/$(CONFIG)/chttp2_fake_security_census_simple_request_test: $(CHTTP2_FAKE_SECURITY_CENSUS_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_census_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 5963 | $(E) "[LD] Linking $@" |
| 5964 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5965 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_CENSUS_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_census_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_census_simple_request_test |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 5966 | |
| 5967 | endif |
| 5968 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 5969 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 5970 | deps_chttp2_fake_security_census_simple_request_test: $(CHTTP2_FAKE_SECURITY_CENSUS_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 5971 | |
| 5972 | ifneq ($(NO_SECURE),true) |
| 5973 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 5974 | -include $(CHTTP2_FAKE_SECURITY_CENSUS_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 5975 | endif |
| 5976 | endif |
| 5977 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 5978 | |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 5979 | CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_SRC = \ |
| 5980 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 5981 | CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_SRC)))) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 5982 | |
| 5983 | ifeq ($(NO_SECURE),true) |
| 5984 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 5985 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 5986 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 5987 | bins/$(CONFIG)/chttp2_fake_security_disappearing_server_test: openssl_dep_error |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 5988 | |
| 5989 | else |
| 5990 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5991 | bins/$(CONFIG)/chttp2_fake_security_disappearing_server_test: $(CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_disappearing_server.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 5992 | $(E) "[LD] Linking $@" |
| 5993 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 5994 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_disappearing_server.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_disappearing_server_test |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 5995 | |
| 5996 | endif |
| 5997 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 5998 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 5999 | deps_chttp2_fake_security_disappearing_server_test: $(CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_OBJS:.o=.dep) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 6000 | |
| 6001 | ifneq ($(NO_SECURE),true) |
| 6002 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6003 | -include $(CHTTP2_FAKE_SECURITY_DISAPPEARING_SERVER_TEST_OBJS:.o=.dep) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 6004 | endif |
| 6005 | endif |
| 6006 | |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 6007 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6008 | CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC = \ |
| 6009 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6010 | CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6011 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6012 | ifeq ($(NO_SECURE),true) |
| 6013 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6014 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6015 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6016 | bins/$(CONFIG)/chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6017 | |
| 6018 | else |
| 6019 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6020 | bins/$(CONFIG)/chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6021 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6022 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6023 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6024 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6025 | endif |
| 6026 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6027 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6028 | deps_chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6029 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6030 | ifneq ($(NO_SECURE),true) |
| 6031 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6032 | -include $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6033 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6034 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6035 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6036 | |
| 6037 | CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC = \ |
| 6038 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6039 | CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6040 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6041 | ifeq ($(NO_SECURE),true) |
| 6042 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6043 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6044 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6045 | bins/$(CONFIG)/chttp2_fake_security_early_server_shutdown_finishes_tags_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6046 | |
| 6047 | else |
| 6048 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6049 | bins/$(CONFIG)/chttp2_fake_security_early_server_shutdown_finishes_tags_test: $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6050 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6051 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6052 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_early_server_shutdown_finishes_tags_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6053 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6054 | endif |
| 6055 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6056 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6057 | deps_chttp2_fake_security_early_server_shutdown_finishes_tags_test: $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6058 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6059 | ifneq ($(NO_SECURE),true) |
| 6060 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6061 | -include $(CHTTP2_FAKE_SECURITY_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6062 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6063 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6064 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6065 | |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 6066 | CHTTP2_FAKE_SECURITY_GRACEFUL_SERVER_SHUTDOWN_TEST_SRC = \ |
| 6067 | |
| 6068 | CHTTP2_FAKE_SECURITY_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_GRACEFUL_SERVER_SHUTDOWN_TEST_SRC)))) |
| 6069 | |
| 6070 | ifeq ($(NO_SECURE),true) |
| 6071 | |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 6072 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6073 | |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 6074 | bins/$(CONFIG)/chttp2_fake_security_graceful_server_shutdown_test: openssl_dep_error |
| 6075 | |
| 6076 | else |
| 6077 | |
| 6078 | bins/$(CONFIG)/chttp2_fake_security_graceful_server_shutdown_test: $(CHTTP2_FAKE_SECURITY_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 6079 | $(E) "[LD] Linking $@" |
| 6080 | $(Q) mkdir -p `dirname $@` |
| 6081 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_graceful_server_shutdown_test |
| 6082 | |
| 6083 | endif |
| 6084 | |
| 6085 | |
| 6086 | deps_chttp2_fake_security_graceful_server_shutdown_test: $(CHTTP2_FAKE_SECURITY_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS:.o=.dep) |
| 6087 | |
| 6088 | ifneq ($(NO_SECURE),true) |
| 6089 | ifneq ($(NO_DEPS),true) |
| 6090 | -include $(CHTTP2_FAKE_SECURITY_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS:.o=.dep) |
| 6091 | endif |
| 6092 | endif |
| 6093 | |
| 6094 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6095 | CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_SRC = \ |
| 6096 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6097 | CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6098 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6099 | ifeq ($(NO_SECURE),true) |
| 6100 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6101 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6102 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6103 | bins/$(CONFIG)/chttp2_fake_security_invoke_large_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6104 | |
| 6105 | else |
| 6106 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6107 | bins/$(CONFIG)/chttp2_fake_security_invoke_large_request_test: $(CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_invoke_large_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6108 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6109 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6110 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_invoke_large_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_invoke_large_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6111 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6112 | endif |
| 6113 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6114 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6115 | deps_chttp2_fake_security_invoke_large_request_test: $(CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6116 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6117 | ifneq ($(NO_SECURE),true) |
| 6118 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6119 | -include $(CHTTP2_FAKE_SECURITY_INVOKE_LARGE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6120 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6121 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6122 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6123 | |
| 6124 | CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_SRC = \ |
| 6125 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6126 | CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6127 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6128 | ifeq ($(NO_SECURE),true) |
| 6129 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6130 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6131 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6132 | bins/$(CONFIG)/chttp2_fake_security_max_concurrent_streams_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6133 | |
| 6134 | else |
| 6135 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6136 | bins/$(CONFIG)/chttp2_fake_security_max_concurrent_streams_test: $(CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6137 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6138 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6139 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_max_concurrent_streams_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6140 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6141 | endif |
| 6142 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6143 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6144 | deps_chttp2_fake_security_max_concurrent_streams_test: $(CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6145 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6146 | ifneq ($(NO_SECURE),true) |
| 6147 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6148 | -include $(CHTTP2_FAKE_SECURITY_MAX_CONCURRENT_STREAMS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6149 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6150 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6151 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6152 | |
| 6153 | CHTTP2_FAKE_SECURITY_NO_OP_TEST_SRC = \ |
| 6154 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6155 | CHTTP2_FAKE_SECURITY_NO_OP_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_NO_OP_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6156 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6157 | ifeq ($(NO_SECURE),true) |
| 6158 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6159 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6160 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6161 | bins/$(CONFIG)/chttp2_fake_security_no_op_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6162 | |
| 6163 | else |
| 6164 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6165 | bins/$(CONFIG)/chttp2_fake_security_no_op_test: $(CHTTP2_FAKE_SECURITY_NO_OP_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_no_op.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6166 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6167 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6168 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_NO_OP_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_no_op.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_no_op_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6169 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6170 | endif |
| 6171 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6172 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6173 | deps_chttp2_fake_security_no_op_test: $(CHTTP2_FAKE_SECURITY_NO_OP_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6174 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6175 | ifneq ($(NO_SECURE),true) |
| 6176 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6177 | -include $(CHTTP2_FAKE_SECURITY_NO_OP_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6178 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6179 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6180 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6181 | |
| 6182 | CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_SRC = \ |
| 6183 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6184 | CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6185 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6186 | ifeq ($(NO_SECURE),true) |
| 6187 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6188 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6189 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6190 | bins/$(CONFIG)/chttp2_fake_security_ping_pong_streaming_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6191 | |
| 6192 | else |
| 6193 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6194 | bins/$(CONFIG)/chttp2_fake_security_ping_pong_streaming_test: $(CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6195 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6196 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6197 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_ping_pong_streaming_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6198 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6199 | endif |
| 6200 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6201 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6202 | deps_chttp2_fake_security_ping_pong_streaming_test: $(CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6203 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6204 | ifneq ($(NO_SECURE),true) |
| 6205 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6206 | -include $(CHTTP2_FAKE_SECURITY_PING_PONG_STREAMING_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6207 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6208 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6209 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6210 | |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6211 | CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 6212 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6213 | CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC)))) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6214 | |
| 6215 | ifeq ($(NO_SECURE),true) |
| 6216 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6217 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6218 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6219 | bins/$(CONFIG)/chttp2_fake_security_request_response_with_binary_metadata_and_payload_test: openssl_dep_error |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6220 | |
| 6221 | else |
| 6222 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6223 | bins/$(CONFIG)/chttp2_fake_security_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6224 | $(E) "[LD] Linking $@" |
| 6225 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6226 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_request_response_with_binary_metadata_and_payload_test |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6227 | |
| 6228 | endif |
| 6229 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6230 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6231 | deps_chttp2_fake_security_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6232 | |
| 6233 | ifneq ($(NO_SECURE),true) |
| 6234 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6235 | -include $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6236 | endif |
| 6237 | endif |
| 6238 | |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6239 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6240 | CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 6241 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6242 | CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6243 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6244 | ifeq ($(NO_SECURE),true) |
| 6245 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6246 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6247 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6248 | bins/$(CONFIG)/chttp2_fake_security_request_response_with_metadata_and_payload_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6249 | |
| 6250 | else |
| 6251 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6252 | bins/$(CONFIG)/chttp2_fake_security_request_response_with_metadata_and_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6253 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6254 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6255 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_request_response_with_metadata_and_payload_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6256 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6257 | endif |
| 6258 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6259 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6260 | deps_chttp2_fake_security_request_response_with_metadata_and_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6261 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6262 | ifneq ($(NO_SECURE),true) |
| 6263 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6264 | -include $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6265 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6266 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6267 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6268 | |
| 6269 | CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC = \ |
| 6270 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6271 | CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6272 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6273 | ifeq ($(NO_SECURE),true) |
| 6274 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6275 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6276 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6277 | bins/$(CONFIG)/chttp2_fake_security_request_response_with_payload_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6278 | |
| 6279 | else |
| 6280 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6281 | bins/$(CONFIG)/chttp2_fake_security_request_response_with_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_request_response_with_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6282 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6283 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6284 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_request_response_with_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_request_response_with_payload_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6285 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6286 | endif |
| 6287 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6288 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6289 | deps_chttp2_fake_security_request_response_with_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6290 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6291 | ifneq ($(NO_SECURE),true) |
| 6292 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6293 | -include $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6294 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6295 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6296 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6297 | |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6298 | CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 6299 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6300 | CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC)))) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6301 | |
| 6302 | ifeq ($(NO_SECURE),true) |
| 6303 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6304 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6305 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6306 | bins/$(CONFIG)/chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test: openssl_dep_error |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6307 | |
| 6308 | else |
| 6309 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6310 | bins/$(CONFIG)/chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6311 | $(E) "[LD] Linking $@" |
| 6312 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6313 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6314 | |
| 6315 | endif |
| 6316 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6317 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6318 | deps_chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6319 | |
| 6320 | ifneq ($(NO_SECURE),true) |
| 6321 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6322 | -include $(CHTTP2_FAKE_SECURITY_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6323 | endif |
| 6324 | endif |
| 6325 | |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6326 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6327 | CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_SRC = \ |
| 6328 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6329 | CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6330 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6331 | ifeq ($(NO_SECURE),true) |
| 6332 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6333 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6334 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6335 | bins/$(CONFIG)/chttp2_fake_security_simple_delayed_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6336 | |
| 6337 | else |
| 6338 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6339 | bins/$(CONFIG)/chttp2_fake_security_simple_delayed_request_test: $(CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_simple_delayed_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6340 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6341 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6342 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_simple_delayed_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_simple_delayed_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6343 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6344 | endif |
| 6345 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6346 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6347 | deps_chttp2_fake_security_simple_delayed_request_test: $(CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6348 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6349 | ifneq ($(NO_SECURE),true) |
| 6350 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6351 | -include $(CHTTP2_FAKE_SECURITY_SIMPLE_DELAYED_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6352 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6353 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6354 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6355 | |
| 6356 | CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_SRC = \ |
| 6357 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6358 | CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6359 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6360 | ifeq ($(NO_SECURE),true) |
| 6361 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6362 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6363 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6364 | bins/$(CONFIG)/chttp2_fake_security_simple_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6365 | |
| 6366 | else |
| 6367 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6368 | bins/$(CONFIG)/chttp2_fake_security_simple_request_test: $(CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6369 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6370 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6371 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_simple_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6372 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6373 | endif |
| 6374 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6375 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6376 | deps_chttp2_fake_security_simple_request_test: $(CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6377 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6378 | ifneq ($(NO_SECURE),true) |
| 6379 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6380 | -include $(CHTTP2_FAKE_SECURITY_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6381 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6382 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6383 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6384 | |
nathaniel | 5287817 | 2014-12-09 10:17:19 -0800 | [diff] [blame] | 6385 | CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_SRC = \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6386 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6387 | CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6388 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6389 | ifeq ($(NO_SECURE),true) |
| 6390 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6391 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6392 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6393 | bins/$(CONFIG)/chttp2_fake_security_thread_stress_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6394 | |
| 6395 | else |
| 6396 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6397 | bins/$(CONFIG)/chttp2_fake_security_thread_stress_test: $(CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_thread_stress.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6398 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6399 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6400 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_thread_stress.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_thread_stress_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6401 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6402 | endif |
| 6403 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6404 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6405 | deps_chttp2_fake_security_thread_stress_test: $(CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6406 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6407 | ifneq ($(NO_SECURE),true) |
| 6408 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6409 | -include $(CHTTP2_FAKE_SECURITY_THREAD_STRESS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6410 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6411 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6412 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6413 | |
| 6414 | CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC = \ |
| 6415 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6416 | CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6417 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6418 | ifeq ($(NO_SECURE),true) |
| 6419 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6420 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6421 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6422 | bins/$(CONFIG)/chttp2_fake_security_writes_done_hangs_with_pending_read_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6423 | |
| 6424 | else |
| 6425 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6426 | bins/$(CONFIG)/chttp2_fake_security_writes_done_hangs_with_pending_read_test: $(CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6427 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6428 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6429 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fake_security.a libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fake_security_writes_done_hangs_with_pending_read_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6430 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6431 | endif |
| 6432 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6433 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6434 | deps_chttp2_fake_security_writes_done_hangs_with_pending_read_test: $(CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6435 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6436 | ifneq ($(NO_SECURE),true) |
| 6437 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6438 | -include $(CHTTP2_FAKE_SECURITY_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6439 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6440 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6441 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6442 | |
| 6443 | CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_SRC = \ |
| 6444 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6445 | CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6446 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6447 | ifeq ($(NO_SECURE),true) |
| 6448 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6449 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6450 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6451 | bins/$(CONFIG)/chttp2_fullstack_cancel_after_accept_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6452 | |
| 6453 | else |
| 6454 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6455 | bins/$(CONFIG)/chttp2_fullstack_cancel_after_accept_test: $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_accept.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6456 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6457 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6458 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_accept.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_cancel_after_accept_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6459 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6460 | endif |
| 6461 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6462 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6463 | deps_chttp2_fullstack_cancel_after_accept_test: $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6464 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6465 | ifneq ($(NO_SECURE),true) |
| 6466 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6467 | -include $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6468 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6469 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6470 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6471 | |
| 6472 | CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC = \ |
| 6473 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6474 | CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6475 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6476 | ifeq ($(NO_SECURE),true) |
| 6477 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6478 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6479 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6480 | bins/$(CONFIG)/chttp2_fullstack_cancel_after_accept_and_writes_closed_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6481 | |
| 6482 | else |
| 6483 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6484 | bins/$(CONFIG)/chttp2_fullstack_cancel_after_accept_and_writes_closed_test: $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6485 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6486 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6487 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_cancel_after_accept_and_writes_closed_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6488 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6489 | endif |
| 6490 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6491 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6492 | deps_chttp2_fullstack_cancel_after_accept_and_writes_closed_test: $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6493 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6494 | ifneq ($(NO_SECURE),true) |
| 6495 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6496 | -include $(CHTTP2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6497 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6498 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6499 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6500 | |
| 6501 | CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_SRC = \ |
| 6502 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6503 | CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6504 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6505 | ifeq ($(NO_SECURE),true) |
| 6506 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6507 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6508 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6509 | bins/$(CONFIG)/chttp2_fullstack_cancel_after_invoke_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6510 | |
| 6511 | else |
| 6512 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6513 | bins/$(CONFIG)/chttp2_fullstack_cancel_after_invoke_test: $(CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6514 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6515 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6516 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_cancel_after_invoke_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6517 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6518 | endif |
| 6519 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6520 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6521 | deps_chttp2_fullstack_cancel_after_invoke_test: $(CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6522 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6523 | ifneq ($(NO_SECURE),true) |
| 6524 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6525 | -include $(CHTTP2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6526 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6527 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6528 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6529 | |
| 6530 | CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_SRC = \ |
| 6531 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6532 | CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6533 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6534 | ifeq ($(NO_SECURE),true) |
| 6535 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6536 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6537 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6538 | bins/$(CONFIG)/chttp2_fullstack_cancel_before_invoke_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6539 | |
| 6540 | else |
| 6541 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6542 | bins/$(CONFIG)/chttp2_fullstack_cancel_before_invoke_test: $(CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6543 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6544 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6545 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_cancel_before_invoke_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6546 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6547 | endif |
| 6548 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6549 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6550 | deps_chttp2_fullstack_cancel_before_invoke_test: $(CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6551 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6552 | ifneq ($(NO_SECURE),true) |
| 6553 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6554 | -include $(CHTTP2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6555 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6556 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6557 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6558 | |
| 6559 | CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_SRC = \ |
| 6560 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6561 | CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6562 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6563 | ifeq ($(NO_SECURE),true) |
| 6564 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6565 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6566 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6567 | bins/$(CONFIG)/chttp2_fullstack_cancel_in_a_vacuum_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6568 | |
| 6569 | else |
| 6570 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6571 | bins/$(CONFIG)/chttp2_fullstack_cancel_in_a_vacuum_test: $(CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6572 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6573 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6574 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_cancel_in_a_vacuum_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6575 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6576 | endif |
| 6577 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6578 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6579 | deps_chttp2_fullstack_cancel_in_a_vacuum_test: $(CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6580 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6581 | ifneq ($(NO_SECURE),true) |
| 6582 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6583 | -include $(CHTTP2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6584 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6585 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6586 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6587 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 6588 | CHTTP2_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_SRC = \ |
| 6589 | |
| 6590 | CHTTP2_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_SRC)))) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 6591 | |
| 6592 | ifeq ($(NO_SECURE),true) |
| 6593 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6594 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6595 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 6596 | bins/$(CONFIG)/chttp2_fullstack_census_simple_request_test: openssl_dep_error |
| 6597 | |
| 6598 | else |
| 6599 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6600 | bins/$(CONFIG)/chttp2_fullstack_census_simple_request_test: $(CHTTP2_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_census_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 6601 | $(E) "[LD] Linking $@" |
| 6602 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6603 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_census_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_census_simple_request_test |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 6604 | |
| 6605 | endif |
| 6606 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6607 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6608 | deps_chttp2_fullstack_census_simple_request_test: $(CHTTP2_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 6609 | |
| 6610 | ifneq ($(NO_SECURE),true) |
| 6611 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6612 | -include $(CHTTP2_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 6613 | endif |
| 6614 | endif |
| 6615 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 6616 | |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 6617 | CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_SRC = \ |
| 6618 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6619 | CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_SRC)))) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 6620 | |
| 6621 | ifeq ($(NO_SECURE),true) |
| 6622 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6623 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6624 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6625 | bins/$(CONFIG)/chttp2_fullstack_disappearing_server_test: openssl_dep_error |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 6626 | |
| 6627 | else |
| 6628 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6629 | bins/$(CONFIG)/chttp2_fullstack_disappearing_server_test: $(CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_disappearing_server.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 6630 | $(E) "[LD] Linking $@" |
| 6631 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6632 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_disappearing_server.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_disappearing_server_test |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 6633 | |
| 6634 | endif |
| 6635 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6636 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6637 | deps_chttp2_fullstack_disappearing_server_test: $(CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS:.o=.dep) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 6638 | |
| 6639 | ifneq ($(NO_SECURE),true) |
| 6640 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6641 | -include $(CHTTP2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS:.o=.dep) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 6642 | endif |
| 6643 | endif |
| 6644 | |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 6645 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6646 | CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC = \ |
| 6647 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6648 | CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6649 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6650 | ifeq ($(NO_SECURE),true) |
| 6651 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6652 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6653 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6654 | bins/$(CONFIG)/chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6655 | |
| 6656 | else |
| 6657 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6658 | bins/$(CONFIG)/chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6659 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6660 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6661 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6662 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6663 | endif |
| 6664 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6665 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6666 | deps_chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6667 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6668 | ifneq ($(NO_SECURE),true) |
| 6669 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6670 | -include $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6671 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6672 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6673 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6674 | |
| 6675 | CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC = \ |
| 6676 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6677 | CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6678 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6679 | ifeq ($(NO_SECURE),true) |
| 6680 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6681 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6682 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6683 | bins/$(CONFIG)/chttp2_fullstack_early_server_shutdown_finishes_tags_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6684 | |
| 6685 | else |
| 6686 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6687 | bins/$(CONFIG)/chttp2_fullstack_early_server_shutdown_finishes_tags_test: $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6688 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6689 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6690 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_early_server_shutdown_finishes_tags_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6691 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6692 | endif |
| 6693 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6694 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6695 | deps_chttp2_fullstack_early_server_shutdown_finishes_tags_test: $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6696 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6697 | ifneq ($(NO_SECURE),true) |
| 6698 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6699 | -include $(CHTTP2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6700 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6701 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6702 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6703 | |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 6704 | CHTTP2_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_SRC = \ |
| 6705 | |
| 6706 | CHTTP2_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_SRC)))) |
| 6707 | |
| 6708 | ifeq ($(NO_SECURE),true) |
| 6709 | |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 6710 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6711 | |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 6712 | bins/$(CONFIG)/chttp2_fullstack_graceful_server_shutdown_test: openssl_dep_error |
| 6713 | |
| 6714 | else |
| 6715 | |
| 6716 | bins/$(CONFIG)/chttp2_fullstack_graceful_server_shutdown_test: $(CHTTP2_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 6717 | $(E) "[LD] Linking $@" |
| 6718 | $(Q) mkdir -p `dirname $@` |
| 6719 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_graceful_server_shutdown_test |
| 6720 | |
| 6721 | endif |
| 6722 | |
| 6723 | |
| 6724 | deps_chttp2_fullstack_graceful_server_shutdown_test: $(CHTTP2_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS:.o=.dep) |
| 6725 | |
| 6726 | ifneq ($(NO_SECURE),true) |
| 6727 | ifneq ($(NO_DEPS),true) |
| 6728 | -include $(CHTTP2_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS:.o=.dep) |
| 6729 | endif |
| 6730 | endif |
| 6731 | |
| 6732 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6733 | CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_SRC = \ |
| 6734 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6735 | CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6736 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6737 | ifeq ($(NO_SECURE),true) |
| 6738 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6739 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6740 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6741 | bins/$(CONFIG)/chttp2_fullstack_invoke_large_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6742 | |
| 6743 | else |
| 6744 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6745 | bins/$(CONFIG)/chttp2_fullstack_invoke_large_request_test: $(CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_invoke_large_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6746 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6747 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6748 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_invoke_large_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_invoke_large_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6749 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6750 | endif |
| 6751 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6752 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6753 | deps_chttp2_fullstack_invoke_large_request_test: $(CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6754 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6755 | ifneq ($(NO_SECURE),true) |
| 6756 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6757 | -include $(CHTTP2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6758 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6759 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6760 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6761 | |
| 6762 | CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_SRC = \ |
| 6763 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6764 | CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6765 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6766 | ifeq ($(NO_SECURE),true) |
| 6767 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6768 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6769 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6770 | bins/$(CONFIG)/chttp2_fullstack_max_concurrent_streams_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6771 | |
| 6772 | else |
| 6773 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6774 | bins/$(CONFIG)/chttp2_fullstack_max_concurrent_streams_test: $(CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6775 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6776 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6777 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_max_concurrent_streams_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6778 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6779 | endif |
| 6780 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6781 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6782 | deps_chttp2_fullstack_max_concurrent_streams_test: $(CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6783 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6784 | ifneq ($(NO_SECURE),true) |
| 6785 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6786 | -include $(CHTTP2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6787 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6788 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6789 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6790 | |
| 6791 | CHTTP2_FULLSTACK_NO_OP_TEST_SRC = \ |
| 6792 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6793 | CHTTP2_FULLSTACK_NO_OP_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_NO_OP_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6794 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6795 | ifeq ($(NO_SECURE),true) |
| 6796 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6797 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6798 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6799 | bins/$(CONFIG)/chttp2_fullstack_no_op_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6800 | |
| 6801 | else |
| 6802 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6803 | bins/$(CONFIG)/chttp2_fullstack_no_op_test: $(CHTTP2_FULLSTACK_NO_OP_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_no_op.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6804 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6805 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6806 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_NO_OP_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_no_op.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_no_op_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6807 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6808 | endif |
| 6809 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6810 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6811 | deps_chttp2_fullstack_no_op_test: $(CHTTP2_FULLSTACK_NO_OP_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6812 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6813 | ifneq ($(NO_SECURE),true) |
| 6814 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6815 | -include $(CHTTP2_FULLSTACK_NO_OP_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6816 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6817 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6818 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6819 | |
| 6820 | CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_SRC = \ |
| 6821 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6822 | CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6823 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6824 | ifeq ($(NO_SECURE),true) |
| 6825 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6826 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6827 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6828 | bins/$(CONFIG)/chttp2_fullstack_ping_pong_streaming_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6829 | |
| 6830 | else |
| 6831 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6832 | bins/$(CONFIG)/chttp2_fullstack_ping_pong_streaming_test: $(CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6833 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6834 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6835 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_ping_pong_streaming_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6836 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6837 | endif |
| 6838 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6839 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6840 | deps_chttp2_fullstack_ping_pong_streaming_test: $(CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6841 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6842 | ifneq ($(NO_SECURE),true) |
| 6843 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6844 | -include $(CHTTP2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6845 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6846 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6847 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6848 | |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6849 | CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 6850 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6851 | CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC)))) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6852 | |
| 6853 | ifeq ($(NO_SECURE),true) |
| 6854 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6855 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6856 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6857 | bins/$(CONFIG)/chttp2_fullstack_request_response_with_binary_metadata_and_payload_test: openssl_dep_error |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6858 | |
| 6859 | else |
| 6860 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6861 | bins/$(CONFIG)/chttp2_fullstack_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6862 | $(E) "[LD] Linking $@" |
| 6863 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6864 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_request_response_with_binary_metadata_and_payload_test |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6865 | |
| 6866 | endif |
| 6867 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6868 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6869 | deps_chttp2_fullstack_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6870 | |
| 6871 | ifneq ($(NO_SECURE),true) |
| 6872 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6873 | -include $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6874 | endif |
| 6875 | endif |
| 6876 | |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 6877 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6878 | CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 6879 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6880 | CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6881 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6882 | ifeq ($(NO_SECURE),true) |
| 6883 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6884 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6885 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6886 | bins/$(CONFIG)/chttp2_fullstack_request_response_with_metadata_and_payload_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6887 | |
| 6888 | else |
| 6889 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6890 | bins/$(CONFIG)/chttp2_fullstack_request_response_with_metadata_and_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6891 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6892 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6893 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_request_response_with_metadata_and_payload_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6894 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6895 | endif |
| 6896 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6897 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6898 | deps_chttp2_fullstack_request_response_with_metadata_and_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6899 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6900 | ifneq ($(NO_SECURE),true) |
| 6901 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6902 | -include $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6903 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6904 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6905 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6906 | |
| 6907 | CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC = \ |
| 6908 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6909 | CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6910 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6911 | ifeq ($(NO_SECURE),true) |
| 6912 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6913 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6914 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6915 | bins/$(CONFIG)/chttp2_fullstack_request_response_with_payload_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6916 | |
| 6917 | else |
| 6918 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6919 | bins/$(CONFIG)/chttp2_fullstack_request_response_with_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6920 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6921 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6922 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_request_response_with_payload_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6923 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6924 | endif |
| 6925 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6926 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6927 | deps_chttp2_fullstack_request_response_with_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6928 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6929 | ifneq ($(NO_SECURE),true) |
| 6930 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6931 | -include $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6932 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6933 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6934 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6935 | |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6936 | CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 6937 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6938 | CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC)))) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6939 | |
| 6940 | ifeq ($(NO_SECURE),true) |
| 6941 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6942 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6943 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6944 | bins/$(CONFIG)/chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test: openssl_dep_error |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6945 | |
| 6946 | else |
| 6947 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6948 | bins/$(CONFIG)/chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6949 | $(E) "[LD] Linking $@" |
| 6950 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6951 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6952 | |
| 6953 | endif |
| 6954 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6955 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6956 | deps_chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6957 | |
| 6958 | ifneq ($(NO_SECURE),true) |
| 6959 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6960 | -include $(CHTTP2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6961 | endif |
| 6962 | endif |
| 6963 | |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 6964 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6965 | CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_SRC = \ |
| 6966 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6967 | CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6968 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6969 | ifeq ($(NO_SECURE),true) |
| 6970 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 6971 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 6972 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6973 | bins/$(CONFIG)/chttp2_fullstack_simple_delayed_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6974 | |
| 6975 | else |
| 6976 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6977 | bins/$(CONFIG)/chttp2_fullstack_simple_delayed_request_test: $(CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_simple_delayed_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6978 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 6979 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 6980 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_simple_delayed_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_simple_delayed_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6981 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6982 | endif |
| 6983 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 6984 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6985 | deps_chttp2_fullstack_simple_delayed_request_test: $(CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6986 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6987 | ifneq ($(NO_SECURE),true) |
| 6988 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 6989 | -include $(CHTTP2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6990 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6991 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6992 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6993 | |
| 6994 | CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_SRC = \ |
| 6995 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 6996 | CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 6997 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 6998 | ifeq ($(NO_SECURE),true) |
| 6999 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7000 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7001 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7002 | bins/$(CONFIG)/chttp2_fullstack_simple_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7003 | |
| 7004 | else |
| 7005 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7006 | bins/$(CONFIG)/chttp2_fullstack_simple_request_test: $(CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7007 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7008 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7009 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_simple_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7010 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7011 | endif |
| 7012 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7013 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7014 | deps_chttp2_fullstack_simple_request_test: $(CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7015 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7016 | ifneq ($(NO_SECURE),true) |
| 7017 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7018 | -include $(CHTTP2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7019 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7020 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7021 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7022 | |
nathaniel | 5287817 | 2014-12-09 10:17:19 -0800 | [diff] [blame] | 7023 | CHTTP2_FULLSTACK_THREAD_STRESS_TEST_SRC = \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7024 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7025 | CHTTP2_FULLSTACK_THREAD_STRESS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_THREAD_STRESS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7026 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7027 | ifeq ($(NO_SECURE),true) |
| 7028 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7029 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7030 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7031 | bins/$(CONFIG)/chttp2_fullstack_thread_stress_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7032 | |
| 7033 | else |
| 7034 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7035 | bins/$(CONFIG)/chttp2_fullstack_thread_stress_test: $(CHTTP2_FULLSTACK_THREAD_STRESS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_thread_stress.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7036 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7037 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7038 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_THREAD_STRESS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_thread_stress.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_thread_stress_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7039 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7040 | endif |
| 7041 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7042 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7043 | deps_chttp2_fullstack_thread_stress_test: $(CHTTP2_FULLSTACK_THREAD_STRESS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7044 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7045 | ifneq ($(NO_SECURE),true) |
| 7046 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7047 | -include $(CHTTP2_FULLSTACK_THREAD_STRESS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7048 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7049 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7050 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7051 | |
| 7052 | CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC = \ |
| 7053 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7054 | CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7055 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7056 | ifeq ($(NO_SECURE),true) |
| 7057 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7058 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7059 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7060 | bins/$(CONFIG)/chttp2_fullstack_writes_done_hangs_with_pending_read_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7061 | |
| 7062 | else |
| 7063 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7064 | bins/$(CONFIG)/chttp2_fullstack_writes_done_hangs_with_pending_read_test: $(CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7065 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7066 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7067 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_fullstack.a libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_fullstack_writes_done_hangs_with_pending_read_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7068 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7069 | endif |
| 7070 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7071 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7072 | deps_chttp2_fullstack_writes_done_hangs_with_pending_read_test: $(CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7073 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7074 | ifneq ($(NO_SECURE),true) |
| 7075 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7076 | -include $(CHTTP2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7077 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7078 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7079 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7080 | |
| 7081 | CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_SRC = \ |
| 7082 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7083 | CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7084 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7085 | ifeq ($(NO_SECURE),true) |
| 7086 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7087 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7088 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7089 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_accept_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7090 | |
| 7091 | else |
| 7092 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7093 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_accept_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_accept.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7094 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7095 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7096 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_accept.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_accept_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7097 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7098 | endif |
| 7099 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7100 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7101 | deps_chttp2_simple_ssl_fullstack_cancel_after_accept_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7102 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7103 | ifneq ($(NO_SECURE),true) |
| 7104 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7105 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7106 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7107 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7108 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7109 | |
| 7110 | CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC = \ |
| 7111 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7112 | CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7113 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7114 | ifeq ($(NO_SECURE),true) |
| 7115 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7116 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7117 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7118 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7119 | |
| 7120 | else |
| 7121 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7122 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7123 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7124 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7125 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7126 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7127 | endif |
| 7128 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7129 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7130 | deps_chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7131 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7132 | ifneq ($(NO_SECURE),true) |
| 7133 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7134 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7135 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7136 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7137 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7138 | |
| 7139 | CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_SRC = \ |
| 7140 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7141 | CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7142 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7143 | ifeq ($(NO_SECURE),true) |
| 7144 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7145 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7146 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7147 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_invoke_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7148 | |
| 7149 | else |
| 7150 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7151 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_invoke_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7152 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7153 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7154 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_after_invoke_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7155 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7156 | endif |
| 7157 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7158 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7159 | deps_chttp2_simple_ssl_fullstack_cancel_after_invoke_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7160 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7161 | ifneq ($(NO_SECURE),true) |
| 7162 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7163 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7164 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7165 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7166 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7167 | |
| 7168 | CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_SRC = \ |
| 7169 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7170 | CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7171 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7172 | ifeq ($(NO_SECURE),true) |
| 7173 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7174 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7175 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7176 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_before_invoke_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7177 | |
| 7178 | else |
| 7179 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7180 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_before_invoke_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7181 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7182 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7183 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_before_invoke_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7184 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7185 | endif |
| 7186 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7187 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7188 | deps_chttp2_simple_ssl_fullstack_cancel_before_invoke_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7189 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7190 | ifneq ($(NO_SECURE),true) |
| 7191 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7192 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7193 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7194 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7195 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7196 | |
| 7197 | CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_SRC = \ |
| 7198 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7199 | CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7200 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7201 | ifeq ($(NO_SECURE),true) |
| 7202 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7203 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7204 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7205 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7206 | |
| 7207 | else |
| 7208 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7209 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7210 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7211 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7212 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7213 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7214 | endif |
| 7215 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7216 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7217 | deps_chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7218 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7219 | ifneq ($(NO_SECURE),true) |
| 7220 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7221 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7222 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7223 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7224 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7225 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7226 | CHTTP2_SIMPLE_SSL_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_SRC = \ |
| 7227 | |
| 7228 | CHTTP2_SIMPLE_SSL_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_SRC)))) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7229 | |
| 7230 | ifeq ($(NO_SECURE),true) |
| 7231 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7232 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7233 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7234 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_census_simple_request_test: openssl_dep_error |
| 7235 | |
| 7236 | else |
| 7237 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7238 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_census_simple_request_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_census_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7239 | $(E) "[LD] Linking $@" |
| 7240 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7241 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_census_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_census_simple_request_test |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7242 | |
| 7243 | endif |
| 7244 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7245 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7246 | deps_chttp2_simple_ssl_fullstack_census_simple_request_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7247 | |
| 7248 | ifneq ($(NO_SECURE),true) |
| 7249 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7250 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7251 | endif |
| 7252 | endif |
| 7253 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7254 | |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7255 | CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_SRC = \ |
| 7256 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7257 | CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_SRC)))) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7258 | |
| 7259 | ifeq ($(NO_SECURE),true) |
| 7260 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7261 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7262 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7263 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_disappearing_server_test: openssl_dep_error |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7264 | |
| 7265 | else |
| 7266 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7267 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_disappearing_server_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_disappearing_server.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7268 | $(E) "[LD] Linking $@" |
| 7269 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7270 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_disappearing_server.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_disappearing_server_test |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7271 | |
| 7272 | endif |
| 7273 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7274 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7275 | deps_chttp2_simple_ssl_fullstack_disappearing_server_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS:.o=.dep) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7276 | |
| 7277 | ifneq ($(NO_SECURE),true) |
| 7278 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7279 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS:.o=.dep) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7280 | endif |
| 7281 | endif |
| 7282 | |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7283 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7284 | CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC = \ |
| 7285 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7286 | CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7287 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7288 | ifeq ($(NO_SECURE),true) |
| 7289 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7290 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7291 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7292 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7293 | |
| 7294 | else |
| 7295 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7296 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7297 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7298 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7299 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7300 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7301 | endif |
| 7302 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7303 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7304 | deps_chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7305 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7306 | ifneq ($(NO_SECURE),true) |
| 7307 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7308 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7309 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7310 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7311 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7312 | |
| 7313 | CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC = \ |
| 7314 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7315 | CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7316 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7317 | ifeq ($(NO_SECURE),true) |
| 7318 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7319 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7320 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7321 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7322 | |
| 7323 | else |
| 7324 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7325 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7326 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7327 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7328 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7329 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7330 | endif |
| 7331 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7332 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7333 | deps_chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7334 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7335 | ifneq ($(NO_SECURE),true) |
| 7336 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7337 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7338 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7339 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7340 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7341 | |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 7342 | CHTTP2_SIMPLE_SSL_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_SRC = \ |
| 7343 | |
| 7344 | CHTTP2_SIMPLE_SSL_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_SRC)))) |
| 7345 | |
| 7346 | ifeq ($(NO_SECURE),true) |
| 7347 | |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 7348 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7349 | |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 7350 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_graceful_server_shutdown_test: openssl_dep_error |
| 7351 | |
| 7352 | else |
| 7353 | |
| 7354 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_graceful_server_shutdown_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 7355 | $(E) "[LD] Linking $@" |
| 7356 | $(Q) mkdir -p `dirname $@` |
| 7357 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_graceful_server_shutdown_test |
| 7358 | |
| 7359 | endif |
| 7360 | |
| 7361 | |
| 7362 | deps_chttp2_simple_ssl_fullstack_graceful_server_shutdown_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS:.o=.dep) |
| 7363 | |
| 7364 | ifneq ($(NO_SECURE),true) |
| 7365 | ifneq ($(NO_DEPS),true) |
| 7366 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS:.o=.dep) |
| 7367 | endif |
| 7368 | endif |
| 7369 | |
| 7370 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7371 | CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_SRC = \ |
| 7372 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7373 | CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7374 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7375 | ifeq ($(NO_SECURE),true) |
| 7376 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7377 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7378 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7379 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_invoke_large_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7380 | |
| 7381 | else |
| 7382 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7383 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_invoke_large_request_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_invoke_large_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7384 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7385 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7386 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_invoke_large_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_invoke_large_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7387 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7388 | endif |
| 7389 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7390 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7391 | deps_chttp2_simple_ssl_fullstack_invoke_large_request_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7392 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7393 | ifneq ($(NO_SECURE),true) |
| 7394 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7395 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7396 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7397 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7398 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7399 | |
| 7400 | CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_SRC = \ |
| 7401 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7402 | CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7403 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7404 | ifeq ($(NO_SECURE),true) |
| 7405 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7406 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7407 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7408 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_max_concurrent_streams_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7409 | |
| 7410 | else |
| 7411 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7412 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_max_concurrent_streams_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7413 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7414 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7415 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_max_concurrent_streams_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7416 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7417 | endif |
| 7418 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7419 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7420 | deps_chttp2_simple_ssl_fullstack_max_concurrent_streams_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7421 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7422 | ifneq ($(NO_SECURE),true) |
| 7423 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7424 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7425 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7426 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7427 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7428 | |
| 7429 | CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_SRC = \ |
| 7430 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7431 | CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7432 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7433 | ifeq ($(NO_SECURE),true) |
| 7434 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7435 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7436 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7437 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_no_op_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7438 | |
| 7439 | else |
| 7440 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7441 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_no_op_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_no_op.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7442 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7443 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7444 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_no_op.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_no_op_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7445 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7446 | endif |
| 7447 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7448 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7449 | deps_chttp2_simple_ssl_fullstack_no_op_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7450 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7451 | ifneq ($(NO_SECURE),true) |
| 7452 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7453 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_NO_OP_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7454 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7455 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7456 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7457 | |
| 7458 | CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_SRC = \ |
| 7459 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7460 | CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7461 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7462 | ifeq ($(NO_SECURE),true) |
| 7463 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7464 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7465 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7466 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_ping_pong_streaming_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7467 | |
| 7468 | else |
| 7469 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7470 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_ping_pong_streaming_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7471 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7472 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7473 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_ping_pong_streaming_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7474 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7475 | endif |
| 7476 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7477 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7478 | deps_chttp2_simple_ssl_fullstack_ping_pong_streaming_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7479 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7480 | ifneq ($(NO_SECURE),true) |
| 7481 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7482 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7483 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7484 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7485 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7486 | |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 7487 | CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 7488 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7489 | CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC)))) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 7490 | |
| 7491 | ifeq ($(NO_SECURE),true) |
| 7492 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7493 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7494 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7495 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test: openssl_dep_error |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 7496 | |
| 7497 | else |
| 7498 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7499 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 7500 | $(E) "[LD] Linking $@" |
| 7501 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7502 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 7503 | |
| 7504 | endif |
| 7505 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7506 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7507 | deps_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:.o=.dep) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 7508 | |
| 7509 | ifneq ($(NO_SECURE),true) |
| 7510 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7511 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 7512 | endif |
| 7513 | endif |
| 7514 | |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 7515 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7516 | CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 7517 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7518 | CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7519 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7520 | ifeq ($(NO_SECURE),true) |
| 7521 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7522 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7523 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7524 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7525 | |
| 7526 | else |
| 7527 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7528 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7529 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7530 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7531 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7532 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7533 | endif |
| 7534 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7535 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7536 | deps_chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7537 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7538 | ifneq ($(NO_SECURE),true) |
| 7539 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7540 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7541 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7542 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7543 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7544 | |
| 7545 | CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC = \ |
| 7546 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7547 | CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7548 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7549 | ifeq ($(NO_SECURE),true) |
| 7550 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7551 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7552 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7553 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_payload_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7554 | |
| 7555 | else |
| 7556 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7557 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_payload_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7558 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7559 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7560 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_payload_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7561 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7562 | endif |
| 7563 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7564 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7565 | deps_chttp2_simple_ssl_fullstack_request_response_with_payload_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7566 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7567 | ifneq ($(NO_SECURE),true) |
| 7568 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7569 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7570 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7571 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7572 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7573 | |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 7574 | CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 7575 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7576 | CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC)))) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 7577 | |
| 7578 | ifeq ($(NO_SECURE),true) |
| 7579 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7580 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7581 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7582 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test: openssl_dep_error |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 7583 | |
| 7584 | else |
| 7585 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7586 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 7587 | $(E) "[LD] Linking $@" |
| 7588 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7589 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 7590 | |
| 7591 | endif |
| 7592 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7593 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7594 | deps_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:.o=.dep) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 7595 | |
| 7596 | ifneq ($(NO_SECURE),true) |
| 7597 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7598 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 7599 | endif |
| 7600 | endif |
| 7601 | |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 7602 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7603 | CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_SRC = \ |
| 7604 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7605 | CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7606 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7607 | ifeq ($(NO_SECURE),true) |
| 7608 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7609 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7610 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7611 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_simple_delayed_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7612 | |
| 7613 | else |
| 7614 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7615 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_simple_delayed_request_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_simple_delayed_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7616 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7617 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7618 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_simple_delayed_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_simple_delayed_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7619 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7620 | endif |
| 7621 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7622 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7623 | deps_chttp2_simple_ssl_fullstack_simple_delayed_request_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7624 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7625 | ifneq ($(NO_SECURE),true) |
| 7626 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7627 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7628 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7629 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7630 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7631 | |
| 7632 | CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_SRC = \ |
| 7633 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7634 | CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7635 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7636 | ifeq ($(NO_SECURE),true) |
| 7637 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7638 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7639 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7640 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_simple_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7641 | |
| 7642 | else |
| 7643 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7644 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_simple_request_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7645 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7646 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7647 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_simple_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7648 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7649 | endif |
| 7650 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7651 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7652 | deps_chttp2_simple_ssl_fullstack_simple_request_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7653 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7654 | ifneq ($(NO_SECURE),true) |
| 7655 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7656 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7657 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7658 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7659 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7660 | |
nathaniel | 5287817 | 2014-12-09 10:17:19 -0800 | [diff] [blame] | 7661 | CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_SRC = \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7662 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7663 | CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7664 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7665 | ifeq ($(NO_SECURE),true) |
| 7666 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7667 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7668 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7669 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_thread_stress_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7670 | |
| 7671 | else |
| 7672 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7673 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_thread_stress_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_thread_stress.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7674 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7675 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7676 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_thread_stress.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_thread_stress_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7677 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7678 | endif |
| 7679 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7680 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7681 | deps_chttp2_simple_ssl_fullstack_thread_stress_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7682 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7683 | ifneq ($(NO_SECURE),true) |
| 7684 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7685 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_THREAD_STRESS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7686 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7687 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7688 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7689 | |
| 7690 | CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC = \ |
| 7691 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7692 | CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7693 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7694 | ifeq ($(NO_SECURE),true) |
| 7695 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7696 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7697 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7698 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7699 | |
| 7700 | else |
| 7701 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7702 | bins/$(CONFIG)/chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7703 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7704 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7705 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_fullstack.a libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7706 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7707 | endif |
| 7708 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7709 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7710 | deps_chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test: $(CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7711 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7712 | ifneq ($(NO_SECURE),true) |
| 7713 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7714 | -include $(CHTTP2_SIMPLE_SSL_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7715 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7716 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7717 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7718 | |
| 7719 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_SRC = \ |
| 7720 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7721 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7722 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7723 | ifeq ($(NO_SECURE),true) |
| 7724 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7725 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7726 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7727 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7728 | |
| 7729 | else |
| 7730 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7731 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_accept.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7732 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7733 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7734 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_accept.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7735 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7736 | endif |
| 7737 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7738 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7739 | deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7740 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7741 | ifneq ($(NO_SECURE),true) |
| 7742 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7743 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7744 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7745 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7746 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7747 | |
| 7748 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC = \ |
| 7749 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7750 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7751 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7752 | ifeq ($(NO_SECURE),true) |
| 7753 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7754 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7755 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7756 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7757 | |
| 7758 | else |
| 7759 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7760 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7761 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7762 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7763 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7764 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7765 | endif |
| 7766 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7767 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7768 | deps_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:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7769 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7770 | ifneq ($(NO_SECURE),true) |
| 7771 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7772 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7773 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7774 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7775 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7776 | |
| 7777 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_SRC = \ |
| 7778 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7779 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7780 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7781 | ifeq ($(NO_SECURE),true) |
| 7782 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7783 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7784 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7785 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7786 | |
| 7787 | else |
| 7788 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7789 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7790 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7791 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7792 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7793 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7794 | endif |
| 7795 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7796 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7797 | deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7798 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7799 | ifneq ($(NO_SECURE),true) |
| 7800 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7801 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_AFTER_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7802 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7803 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7804 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7805 | |
| 7806 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_SRC = \ |
| 7807 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7808 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7809 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7810 | ifeq ($(NO_SECURE),true) |
| 7811 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7812 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7813 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7814 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7815 | |
| 7816 | else |
| 7817 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7818 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7819 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7820 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7821 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7822 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7823 | endif |
| 7824 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7825 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7826 | deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7827 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7828 | ifneq ($(NO_SECURE),true) |
| 7829 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7830 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_BEFORE_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7831 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7832 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7833 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7834 | |
| 7835 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_SRC = \ |
| 7836 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7837 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7838 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7839 | ifeq ($(NO_SECURE),true) |
| 7840 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7841 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7842 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7843 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7844 | |
| 7845 | else |
| 7846 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7847 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7848 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7849 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7850 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7851 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7852 | endif |
| 7853 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7854 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7855 | deps_chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7856 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7857 | ifneq ($(NO_SECURE),true) |
| 7858 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7859 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CANCEL_IN_A_VACUUM_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7860 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7861 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7862 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7863 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7864 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_SRC = \ |
| 7865 | |
| 7866 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_SRC)))) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7867 | |
| 7868 | ifeq ($(NO_SECURE),true) |
| 7869 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7870 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7871 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7872 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_test: openssl_dep_error |
| 7873 | |
| 7874 | else |
| 7875 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7876 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_census_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7877 | $(E) "[LD] Linking $@" |
| 7878 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7879 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_census_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_test |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7880 | |
| 7881 | endif |
| 7882 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7883 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7884 | deps_chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7885 | |
| 7886 | ifneq ($(NO_SECURE),true) |
| 7887 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7888 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_CENSUS_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7889 | endif |
| 7890 | endif |
| 7891 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 7892 | |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7893 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_SRC = \ |
| 7894 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7895 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_SRC)))) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7896 | |
| 7897 | ifeq ($(NO_SECURE),true) |
| 7898 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7899 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7900 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7901 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test: openssl_dep_error |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7902 | |
| 7903 | else |
| 7904 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7905 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_disappearing_server.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7906 | $(E) "[LD] Linking $@" |
| 7907 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7908 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_disappearing_server.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7909 | |
| 7910 | endif |
| 7911 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7912 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7913 | deps_chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS:.o=.dep) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7914 | |
| 7915 | ifneq ($(NO_SECURE),true) |
| 7916 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7917 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_DISAPPEARING_SERVER_TEST_OBJS:.o=.dep) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7918 | endif |
| 7919 | endif |
| 7920 | |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 7921 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7922 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC = \ |
| 7923 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7924 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7925 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7926 | ifeq ($(NO_SECURE),true) |
| 7927 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7928 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7929 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7930 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7931 | |
| 7932 | else |
| 7933 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7934 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7935 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7936 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7937 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7938 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7939 | endif |
| 7940 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7941 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7942 | deps_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:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7943 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7944 | ifneq ($(NO_SECURE),true) |
| 7945 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7946 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7947 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7948 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7949 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7950 | |
| 7951 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC = \ |
| 7952 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7953 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7954 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7955 | ifeq ($(NO_SECURE),true) |
| 7956 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 7957 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7958 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 7959 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7960 | |
| 7961 | else |
| 7962 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7963 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7964 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 7965 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 7966 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7967 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7968 | endif |
| 7969 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 7970 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7971 | deps_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:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7972 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7973 | ifneq ($(NO_SECURE),true) |
| 7974 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 7975 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7976 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 7977 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7978 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 7979 | |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 7980 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_SRC = \ |
| 7981 | |
| 7982 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_SRC)))) |
| 7983 | |
| 7984 | ifeq ($(NO_SECURE),true) |
| 7985 | |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 7986 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 7987 | |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 7988 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_test: openssl_dep_error |
| 7989 | |
| 7990 | else |
| 7991 | |
| 7992 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 7993 | $(E) "[LD] Linking $@" |
| 7994 | $(Q) mkdir -p `dirname $@` |
| 7995 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_test |
| 7996 | |
| 7997 | endif |
| 7998 | |
| 7999 | |
| 8000 | deps_chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS:.o=.dep) |
| 8001 | |
| 8002 | ifneq ($(NO_SECURE),true) |
| 8003 | ifneq ($(NO_DEPS),true) |
| 8004 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS:.o=.dep) |
| 8005 | endif |
| 8006 | endif |
| 8007 | |
| 8008 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8009 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_SRC = \ |
| 8010 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8011 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8012 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8013 | ifeq ($(NO_SECURE),true) |
| 8014 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8015 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8016 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8017 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8018 | |
| 8019 | else |
| 8020 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8021 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_invoke_large_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8022 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8023 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8024 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_invoke_large_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8025 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8026 | endif |
| 8027 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8028 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8029 | deps_chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8030 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8031 | ifneq ($(NO_SECURE),true) |
| 8032 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8033 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_INVOKE_LARGE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8034 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8035 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8036 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8037 | |
| 8038 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_SRC = \ |
| 8039 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8040 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8041 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8042 | ifeq ($(NO_SECURE),true) |
| 8043 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8044 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8045 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8046 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8047 | |
| 8048 | else |
| 8049 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8050 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8051 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8052 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8053 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8054 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8055 | endif |
| 8056 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8057 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8058 | deps_chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8059 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8060 | ifneq ($(NO_SECURE),true) |
| 8061 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8062 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_MAX_CONCURRENT_STREAMS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8063 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8064 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8065 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8066 | |
| 8067 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_SRC = \ |
| 8068 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8069 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8070 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8071 | ifeq ($(NO_SECURE),true) |
| 8072 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8073 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8074 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8075 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_no_op_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8076 | |
| 8077 | else |
| 8078 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8079 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_no_op_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_no_op.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8080 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8081 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8082 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_no_op.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_no_op_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8083 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8084 | endif |
| 8085 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8086 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8087 | deps_chttp2_simple_ssl_with_oauth2_fullstack_no_op_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8088 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8089 | ifneq ($(NO_SECURE),true) |
| 8090 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8091 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_NO_OP_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8092 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8093 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8094 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8095 | |
| 8096 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_SRC = \ |
| 8097 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8098 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8099 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8100 | ifeq ($(NO_SECURE),true) |
| 8101 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8102 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8103 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8104 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8105 | |
| 8106 | else |
| 8107 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8108 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8109 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8110 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8111 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8112 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8113 | endif |
| 8114 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8115 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8116 | deps_chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8117 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8118 | ifneq ($(NO_SECURE),true) |
| 8119 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8120 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_PING_PONG_STREAMING_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8121 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8122 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8123 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8124 | |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8125 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 8126 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8127 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC)))) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8128 | |
| 8129 | ifeq ($(NO_SECURE),true) |
| 8130 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8131 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8132 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8133 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test: openssl_dep_error |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8134 | |
| 8135 | else |
| 8136 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8137 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8138 | $(E) "[LD] Linking $@" |
| 8139 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8140 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8141 | |
| 8142 | endif |
| 8143 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8144 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8145 | deps_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:.o=.dep) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8146 | |
| 8147 | ifneq ($(NO_SECURE),true) |
| 8148 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8149 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8150 | endif |
| 8151 | endif |
| 8152 | |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8153 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8154 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 8155 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8156 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8157 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8158 | ifeq ($(NO_SECURE),true) |
| 8159 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8160 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8161 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8162 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8163 | |
| 8164 | else |
| 8165 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8166 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8167 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8168 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8169 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8170 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8171 | endif |
| 8172 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8173 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8174 | deps_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:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8175 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8176 | ifneq ($(NO_SECURE),true) |
| 8177 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8178 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8179 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8180 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8181 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8182 | |
| 8183 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC = \ |
| 8184 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8185 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8186 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8187 | ifeq ($(NO_SECURE),true) |
| 8188 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8189 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8190 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8191 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8192 | |
| 8193 | else |
| 8194 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8195 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8196 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8197 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8198 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8199 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8200 | endif |
| 8201 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8202 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8203 | deps_chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8204 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8205 | ifneq ($(NO_SECURE),true) |
| 8206 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8207 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8208 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8209 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8210 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8211 | |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8212 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 8213 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8214 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC)))) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8215 | |
| 8216 | ifeq ($(NO_SECURE),true) |
| 8217 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8218 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8219 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8220 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test: openssl_dep_error |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8221 | |
| 8222 | else |
| 8223 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8224 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8225 | $(E) "[LD] Linking $@" |
| 8226 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8227 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8228 | |
| 8229 | endif |
| 8230 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8231 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8232 | deps_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:.o=.dep) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8233 | |
| 8234 | ifneq ($(NO_SECURE),true) |
| 8235 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8236 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8237 | endif |
| 8238 | endif |
| 8239 | |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8240 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8241 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_SRC = \ |
| 8242 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8243 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8244 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8245 | ifeq ($(NO_SECURE),true) |
| 8246 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8247 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8248 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8249 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8250 | |
| 8251 | else |
| 8252 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8253 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_simple_delayed_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8254 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8255 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8256 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_simple_delayed_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8257 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8258 | endif |
| 8259 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8260 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8261 | deps_chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8262 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8263 | ifneq ($(NO_SECURE),true) |
| 8264 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8265 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_DELAYED_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8266 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8267 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8268 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8269 | |
| 8270 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_SRC = \ |
| 8271 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8272 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8273 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8274 | ifeq ($(NO_SECURE),true) |
| 8275 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8276 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8277 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8278 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8279 | |
| 8280 | else |
| 8281 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8282 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8283 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8284 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8285 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8286 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8287 | endif |
| 8288 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8289 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8290 | deps_chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8291 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8292 | ifneq ($(NO_SECURE),true) |
| 8293 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8294 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8295 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8296 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8297 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8298 | |
nathaniel | 5287817 | 2014-12-09 10:17:19 -0800 | [diff] [blame] | 8299 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_SRC = \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8300 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8301 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8302 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8303 | ifeq ($(NO_SECURE),true) |
| 8304 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8305 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8306 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8307 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8308 | |
| 8309 | else |
| 8310 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8311 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_thread_stress.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8312 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8313 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8314 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_thread_stress.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8315 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8316 | endif |
| 8317 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8318 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8319 | deps_chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test: $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8320 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8321 | ifneq ($(NO_SECURE),true) |
| 8322 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8323 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_THREAD_STRESS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8324 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8325 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8326 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8327 | |
| 8328 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC = \ |
| 8329 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8330 | CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8331 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8332 | ifeq ($(NO_SECURE),true) |
| 8333 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8334 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8335 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8336 | bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8337 | |
| 8338 | else |
| 8339 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8340 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8341 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8342 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8343 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_simple_ssl_with_oauth2_fullstack.a libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8344 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8345 | endif |
| 8346 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8347 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8348 | deps_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:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8349 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8350 | ifneq ($(NO_SECURE),true) |
| 8351 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8352 | -include $(CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8353 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8354 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8355 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8356 | |
| 8357 | CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_SRC = \ |
| 8358 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8359 | CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8360 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8361 | ifeq ($(NO_SECURE),true) |
| 8362 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8363 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8364 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8365 | bins/$(CONFIG)/chttp2_socket_pair_cancel_after_accept_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8366 | |
| 8367 | else |
| 8368 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8369 | bins/$(CONFIG)/chttp2_socket_pair_cancel_after_accept_test: $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_cancel_after_accept.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8370 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8371 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8372 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_cancel_after_accept.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_cancel_after_accept_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8373 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8374 | endif |
| 8375 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8376 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8377 | deps_chttp2_socket_pair_cancel_after_accept_test: $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8378 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8379 | ifneq ($(NO_SECURE),true) |
| 8380 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8381 | -include $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8382 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8383 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8384 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8385 | |
| 8386 | CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC = \ |
| 8387 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8388 | CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8389 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8390 | ifeq ($(NO_SECURE),true) |
| 8391 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8392 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8393 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8394 | bins/$(CONFIG)/chttp2_socket_pair_cancel_after_accept_and_writes_closed_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8395 | |
| 8396 | else |
| 8397 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8398 | bins/$(CONFIG)/chttp2_socket_pair_cancel_after_accept_and_writes_closed_test: $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8399 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8400 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8401 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_cancel_after_accept_and_writes_closed_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8402 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8403 | endif |
| 8404 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8405 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8406 | deps_chttp2_socket_pair_cancel_after_accept_and_writes_closed_test: $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8407 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8408 | ifneq ($(NO_SECURE),true) |
| 8409 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8410 | -include $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8411 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8412 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8413 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8414 | |
| 8415 | CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_SRC = \ |
| 8416 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8417 | CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8418 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8419 | ifeq ($(NO_SECURE),true) |
| 8420 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8421 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8422 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8423 | bins/$(CONFIG)/chttp2_socket_pair_cancel_after_invoke_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8424 | |
| 8425 | else |
| 8426 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8427 | bins/$(CONFIG)/chttp2_socket_pair_cancel_after_invoke_test: $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8428 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8429 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8430 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_cancel_after_invoke_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8431 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8432 | endif |
| 8433 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8434 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8435 | deps_chttp2_socket_pair_cancel_after_invoke_test: $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8436 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8437 | ifneq ($(NO_SECURE),true) |
| 8438 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8439 | -include $(CHTTP2_SOCKET_PAIR_CANCEL_AFTER_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8440 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8441 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8442 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8443 | |
| 8444 | CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_SRC = \ |
| 8445 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8446 | CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8447 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8448 | ifeq ($(NO_SECURE),true) |
| 8449 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8450 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8451 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8452 | bins/$(CONFIG)/chttp2_socket_pair_cancel_before_invoke_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8453 | |
| 8454 | else |
| 8455 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8456 | bins/$(CONFIG)/chttp2_socket_pair_cancel_before_invoke_test: $(CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8457 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8458 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8459 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_cancel_before_invoke_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8460 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8461 | endif |
| 8462 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8463 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8464 | deps_chttp2_socket_pair_cancel_before_invoke_test: $(CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8465 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8466 | ifneq ($(NO_SECURE),true) |
| 8467 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8468 | -include $(CHTTP2_SOCKET_PAIR_CANCEL_BEFORE_INVOKE_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8469 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8470 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8471 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8472 | |
| 8473 | CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_SRC = \ |
| 8474 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8475 | CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8476 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8477 | ifeq ($(NO_SECURE),true) |
| 8478 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8479 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8480 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8481 | bins/$(CONFIG)/chttp2_socket_pair_cancel_in_a_vacuum_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8482 | |
| 8483 | else |
| 8484 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8485 | bins/$(CONFIG)/chttp2_socket_pair_cancel_in_a_vacuum_test: $(CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8486 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8487 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8488 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_cancel_in_a_vacuum_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8489 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8490 | endif |
| 8491 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8492 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8493 | deps_chttp2_socket_pair_cancel_in_a_vacuum_test: $(CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8494 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8495 | ifneq ($(NO_SECURE),true) |
| 8496 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8497 | -include $(CHTTP2_SOCKET_PAIR_CANCEL_IN_A_VACUUM_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8498 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8499 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8500 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8501 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 8502 | CHTTP2_SOCKET_PAIR_CENSUS_SIMPLE_REQUEST_TEST_SRC = \ |
| 8503 | |
| 8504 | CHTTP2_SOCKET_PAIR_CENSUS_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_CENSUS_SIMPLE_REQUEST_TEST_SRC)))) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 8505 | |
| 8506 | ifeq ($(NO_SECURE),true) |
| 8507 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8508 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8509 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 8510 | bins/$(CONFIG)/chttp2_socket_pair_census_simple_request_test: openssl_dep_error |
| 8511 | |
| 8512 | else |
| 8513 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8514 | bins/$(CONFIG)/chttp2_socket_pair_census_simple_request_test: $(CHTTP2_SOCKET_PAIR_CENSUS_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_census_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 8515 | $(E) "[LD] Linking $@" |
| 8516 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8517 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_CENSUS_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_census_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_census_simple_request_test |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 8518 | |
| 8519 | endif |
| 8520 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8521 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8522 | deps_chttp2_socket_pair_census_simple_request_test: $(CHTTP2_SOCKET_PAIR_CENSUS_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 8523 | |
| 8524 | ifneq ($(NO_SECURE),true) |
| 8525 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8526 | -include $(CHTTP2_SOCKET_PAIR_CENSUS_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 8527 | endif |
| 8528 | endif |
| 8529 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 8530 | |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 8531 | CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_SRC = \ |
| 8532 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8533 | CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_SRC)))) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 8534 | |
| 8535 | ifeq ($(NO_SECURE),true) |
| 8536 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8537 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8538 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8539 | bins/$(CONFIG)/chttp2_socket_pair_disappearing_server_test: openssl_dep_error |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 8540 | |
| 8541 | else |
| 8542 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8543 | bins/$(CONFIG)/chttp2_socket_pair_disappearing_server_test: $(CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_disappearing_server.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 8544 | $(E) "[LD] Linking $@" |
| 8545 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8546 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_disappearing_server.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_disappearing_server_test |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 8547 | |
| 8548 | endif |
| 8549 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8550 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8551 | deps_chttp2_socket_pair_disappearing_server_test: $(CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_OBJS:.o=.dep) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 8552 | |
| 8553 | ifneq ($(NO_SECURE),true) |
| 8554 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8555 | -include $(CHTTP2_SOCKET_PAIR_DISAPPEARING_SERVER_TEST_OBJS:.o=.dep) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 8556 | endif |
| 8557 | endif |
| 8558 | |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 8559 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8560 | CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC = \ |
| 8561 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8562 | CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8563 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8564 | ifeq ($(NO_SECURE),true) |
| 8565 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8566 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8567 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8568 | bins/$(CONFIG)/chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8569 | |
| 8570 | else |
| 8571 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8572 | bins/$(CONFIG)/chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8573 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8574 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8575 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8576 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8577 | endif |
| 8578 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8579 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8580 | deps_chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test: $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8581 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8582 | ifneq ($(NO_SECURE),true) |
| 8583 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8584 | -include $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8585 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8586 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8587 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8588 | |
| 8589 | CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC = \ |
| 8590 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8591 | CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8592 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8593 | ifeq ($(NO_SECURE),true) |
| 8594 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8595 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8596 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8597 | bins/$(CONFIG)/chttp2_socket_pair_early_server_shutdown_finishes_tags_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8598 | |
| 8599 | else |
| 8600 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8601 | bins/$(CONFIG)/chttp2_socket_pair_early_server_shutdown_finishes_tags_test: $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8602 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8603 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8604 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_early_server_shutdown_finishes_tags_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8605 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8606 | endif |
| 8607 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8608 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8609 | deps_chttp2_socket_pair_early_server_shutdown_finishes_tags_test: $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8610 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8611 | ifneq ($(NO_SECURE),true) |
| 8612 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8613 | -include $(CHTTP2_SOCKET_PAIR_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8614 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8615 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8616 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8617 | |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 8618 | CHTTP2_SOCKET_PAIR_GRACEFUL_SERVER_SHUTDOWN_TEST_SRC = \ |
| 8619 | |
| 8620 | CHTTP2_SOCKET_PAIR_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_GRACEFUL_SERVER_SHUTDOWN_TEST_SRC)))) |
| 8621 | |
| 8622 | ifeq ($(NO_SECURE),true) |
| 8623 | |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 8624 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8625 | |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 8626 | bins/$(CONFIG)/chttp2_socket_pair_graceful_server_shutdown_test: openssl_dep_error |
| 8627 | |
| 8628 | else |
| 8629 | |
| 8630 | bins/$(CONFIG)/chttp2_socket_pair_graceful_server_shutdown_test: $(CHTTP2_SOCKET_PAIR_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 8631 | $(E) "[LD] Linking $@" |
| 8632 | $(Q) mkdir -p `dirname $@` |
| 8633 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_graceful_server_shutdown_test |
| 8634 | |
| 8635 | endif |
| 8636 | |
| 8637 | |
| 8638 | deps_chttp2_socket_pair_graceful_server_shutdown_test: $(CHTTP2_SOCKET_PAIR_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS:.o=.dep) |
| 8639 | |
| 8640 | ifneq ($(NO_SECURE),true) |
| 8641 | ifneq ($(NO_DEPS),true) |
| 8642 | -include $(CHTTP2_SOCKET_PAIR_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS:.o=.dep) |
| 8643 | endif |
| 8644 | endif |
| 8645 | |
| 8646 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8647 | CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_SRC = \ |
| 8648 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8649 | CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8650 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8651 | ifeq ($(NO_SECURE),true) |
| 8652 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8653 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8654 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8655 | bins/$(CONFIG)/chttp2_socket_pair_invoke_large_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8656 | |
| 8657 | else |
| 8658 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8659 | bins/$(CONFIG)/chttp2_socket_pair_invoke_large_request_test: $(CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_invoke_large_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8660 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8661 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8662 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_invoke_large_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_invoke_large_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8663 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8664 | endif |
| 8665 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8666 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8667 | deps_chttp2_socket_pair_invoke_large_request_test: $(CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8668 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8669 | ifneq ($(NO_SECURE),true) |
| 8670 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8671 | -include $(CHTTP2_SOCKET_PAIR_INVOKE_LARGE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8672 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8673 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8674 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8675 | |
| 8676 | CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_SRC = \ |
| 8677 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8678 | CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8679 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8680 | ifeq ($(NO_SECURE),true) |
| 8681 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8682 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8683 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8684 | bins/$(CONFIG)/chttp2_socket_pair_max_concurrent_streams_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8685 | |
| 8686 | else |
| 8687 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8688 | bins/$(CONFIG)/chttp2_socket_pair_max_concurrent_streams_test: $(CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8689 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8690 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8691 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_max_concurrent_streams_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8692 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8693 | endif |
| 8694 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8695 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8696 | deps_chttp2_socket_pair_max_concurrent_streams_test: $(CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8697 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8698 | ifneq ($(NO_SECURE),true) |
| 8699 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8700 | -include $(CHTTP2_SOCKET_PAIR_MAX_CONCURRENT_STREAMS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8701 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8702 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8703 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8704 | |
| 8705 | CHTTP2_SOCKET_PAIR_NO_OP_TEST_SRC = \ |
| 8706 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8707 | CHTTP2_SOCKET_PAIR_NO_OP_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_NO_OP_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8708 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8709 | ifeq ($(NO_SECURE),true) |
| 8710 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8711 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8712 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8713 | bins/$(CONFIG)/chttp2_socket_pair_no_op_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8714 | |
| 8715 | else |
| 8716 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8717 | bins/$(CONFIG)/chttp2_socket_pair_no_op_test: $(CHTTP2_SOCKET_PAIR_NO_OP_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_no_op.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8718 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8719 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8720 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_NO_OP_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_no_op.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_no_op_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8721 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8722 | endif |
| 8723 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8724 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8725 | deps_chttp2_socket_pair_no_op_test: $(CHTTP2_SOCKET_PAIR_NO_OP_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8726 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8727 | ifneq ($(NO_SECURE),true) |
| 8728 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8729 | -include $(CHTTP2_SOCKET_PAIR_NO_OP_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8730 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8731 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8732 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8733 | |
| 8734 | CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_SRC = \ |
| 8735 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8736 | CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8737 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8738 | ifeq ($(NO_SECURE),true) |
| 8739 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8740 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8741 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8742 | bins/$(CONFIG)/chttp2_socket_pair_ping_pong_streaming_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8743 | |
| 8744 | else |
| 8745 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8746 | bins/$(CONFIG)/chttp2_socket_pair_ping_pong_streaming_test: $(CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8747 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8748 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8749 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_ping_pong_streaming_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8750 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8751 | endif |
| 8752 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8753 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8754 | deps_chttp2_socket_pair_ping_pong_streaming_test: $(CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8755 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8756 | ifneq ($(NO_SECURE),true) |
| 8757 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8758 | -include $(CHTTP2_SOCKET_PAIR_PING_PONG_STREAMING_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8759 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8760 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8761 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8762 | |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8763 | CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 8764 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8765 | CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC)))) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8766 | |
| 8767 | ifeq ($(NO_SECURE),true) |
| 8768 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8769 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8770 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8771 | bins/$(CONFIG)/chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test: openssl_dep_error |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8772 | |
| 8773 | else |
| 8774 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8775 | bins/$(CONFIG)/chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8776 | $(E) "[LD] Linking $@" |
| 8777 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8778 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8779 | |
| 8780 | endif |
| 8781 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8782 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8783 | deps_chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8784 | |
| 8785 | ifneq ($(NO_SECURE),true) |
| 8786 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8787 | -include $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8788 | endif |
| 8789 | endif |
| 8790 | |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 8791 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8792 | CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 8793 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8794 | CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8795 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8796 | ifeq ($(NO_SECURE),true) |
| 8797 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8798 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8799 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8800 | bins/$(CONFIG)/chttp2_socket_pair_request_response_with_metadata_and_payload_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8801 | |
| 8802 | else |
| 8803 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8804 | bins/$(CONFIG)/chttp2_socket_pair_request_response_with_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8805 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8806 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8807 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_request_response_with_metadata_and_payload_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8808 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8809 | endif |
| 8810 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8811 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8812 | deps_chttp2_socket_pair_request_response_with_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8813 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8814 | ifneq ($(NO_SECURE),true) |
| 8815 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8816 | -include $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8817 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8818 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8819 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8820 | |
| 8821 | CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC = \ |
| 8822 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8823 | CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8824 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8825 | ifeq ($(NO_SECURE),true) |
| 8826 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8827 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8828 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8829 | bins/$(CONFIG)/chttp2_socket_pair_request_response_with_payload_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8830 | |
| 8831 | else |
| 8832 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8833 | bins/$(CONFIG)/chttp2_socket_pair_request_response_with_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_request_response_with_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8834 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8835 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8836 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_request_response_with_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_request_response_with_payload_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8837 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8838 | endif |
| 8839 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8840 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8841 | deps_chttp2_socket_pair_request_response_with_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8842 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8843 | ifneq ($(NO_SECURE),true) |
| 8844 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8845 | -include $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8846 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8847 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8848 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8849 | |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8850 | CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 8851 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8852 | CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC)))) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8853 | |
| 8854 | ifeq ($(NO_SECURE),true) |
| 8855 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8856 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8857 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8858 | bins/$(CONFIG)/chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test: openssl_dep_error |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8859 | |
| 8860 | else |
| 8861 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8862 | bins/$(CONFIG)/chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8863 | $(E) "[LD] Linking $@" |
| 8864 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8865 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8866 | |
| 8867 | endif |
| 8868 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8869 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8870 | deps_chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test: $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8871 | |
| 8872 | ifneq ($(NO_SECURE),true) |
| 8873 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8874 | -include $(CHTTP2_SOCKET_PAIR_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8875 | endif |
| 8876 | endif |
| 8877 | |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 8878 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8879 | CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_SRC = \ |
| 8880 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8881 | CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8882 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8883 | ifeq ($(NO_SECURE),true) |
| 8884 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8885 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8886 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8887 | bins/$(CONFIG)/chttp2_socket_pair_simple_delayed_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8888 | |
| 8889 | else |
| 8890 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8891 | bins/$(CONFIG)/chttp2_socket_pair_simple_delayed_request_test: $(CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_simple_delayed_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8892 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8893 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8894 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_simple_delayed_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_simple_delayed_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8895 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8896 | endif |
| 8897 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8898 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8899 | deps_chttp2_socket_pair_simple_delayed_request_test: $(CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8900 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8901 | ifneq ($(NO_SECURE),true) |
| 8902 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8903 | -include $(CHTTP2_SOCKET_PAIR_SIMPLE_DELAYED_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8904 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8905 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8906 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8907 | |
| 8908 | CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_SRC = \ |
| 8909 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8910 | CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8911 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8912 | ifeq ($(NO_SECURE),true) |
| 8913 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8914 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8915 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8916 | bins/$(CONFIG)/chttp2_socket_pair_simple_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8917 | |
| 8918 | else |
| 8919 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8920 | bins/$(CONFIG)/chttp2_socket_pair_simple_request_test: $(CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8921 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8922 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8923 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_simple_request_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8924 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8925 | endif |
| 8926 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8927 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8928 | deps_chttp2_socket_pair_simple_request_test: $(CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8929 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8930 | ifneq ($(NO_SECURE),true) |
| 8931 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8932 | -include $(CHTTP2_SOCKET_PAIR_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8933 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8934 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8935 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8936 | |
nathaniel | 5287817 | 2014-12-09 10:17:19 -0800 | [diff] [blame] | 8937 | CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_SRC = \ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8938 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8939 | CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8940 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8941 | ifeq ($(NO_SECURE),true) |
| 8942 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8943 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8944 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8945 | bins/$(CONFIG)/chttp2_socket_pair_thread_stress_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8946 | |
| 8947 | else |
| 8948 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8949 | bins/$(CONFIG)/chttp2_socket_pair_thread_stress_test: $(CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_thread_stress.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8950 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8951 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8952 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_thread_stress.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_thread_stress_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8953 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8954 | endif |
| 8955 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8956 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8957 | deps_chttp2_socket_pair_thread_stress_test: $(CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8958 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8959 | ifneq ($(NO_SECURE),true) |
| 8960 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8961 | -include $(CHTTP2_SOCKET_PAIR_THREAD_STRESS_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8962 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8963 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8964 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8965 | |
| 8966 | CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC = \ |
| 8967 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8968 | CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8969 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8970 | ifeq ($(NO_SECURE),true) |
| 8971 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 8972 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 8973 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8974 | bins/$(CONFIG)/chttp2_socket_pair_writes_done_hangs_with_pending_read_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8975 | |
| 8976 | else |
| 8977 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8978 | bins/$(CONFIG)/chttp2_socket_pair_writes_done_hangs_with_pending_read_test: $(CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8979 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 8980 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 8981 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair.a libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_writes_done_hangs_with_pending_read_test |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8982 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8983 | endif |
| 8984 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 8985 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8986 | deps_chttp2_socket_pair_writes_done_hangs_with_pending_read_test: $(CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8987 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8988 | ifneq ($(NO_SECURE),true) |
| 8989 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 8990 | -include $(CHTTP2_SOCKET_PAIR_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS:.o=.dep) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8991 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8992 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8993 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 8994 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 8995 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_SRC = \ |
| 8996 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 8997 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 8998 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 8999 | ifeq ($(NO_SECURE),true) |
| 9000 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9001 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9002 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9003 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9004 | |
| 9005 | else |
| 9006 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9007 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_cancel_after_accept.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9008 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9009 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9010 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_cancel_after_accept.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9011 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9012 | endif |
| 9013 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9014 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9015 | deps_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:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9016 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9017 | ifneq ($(NO_SECURE),true) |
| 9018 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9019 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9020 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9021 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9022 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9023 | |
| 9024 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC = \ |
| 9025 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9026 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9027 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9028 | ifeq ($(NO_SECURE),true) |
| 9029 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9030 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9031 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9032 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9033 | |
| 9034 | else |
| 9035 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9036 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9037 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9038 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9039 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_cancel_after_accept_and_writes_closed.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9040 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9041 | endif |
| 9042 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9043 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9044 | deps_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:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9045 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9046 | ifneq ($(NO_SECURE),true) |
| 9047 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9048 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9049 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9050 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9051 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9052 | |
| 9053 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_SRC = \ |
| 9054 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9055 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9056 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9057 | ifeq ($(NO_SECURE),true) |
| 9058 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9059 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9060 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9061 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9062 | |
| 9063 | else |
| 9064 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9065 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9066 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9067 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9068 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_cancel_after_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9069 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9070 | endif |
| 9071 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9072 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9073 | deps_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:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9074 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9075 | ifneq ($(NO_SECURE),true) |
| 9076 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9077 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_AFTER_INVOKE_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9078 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9079 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9080 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9081 | |
| 9082 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_SRC = \ |
| 9083 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9084 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9085 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9086 | ifeq ($(NO_SECURE),true) |
| 9087 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9088 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9089 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9090 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9091 | |
| 9092 | else |
| 9093 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9094 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9095 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9096 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9097 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_cancel_before_invoke.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9098 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9099 | endif |
| 9100 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9101 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9102 | deps_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:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9103 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9104 | ifneq ($(NO_SECURE),true) |
| 9105 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9106 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_BEFORE_INVOKE_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9107 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9108 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9109 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9110 | |
| 9111 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_SRC = \ |
| 9112 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9113 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9114 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9115 | ifeq ($(NO_SECURE),true) |
| 9116 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9117 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9118 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9119 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9120 | |
| 9121 | else |
| 9122 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9123 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9124 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9125 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9126 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_cancel_in_a_vacuum.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9127 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9128 | endif |
| 9129 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9130 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9131 | deps_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:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9132 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9133 | ifneq ($(NO_SECURE),true) |
| 9134 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9135 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CANCEL_IN_A_VACUUM_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9136 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9137 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9138 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9139 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 9140 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CENSUS_SIMPLE_REQUEST_TEST_SRC = \ |
| 9141 | |
| 9142 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CENSUS_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CENSUS_SIMPLE_REQUEST_TEST_SRC)))) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 9143 | |
| 9144 | ifeq ($(NO_SECURE),true) |
| 9145 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9146 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9147 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 9148 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_census_simple_request_test: openssl_dep_error |
| 9149 | |
| 9150 | else |
| 9151 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9152 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_census_simple_request_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CENSUS_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_census_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 9153 | $(E) "[LD] Linking $@" |
| 9154 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9155 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CENSUS_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_census_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_census_simple_request_test |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 9156 | |
| 9157 | endif |
| 9158 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9159 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9160 | deps_chttp2_socket_pair_one_byte_at_a_time_census_simple_request_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CENSUS_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 9161 | |
| 9162 | ifneq ($(NO_SECURE),true) |
| 9163 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9164 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_CENSUS_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 9165 | endif |
| 9166 | endif |
| 9167 | |
hongyu | 24200d3 | 2015-01-08 15:13:49 -0800 | [diff] [blame] | 9168 | |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 9169 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_SRC = \ |
| 9170 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9171 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_SRC)))) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 9172 | |
| 9173 | ifeq ($(NO_SECURE),true) |
| 9174 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9175 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9176 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9177 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test: openssl_dep_error |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 9178 | |
| 9179 | else |
| 9180 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9181 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_disappearing_server.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 9182 | $(E) "[LD] Linking $@" |
| 9183 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9184 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_disappearing_server.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 9185 | |
| 9186 | endif |
| 9187 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9188 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9189 | deps_chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_OBJS:.o=.dep) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 9190 | |
| 9191 | ifneq ($(NO_SECURE),true) |
| 9192 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9193 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_DISAPPEARING_SERVER_TEST_OBJS:.o=.dep) |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 9194 | endif |
| 9195 | endif |
| 9196 | |
ctiller | c6d61c4 | 2014-12-15 14:52:08 -0800 | [diff] [blame] | 9197 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9198 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC = \ |
| 9199 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9200 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9201 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9202 | ifeq ($(NO_SECURE),true) |
| 9203 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9204 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9205 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9206 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9207 | |
| 9208 | else |
| 9209 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9210 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9211 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9212 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9213 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_inflight_calls.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9214 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9215 | endif |
| 9216 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9217 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9218 | deps_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:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9219 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9220 | ifneq ($(NO_SECURE),true) |
| 9221 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9222 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9223 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9224 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9225 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9226 | |
| 9227 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC = \ |
| 9228 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9229 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9230 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9231 | ifeq ($(NO_SECURE),true) |
| 9232 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9233 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9234 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9235 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9236 | |
| 9237 | else |
| 9238 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9239 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9240 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9241 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9242 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_early_server_shutdown_finishes_tags.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9243 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9244 | endif |
| 9245 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9246 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9247 | deps_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:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9248 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9249 | ifneq ($(NO_SECURE),true) |
| 9250 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9251 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9252 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9253 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9254 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9255 | |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 9256 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_GRACEFUL_SERVER_SHUTDOWN_TEST_SRC = \ |
| 9257 | |
| 9258 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_GRACEFUL_SERVER_SHUTDOWN_TEST_SRC)))) |
| 9259 | |
| 9260 | ifeq ($(NO_SECURE),true) |
| 9261 | |
David Klempner | 7f3ed1e | 2015-01-16 15:35:56 -0800 | [diff] [blame] | 9262 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9263 | |
Craig Tiller | 4ffdcd5 | 2015-01-16 11:34:55 -0800 | [diff] [blame] | 9264 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_test: openssl_dep_error |
| 9265 | |
| 9266 | else |
| 9267 | |
| 9268 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
| 9269 | $(E) "[LD] Linking $@" |
| 9270 | $(Q) mkdir -p `dirname $@` |
| 9271 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_graceful_server_shutdown.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_test |
| 9272 | |
| 9273 | endif |
| 9274 | |
| 9275 | |
| 9276 | deps_chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS:.o=.dep) |
| 9277 | |
| 9278 | ifneq ($(NO_SECURE),true) |
| 9279 | ifneq ($(NO_DEPS),true) |
| 9280 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_GRACEFUL_SERVER_SHUTDOWN_TEST_OBJS:.o=.dep) |
| 9281 | endif |
| 9282 | endif |
| 9283 | |
| 9284 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9285 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_SRC = \ |
| 9286 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9287 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9288 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9289 | ifeq ($(NO_SECURE),true) |
| 9290 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9291 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9292 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9293 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9294 | |
| 9295 | else |
| 9296 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9297 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_invoke_large_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9298 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9299 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9300 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_invoke_large_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9301 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9302 | endif |
| 9303 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9304 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9305 | deps_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:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9306 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9307 | ifneq ($(NO_SECURE),true) |
| 9308 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9309 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_INVOKE_LARGE_REQUEST_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9310 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9311 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9312 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9313 | |
| 9314 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_SRC = \ |
| 9315 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9316 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9317 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9318 | ifeq ($(NO_SECURE),true) |
| 9319 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9320 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9321 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9322 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9323 | |
| 9324 | else |
| 9325 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9326 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9327 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9328 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9329 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_max_concurrent_streams.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9330 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9331 | endif |
| 9332 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9333 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9334 | deps_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:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9335 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9336 | ifneq ($(NO_SECURE),true) |
| 9337 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9338 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_MAX_CONCURRENT_STREAMS_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9339 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9340 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9341 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9342 | |
| 9343 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_SRC = \ |
| 9344 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9345 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9346 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9347 | ifeq ($(NO_SECURE),true) |
| 9348 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9349 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9350 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9351 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_no_op_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9352 | |
| 9353 | else |
| 9354 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9355 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_no_op_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_no_op.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9356 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9357 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9358 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_no_op.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_no_op_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9359 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9360 | endif |
| 9361 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9362 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9363 | deps_chttp2_socket_pair_one_byte_at_a_time_no_op_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9364 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9365 | ifneq ($(NO_SECURE),true) |
| 9366 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9367 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_NO_OP_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9368 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9369 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9370 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9371 | |
| 9372 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_SRC = \ |
| 9373 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9374 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9375 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9376 | ifeq ($(NO_SECURE),true) |
| 9377 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9378 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9379 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9380 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9381 | |
| 9382 | else |
| 9383 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9384 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9385 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9386 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9387 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_ping_pong_streaming.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9388 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9389 | endif |
| 9390 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9391 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9392 | deps_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:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9393 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9394 | ifneq ($(NO_SECURE),true) |
| 9395 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9396 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_PING_PONG_STREAMING_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9397 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9398 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9399 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9400 | |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 9401 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 9402 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9403 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_SRC)))) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 9404 | |
| 9405 | ifeq ($(NO_SECURE),true) |
| 9406 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9407 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9408 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9409 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test: openssl_dep_error |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 9410 | |
| 9411 | else |
| 9412 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9413 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 9414 | $(E) "[LD] Linking $@" |
| 9415 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9416 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_request_response_with_binary_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 9417 | |
| 9418 | endif |
| 9419 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9420 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9421 | deps_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:.o=.dep) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 9422 | |
| 9423 | ifneq ($(NO_SECURE),true) |
| 9424 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9425 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 9426 | endif |
| 9427 | endif |
| 9428 | |
ctiller | 33023c4 | 2014-12-12 16:28:33 -0800 | [diff] [blame] | 9429 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9430 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 9431 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9432 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9433 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9434 | ifeq ($(NO_SECURE),true) |
| 9435 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9436 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9437 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9438 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9439 | |
| 9440 | else |
| 9441 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9442 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9443 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9444 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9445 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_request_response_with_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9446 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9447 | endif |
| 9448 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9449 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9450 | deps_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:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9451 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9452 | ifneq ($(NO_SECURE),true) |
| 9453 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9454 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9455 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9456 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9457 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9458 | |
| 9459 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC = \ |
| 9460 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9461 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9462 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9463 | ifeq ($(NO_SECURE),true) |
| 9464 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9465 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9466 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9467 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9468 | |
| 9469 | else |
| 9470 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9471 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_request_response_with_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9472 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9473 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9474 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_request_response_with_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9475 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9476 | endif |
| 9477 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9478 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9479 | deps_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:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9480 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9481 | ifneq ($(NO_SECURE),true) |
| 9482 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9483 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_PAYLOAD_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9484 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9485 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9486 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9487 | |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 9488 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC = \ |
| 9489 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9490 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_SRC)))) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 9491 | |
| 9492 | ifeq ($(NO_SECURE),true) |
| 9493 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9494 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9495 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9496 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test: openssl_dep_error |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 9497 | |
| 9498 | else |
| 9499 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9500 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 9501 | $(E) "[LD] Linking $@" |
| 9502 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9503 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_request_response_with_trailing_metadata_and_payload.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 9504 | |
| 9505 | endif |
| 9506 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9507 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9508 | deps_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:.o=.dep) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 9509 | |
| 9510 | ifneq ($(NO_SECURE),true) |
| 9511 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9512 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_TEST_OBJS:.o=.dep) |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 9513 | endif |
| 9514 | endif |
| 9515 | |
ctiller | 2845cad | 2014-12-15 15:14:12 -0800 | [diff] [blame] | 9516 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9517 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_SRC = \ |
| 9518 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9519 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9520 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9521 | ifeq ($(NO_SECURE),true) |
| 9522 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9523 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9524 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9525 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9526 | |
| 9527 | else |
| 9528 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9529 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_simple_delayed_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9530 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9531 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9532 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_simple_delayed_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9533 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9534 | endif |
| 9535 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9536 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9537 | deps_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:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9538 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9539 | ifneq ($(NO_SECURE),true) |
| 9540 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9541 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_DELAYED_REQUEST_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9542 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9543 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9544 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9545 | |
| 9546 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_SRC = \ |
| 9547 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9548 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9549 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9550 | ifeq ($(NO_SECURE),true) |
| 9551 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9552 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9553 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9554 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_simple_request_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9555 | |
| 9556 | else |
| 9557 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9558 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_simple_request_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9559 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9560 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9561 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_simple_request.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_simple_request_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9562 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9563 | endif |
| 9564 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9565 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9566 | deps_chttp2_socket_pair_one_byte_at_a_time_simple_request_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9567 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9568 | ifneq ($(NO_SECURE),true) |
| 9569 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9570 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SIMPLE_REQUEST_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9571 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9572 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9573 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9574 | |
nathaniel | 5287817 | 2014-12-09 10:17:19 -0800 | [diff] [blame] | 9575 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_SRC = \ |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9576 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9577 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9578 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9579 | ifeq ($(NO_SECURE),true) |
| 9580 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9581 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9582 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9583 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_thread_stress_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9584 | |
| 9585 | else |
| 9586 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9587 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_thread_stress_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_thread_stress.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9588 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9589 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9590 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_thread_stress.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_thread_stress_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9591 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9592 | endif |
| 9593 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9594 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9595 | deps_chttp2_socket_pair_one_byte_at_a_time_thread_stress_test: $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9596 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9597 | ifneq ($(NO_SECURE),true) |
| 9598 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9599 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_THREAD_STRESS_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9600 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9601 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9602 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9603 | |
| 9604 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC = \ |
| 9605 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9606 | CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_SRC)))) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9607 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9608 | ifeq ($(NO_SECURE),true) |
| 9609 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 9610 | # You can't build secure targets if you don't have OpenSSL with ALPN. |
| 9611 | |
ctiller | cab52e7 | 2015-01-06 13:10:23 -0800 | [diff] [blame] | 9612 | bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9613 | |
| 9614 | else |
| 9615 | |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9616 | bins/$(CONFIG)/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/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9617 | $(E) "[LD] Linking $@" |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 9618 | $(Q) mkdir -p `dirname $@` |
nnoble | 5f2ecb3 | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 9619 | $(Q) $(LD) $(LDFLAGS) $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS) libs/$(CONFIG)/libend2end_fixture_chttp2_socket_pair_one_byte_at_a_time.a libs/$(CONFIG)/libend2end_test_writes_done_hangs_with_pending_read.a libs/$(CONFIG)/libend2end_certs.a libs/$(CONFIG)/libgrpc_test_util.a libs/$(CONFIG)/libgrpc.a libs/$(CONFIG)/libgpr_test_util.a libs/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o bins/$(CONFIG)/chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9620 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9621 | endif |
| 9622 | |
Craig Tiller | d4773f5 | 2015-01-12 16:38:47 -0800 | [diff] [blame] | 9623 | |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9624 | deps_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:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9625 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9626 | ifneq ($(NO_SECURE),true) |
| 9627 | ifneq ($(NO_DEPS),true) |
Craig Tiller | 8f126a6 | 2015-01-15 08:50:19 -0800 | [diff] [blame] | 9628 | -include $(CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_WRITES_DONE_HANGS_WITH_PENDING_READ_TEST_OBJS:.o=.dep) |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9629 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 9630 | endif |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9631 | |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 9632 | |
| 9633 | |
| 9634 | |
| 9635 | |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9636 | |
Craig Tiller | f0afe50 | 2015-01-15 09:04:49 -0800 | [diff] [blame] | 9637 | .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 dep_c dep_cxx bins_dep_c bins_dep_cxx clean |
nnoble | 0c475f0 | 2014-12-05 15:37:39 -0800 | [diff] [blame] | 9638 | |