More gn check fixes
This adds the remaining components as commented-out lines so it's easier to see what remains.
Some of the existing entries were missing the * so only the exact target was being checked, excluding unit test and test_support targets. This patch addresses those problems and adds the stars.
BUG=
Review URL: https://codereview.chromium.org/1422803002
Cr-Commit-Position: refs/heads/master@{#355936}
diff --git a/components/drive/BUILD.gn b/components/drive/BUILD.gn
index 16ba600..e8329209 100644
--- a/components/drive/BUILD.gn
+++ b/components/drive/BUILD.gn
@@ -149,9 +149,10 @@
deps = [
":drive",
":proto",
- "//base:base",
+ "//base",
+ "//base:prefs_test_support",
"//content/test:test_support",
- "//google_apis:google_apis",
+ "//google_apis:test_support",
"//net:net",
]
}