Remove debug_symbols config from release builds

That causes release standalone builds to be build with -O0

Change-Id: Iad8d2df19614bbd33b87aa0906525d7e1c2543d7
TBR=skyostil@google.com
diff --git a/gn/standalone/BUILDCONFIG.gn b/gn/standalone/BUILDCONFIG.gn
index 272eb58..ca37675 100644
--- a/gn/standalone/BUILDCONFIG.gn
+++ b/gn/standalone/BUILDCONFIG.gn
@@ -56,6 +56,7 @@
 ]
 
 if (!is_debug) {
+  default_configs -= [ "//gn/standalone:debug_symbols" ]
   default_configs += [ "//gn/standalone:release" ]
 }