Revert "[dev-util] Add symbolicate_dump endpoint to dev server"

This reverts commit 71ea2091e8255b6601bd5a92e0dcf3a61b31471e

Change-Id: Id8cc9116733b39fe39a0358d6e9f409a67d5057d
Reviewed-on: https://gerrit.chromium.org/gerrit/21503
Commit-Ready: Scott Zawalski <scottz@chromium.org>
Reviewed-by: Scott Zawalski <scottz@chromium.org>
Tested-by: Scott Zawalski <scottz@chromium.org>
diff --git a/devserver_util.py b/devserver_util.py
index e40ae7e..eb498f4 100644
--- a/devserver_util.py
+++ b/devserver_util.py
@@ -57,15 +57,12 @@
   return full_payload_url, nton_payload_url, mton_payload_url
 
 
-def GatherArtifactDownloads(main_staging_dir, archive_url, build, build_dir,
-                            static_dir):
+def GatherArtifactDownloads(main_staging_dir, archive_url, build, build_dir):
   """Generates artifacts that we mean to download and install for autotest.
 
   This method generates the list of artifacts we will need for autotest. These
-  artifacts are instances of downloadable_artifact.DownloadableArtifact.
-
-  Note, these artifacts can be downloaded asynchronously iff
-  !artifact.Synchronous().
+  artifacts are instances of downloadable_artifact.DownloadableArtifact.Note,
+  these artifacts can be downloaded asynchronously iff !artifact.Synchronous().
   """
   cmd = 'gsutil ls %s/*.bin' % archive_url
   msg = 'Failed to get a list of payloads.'
@@ -90,7 +87,6 @@
         mton_url, main_staging_dir, mton_payload))
 
   # Next we gather the miscellaneous payloads.
-  debug_url = archive_url + '/' + downloadable_artifact.DEBUG_SYMBOLS
   stateful_url = archive_url + '/' + downloadable_artifact.STATEFUL_UPDATE
   autotest_url = archive_url + '/' + downloadable_artifact.AUTOTEST_PACKAGE
   test_suites_url = (archive_url + '/' +
@@ -99,8 +95,6 @@
   stateful_payload = os.path.join(build_dir,
                                   downloadable_artifact.STATEFUL_UPDATE)
 
-  artifacts.append(downloadable_artifact.DebugTarball(
-      debug_url, main_staging_dir, static_dir))
   artifacts.append(downloadable_artifact.DownloadableArtifact(
       stateful_url, main_staging_dir, stateful_payload, synchronous=True))
   artifacts.append(downloadable_artifact.AutotestTarball(