Skip to content
Snippets Groups Projects
Commit c1385d67 authored by Craig Tiller's avatar Craig Tiller
Browse files

Fix (hackily) fling_stream_test under gyp

parent ee56eb60
No related branches found
No related tags found
No related merge requests found
......@@ -39,3 +39,7 @@ report.xml
# port server log
portlog.txt
# gyp generated make files
*-gyp.mk
out
\ No newline at end of file
......@@ -199,7 +199,9 @@ class GYPCLanguage(object):
return [['gyp', '--depth=.', '--suffix=-gyp', 'grpc.gyp']]
def make_targets(self):
return gyp_test_paths(False)
# HACK(ctiller): force fling_client and fling_server to be built, as fling_test
# needs these
return gyp_test_paths(False) + ['fling_client', 'fling_server']
def build_steps(self):
return []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment