Disable failing perf test on Android.

A decision was recently made to limit downscaling to 320x180 on
Android. This causes the perf tests to fail. This test is no
longer valid on android, as the failure is expected behaviour.

BUG=None
NOTRY=true
TBR=phoglund@webrtc.org

Review-Url: https://codereview.webrtc.org/2563913003
Cr-Original-Commit-Position: refs/heads/master@{#15510}
Cr-Mirrored-From: https://chromium.googlesource.com/external/webrtc
Cr-Mirrored-Commit: ca87b62edec768315d8a99e2b9acfd713db5c58d
diff --git a/call/call_perf_tests.cc b/call/call_perf_tests.cc
index 36fc64f..e03c26d 100644
--- a/call/call_perf_tests.cc
+++ b/call/call_perf_tests.cc
@@ -471,7 +471,12 @@
   const int kRunTimeMs = 20000;
   TestCaptureNtpTime(net_config, kThresholdMs, kStartTimeMs, kRunTimeMs);
 }
-
+#if defined(WEBRTC_ANDROID)
+// This test is disabled on android as it does not update
+// sinkWants below 320x180, the starting resolution for these
+// tests.
+#define ReceivesCpuOveruseAndUnderuse DISABLED_ReceivesCpuOveruseAndUnderuse
+#endif
 TEST_F(CallPerfTest, ReceivesCpuOveruseAndUnderuse) {
   class LoadObserver : public test::SendTest,
                        public test::FrameGeneratorCapturer::SinkWantsObserver {