SQUAD : adding a new configuration to SQUAD

This patch adds the minimal size configuration to the SQUAD dashboard.
the configuration uses profile small and Minsizerel cmake type.

Signed-off-by: Hugo L'Hostis <hugo.lhostis@arm.com>
Change-Id: I96491fe4c685d4ba9a09894cb1eb02f330ef627d
diff --git a/memory_footprint.py b/memory_footprint.py
index 53644cb..1a24fa2 100644
--- a/memory_footprint.py
+++ b/memory_footprint.py
@@ -119,6 +119,12 @@
             cfg.with_bl2 and cfg.with_ns and
             cfg.profile == "profile_small" and cfg.partition_ps == "OFF"):
                 name_config = "DefaultProfileS"
+        elif (not cfg.psa_api and cfg.isolation_level == "1" and
+            not cfg.test_regression and cfg.test_psa_api == "OFF"      and
+            cfg.cmake_build_type == "Minsizerel" and cfg.with_otp == "off"  and
+            cfg.with_bl2 and cfg.with_ns and
+            cfg.profile == "profile_small" and cfg.partition_ps == "OFF"):
+                name_config = "MinSizeProfileS"
         elif (cfg.psa_api and cfg.isolation_level == "2" and
             not cfg.test_regression and cfg.test_psa_api == "OFF"     and
             cfg.cmake_build_type == "Release" and cfg.with_otp == "off"  and