Changing compilation ordering to fix dependency issue between generated files and their inclusion.

Change on 2014/12/17 by nnoble <nnoble@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=82363995
pull/1/merge
nnoble 10 years ago committed by Nicolas Noble
parent cd0569a16c
commit 4cb93718c7
  1. 2
      Makefile
  2. 4
      build.json

@ -1127,9 +1127,9 @@ clean_libgrpc++:
LIBGRPC++_TEST_UTIL_SRC = \
test/cpp/end2end/async_test_server.cc \
gens/test/cpp/util/echo.pb.cc \
test/cpp/util/test_ssl_channel.cc \
test/cpp/end2end/async_test_server.cc \
LIBGRPC++_TEST_UTIL_OBJS = $(addprefix objs/, $(addsuffix .o, $(basename $(LIBGRPC++_TEST_UTIL_SRC))))

@ -352,9 +352,9 @@
"name": "grpc++_test_util",
"build": "test",
"src": [
"test/cpp/end2end/async_test_server.cc",
"test/cpp/util/echo.proto",
"test/cpp/util/test_ssl_channel.cc"
"test/cpp/util/test_ssl_channel.cc",
"test/cpp/end2end/async_test_server.cc"
],
"c++": true
}

Loading…
Cancel
Save