[go] extra_dependencies --> deps

Bug: BLD-62
Test: builds fine
Change-Id: Ie1f9cbe8efdb9d9c05b3dbb4f6893c026da6fad9
diff --git a/config/config_parser/src/BUILD.gn b/config/config_parser/src/BUILD.gn
index 02799ca..da8e0be 100644
--- a/config/config_parser/src/BUILD.gn
+++ b/config/config_parser/src/BUILD.gn
@@ -31,7 +31,7 @@
   gopackage = "main"
   output_name = "config_parser"
 
-  extra_dependencies = [
+  deps = [
     "//garnet/public/go/third_party:github.com/golang/glog",
     "//garnet/public/go/third_party:github.com/golang/protobuf",
     "//garnet/public/go/third_party:github.com/go-yaml/yaml",
@@ -39,7 +39,6 @@
     ":main",
   ]
   foreach(pkg, _source_packages) {
-    extra_dependencies += [ ":$pkg" ]
+    deps += [ ":$pkg" ]
   }
-
 }