[MIPS] Fix gn gen failure for MIPS in webrtc

Fixes the following failure for mips:
"ERROR at //third_party/webrtc/BUILD.gn:136:7: Undefined variable for +=.
      cflags += [ "-mhard-float" ]
      ^-----
I don't have something with this name in scope now."

BUG=3441
TEST=In Chromium. Passing compile locally on Linux using:
gn gen out-gn/mips --args="is_debug=false os=\"android\" cpu_arch=\"mipsel\"" --verbose &&  ninja -C out-gn/mips all
gn gen out-gn/arm --args="is_debug=false os=\"android\" cpu_arch=\"arm\"" --verbose &&  ninja -C out-gn/arm all
gn gen out-gn/x86-linux --args="is_debug=false os=\"linux\"" --verbose &&  ninja -C out-gn/x86-linux webrtc

R=kjellander@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/15349004

Patch from Gordana Cmiljanovic <Gordana.Cmiljanovic@imgtec.com>.

git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@7063 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/BUILD.gn b/BUILD.gn
index 68f05d1..20290eb 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -70,6 +70,8 @@
 }
 
 config("common_config") {
+  cflags = []
+  cflags_cc = []
   if (restrict_webrtc_logging) {
     defines = [ "WEBRTC_RESTRICT_LOGGING" ]
   }