From 7f7f34f81a37dbb2b07f206d345b38c4f5c9aafe Mon Sep 17 00:00:00 2001 From: Jerome Gaillard Date: Fri, 18 Jan 2019 17:14:08 +0000 Subject: [PATCH] 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 --- cc/config/x86_windows_host.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cc/config/x86_windows_host.go b/cc/config/x86_windows_host.go index dfdd40c8e..0f500b6fb 100644 --- a/cc/config/x86_windows_host.go +++ b/cc/config/x86_windows_host.go @@ -100,7 +100,9 @@ var ( "imagehlp", "iphlpapi", "netapi32", + "oleaut32", "ole32", + "opengl32", "powrprof", "psapi", "pthread", @@ -108,6 +110,7 @@ var ( "uuid", "version", "ws2_32", + "windowscodecs", }, "-l") )