Use local dashboard for test uploads in perf_data_uploader.py

perf_data_uploader.py can upload perf data to the staging instance of
performance dashboard for testing / debugging. Unfortunately, the
staging instance is no longer available, instead, developers are advised
to use locally running instances of the performance dashboard.

This patch updates `perf_data_uploader.py` to use locally running
instance for test uploads and documents how such instance can be
obtained.

R=etiennej@chromium.org

Review URL: https://codereview.chromium.org/1420913002 .
diff --git a/mojo/tools/mopy/perf_data_uploader.py b/mojo/tools/mopy/perf_data_uploader.py
index 84e5280..248a316 100755
--- a/mojo/tools/mopy/perf_data_uploader.py
+++ b/mojo/tools/mopy/perf_data_uploader.py
@@ -3,7 +3,12 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-"""A tool that uploads data to the performance dashboard."""
+"""A tool that uploads data to the performance dashboard.
+
+By default the script uploads to a local testing dashboard assumed to be running
+on the host. To run such server, check out Catapult and follow instructions at
+https://github.com/catapult-project/catapult/blob/master/dashboard/README.md .
+"""
 
 import argparse
 import httplib
@@ -28,7 +33,7 @@
                         \s*$"""
 
 _PRODUCTION_SERVER = "https://chromeperf.appspot.com"
-_TESTING_SERVER = "https://chrome-perf.googleplex.com"
+_TESTING_SERVER = "http://127.0.0.1:8080"
 
 
 def UploadPerfData(master_name, perf_id, test_name, builder_name, build_number,