From 440e1d1053302176c5f78051ee3287605fc84159 Mon Sep 17 00:00:00 2001 From: "fischman@webrtc.org" Date: Fri, 23 May 2014 21:40:45 +0000 Subject: [PATCH] vie_autotest_android.cc: stop referring to undefined functions. The roll in r6240 exposed the fact that vie_autotest_android.cc has been depending on vie_autotest_network.cc since forever, even though that file isn't part of the build! #if'ing the references out to green the build. R=niklas.enbom@webrtc.org Review URL: https://webrtc-codereview.appspot.com/17599005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6241 4adac7df-926f-26a2-2b94-8c16560cd09d --- .../test/auto_test/source/vie_autotest_android.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webrtc/video_engine/test/auto_test/source/vie_autotest_android.cc b/webrtc/video_engine/test/auto_test/source/vie_autotest_android.cc index 68357853f9..cc283b041a 100644 --- a/webrtc/video_engine/test/auto_test/source/vie_autotest_android.cc +++ b/webrtc/video_engine/test/auto_test/source/vie_autotest_android.cc @@ -66,9 +66,11 @@ int ViEAutoTestAndroid::RunAutotest(int testSelection, int subTestSelection, vieAutoTest.ViEImageProcessStandardTest(); break; +#if 0 // vie_autotest_network.cc isn't actually pulled into the build at all! case 7: // network vieAutoTest.ViENetworkStandardTest(); break; +#endif case 8: // Render vieAutoTest.ViERenderStandardTest(); @@ -101,9 +103,11 @@ int ViEAutoTestAndroid::RunAutotest(int testSelection, int subTestSelection, vieAutoTest.ViEImageProcessAPITest(); break; +#if 0 // vie_autotest_network.cc isn't actually pulled into the build at all! case 7: // network vieAutoTest.ViENetworkAPITest(); break; +#endif case 8: // Render vieAutoTest.ViERenderAPITest();