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
diff --git a/Makefile b/Makefile
index c2b2a0a..f75e836 100644
--- a/Makefile
+++ b/Makefile
@@ -1127,9 +1127,9 @@
 
 
 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))))
diff --git a/build.json b/build.json
index 1eae808..72c74d9 100644
--- a/build.json
+++ b/build.json
@@ -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
     }