Add AGSA as a local benchmark in perf.py

Change-Id: Ib109dd3851441db9e5c9e5423d0fffb5d8e1387b
diff --git a/tools/perf.py b/tools/perf.py
index 36e6cfc..8d05c34 100755
--- a/tools/perf.py
+++ b/tools/perf.py
@@ -110,7 +110,14 @@
 }
 # A collection of benchmarks that should not be run on the bots, but can be used
 # for running locally.
-LOCAL_BENCHMARKS = {'SystemUIAppTreeShaking': {'targets': ['r8-full']}}
+LOCAL_BENCHMARKS = {
+    'AGSA': {
+        'targets': ['r8-full']
+    },
+    'SystemUIAppTreeShaking': {
+        'targets': ['r8-full']
+    },
+}
 ALL_BENCHMARKS = {}
 ALL_BENCHMARKS.update(EXTERNAL_BENCHMARKS)
 ALL_BENCHMARKS.update(INTERNAL_BENCHMARKS)