Unreviewed build fix after r251018


* PlatformFTW.cmake: Add missing dxgi library.



git-svn-id: http://svn.webkit.org/repository/webkit/trunk@251169 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/ThirdParty/ANGLE/ChangeLog b/Source/ThirdParty/ANGLE/ChangeLog
index bb24cce..42753cc 100644
--- a/Source/ThirdParty/ANGLE/ChangeLog
+++ b/Source/ThirdParty/ANGLE/ChangeLog
@@ -1,3 +1,10 @@
+2019-10-15  Brent Fulgham  <bfulgham@apple.com>
+
+        Unreviewed build fix after r251018
+
+
+        * PlatformFTW.cmake: Add missing dxgi library.
+
 2019-10-12  Stephan Szabo  <stephan.szabo@sony.com>
 
         Regression (251018): Wincairo build broken: unresolved external symbol
diff --git a/Source/ThirdParty/ANGLE/PlatformFTW.cmake b/Source/ThirdParty/ANGLE/PlatformFTW.cmake
index 65dbbc7..7187534 100644
--- a/Source/ThirdParty/ANGLE/PlatformFTW.cmake
+++ b/Source/ThirdParty/ANGLE/PlatformFTW.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})