reformat bazel files to use Google coding standards

Change-Id: I320f0ca7ccb1b2247ccdd9fa58fefca7dad8a16f
diff --git a/drivers/default/BUILD b/drivers/default/BUILD
index faf4933..b609975 100644
--- a/drivers/default/BUILD
+++ b/drivers/default/BUILD
@@ -1,17 +1,17 @@
 COMPILE_DEPS = CORE_DEPS + JACKSON + KRYO + [
-    '@openflowj//jar',
-    '//protocols/openflow/api:onos-protocols-openflow-api',
-    '//core/store/serializers:onos-core-serializers',
+    "@openflowj//jar",
+    "//protocols/openflow/api:onos-protocols-openflow-api",
+    "//core/store/serializers:onos-core-serializers",
 ]
 
 TEST_DEPS = TEST_ADAPTERS + [
-    '//core/api:onos-api-tests',
+    "//core/api:onos-api-tests",
 ]
 
-osgi_jar_with_tests (
-    deps = COMPILE_DEPS,
-    test_deps = TEST_DEPS,
+osgi_jar_with_tests(
     #resources_root = 'src/main/resources',
-    resources = glob(['src/main/resources/**']),
+    resources = glob(["src/main/resources/**"]),
+    test_deps = TEST_DEPS,
     visibility = ["//visibility:public"],
+    deps = COMPILE_DEPS,
 )