Regression (251018): Wincairo build broken: unresolved external symbol
https://bugs.webkit.org/show_bug.cgi?id=202879

Reviewed by Alex Christensen.

* PlatformWin.cmake: Add dxgi library for CreateDXGIFactory1


git-svn-id: http://svn.webkit.org/repository/webkit/trunk@251056 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/ThirdParty/ANGLE/ChangeLog b/Source/ThirdParty/ANGLE/ChangeLog
index 2f09d84..bb24cce 100644
--- a/Source/ThirdParty/ANGLE/ChangeLog
+++ b/Source/ThirdParty/ANGLE/ChangeLog
@@ -1,3 +1,12 @@
+2019-10-12  Stephan Szabo  <stephan.szabo@sony.com>
+
+        Regression (251018): Wincairo build broken: unresolved external symbol
+        https://bugs.webkit.org/show_bug.cgi?id=202879
+
+        Reviewed by Alex Christensen.
+
+        * PlatformWin.cmake: Add dxgi library for CreateDXGIFactory1
+
 2019-10-11  Kenneth Russell  <kbr@chromium.org>
 
         USE_ANGLE=1 build broken with last ANGLE roll
diff --git a/Source/ThirdParty/ANGLE/PlatformWin.cmake b/Source/ThirdParty/ANGLE/PlatformWin.cmake
index 65dbbc7..7187534 100644
--- a/Source/ThirdParty/ANGLE/PlatformWin.cmake
+++ b/Source/ThirdParty/ANGLE/PlatformWin.cmake
@@ -23,7 +23,7 @@
         ANGLE_ENABLE_D3D11
     )
 
-    list(APPEND ANGLEGLESv2_LIBRARIES dxguid)
+    list(APPEND ANGLEGLESv2_LIBRARIES dxguid dxgi)
 
     # DirectX 9 support should be optional but ANGLE will not compile without it
     list(APPEND ANGLE_SOURCES ${libangle_d3d9_sources})