Add Skia deps to the list of available Windows libraries

Building Skia for Windows requires linking some Windows libraries that
were not in the list of available ones. This adds the necessary
libraries.

Test: N/A
Change-Id: I803b7b05f47163316c6f03866145dc50656a6bef
diff --git a/cc/config/x86_windows_host.go b/cc/config/x86_windows_host.go
index dfdd40c..0f500b6 100644
--- a/cc/config/x86_windows_host.go
+++ b/cc/config/x86_windows_host.go
@@ -100,7 +100,9 @@
 		"imagehlp",
 		"iphlpapi",
 		"netapi32",
+		"oleaut32",
 		"ole32",
+		"opengl32",
 		"powrprof",
 		"psapi",
 		"pthread",
@@ -108,6 +110,7 @@
 		"uuid",
 		"version",
 		"ws2_32",
+		"windowscodecs",
 	}, "-l")
 )