Refactor R8 perf to allow code reuse

Change-Id: I546f6fcc779f72f1ba0cb8e1a22e8b8749e9bd0f
diff --git a/tools/upload_benchmark_data_to_google_storage.py b/tools/upload_benchmark_data_to_google_storage.py
index f293c2c..07b1fdd 100755
--- a/tools/upload_benchmark_data_to_google_storage.py
+++ b/tools/upload_benchmark_data_to_google_storage.py
@@ -16,7 +16,17 @@
 TARGETS = ['r8-full']
 NUM_COMMITS = 1000
 
-INDEX_HTML = os.path.join(utils.TOOLS_DIR, 'perf/index.html')
+FILES = [
+    'chart.js',
+    'dom.js',
+    'extensions.js',
+    'index.html',
+    'scales.js',
+    'state.js',
+    'stylesheet.css',
+    'url.js',
+    'utils.js'
+]
 
 
 def DownloadCloudBucket(dest):
@@ -94,7 +104,10 @@
         perf.ArchiveOutputFile(benchmark_data_file,
                                'benchmark_data.json',
                                header='Cache-Control:no-store')
-        perf.ArchiveOutputFile(INDEX_HTML, 'index.html')
+        for file in FILES:
+            dest = os.path.join(utils.TOOLS_DIR, 'perf', file)
+            perf.ArchiveOutputFile(dest, file)
+
 
 
 def main():