Title: [226002] trunk
Revision
226002
Author
commit-qu...@webkit.org
Date
2017-12-16 10:33:31 -0800 (Sat, 16 Dec 2017)

Log Message

[WinCairo] Move the destination of WinCairoRequirements.zip into WebKitLibraries and register it and related files as git ignore files.
https://bugs.webkit.org/show_bug.cgi?id=180875

Patch by Basuke Suzuki <basuke.suz...@sony.com> on 2017-12-16
Reviewed by Alex Christensen.

.:

Add files extracted from WinCairoRequirements.zip
* .gitignore:

Tools:

Bug fix. Specify the download destination correctly.

* Scripts/update-webkit-wincairo-libs.py:

Modified Paths

Diff

Modified: trunk/.gitignore (226001 => 226002)


--- trunk/.gitignore	2017-12-16 18:31:42 UTC (rev 226001)
+++ trunk/.gitignore	2017-12-16 18:33:31 UTC (rev 226002)
@@ -99,6 +99,13 @@
 /WebKitLibraries/win/lib*/pthreadVC2.lib
 /WebKitLibraries/win/lib*/zdll.lib
 
+# Ignore files installed by WinCairoRequirements
+/WebKitLibraries/win/WinCairoRequirements.zip
+/WebKitLibraries/win/WinCairoRequirements.zip.version
+/WebKitLibraries/win/etc/ssl/
+/WebKitLibraries/win/include/
+/WebKitLibraries/win/tools/
+
 # Ignore files generated by Qt Creator:
 *.pro.user
 

Modified: trunk/ChangeLog (226001 => 226002)


--- trunk/ChangeLog	2017-12-16 18:31:42 UTC (rev 226001)
+++ trunk/ChangeLog	2017-12-16 18:33:31 UTC (rev 226002)
@@ -1,3 +1,13 @@
+2017-12-16  Basuke Suzuki  <basuke.suz...@sony.com>
+
+        [WinCairo] Move the destination of WinCairoRequirements.zip into WebKitLibraries and register it and related files as git ignore files.
+        https://bugs.webkit.org/show_bug.cgi?id=180875
+
+        Reviewed by Alex Christensen.
+
+        Add files extracted from WinCairoRequirements.zip
+        * .gitignore:
+
 2017-12-14  Tomas Popela  <tpop...@redhat.com>
 
         Build should fail early is needed Perl modules are not installed

Modified: trunk/Tools/ChangeLog (226001 => 226002)


--- trunk/Tools/ChangeLog	2017-12-16 18:31:42 UTC (rev 226001)
+++ trunk/Tools/ChangeLog	2017-12-16 18:33:31 UTC (rev 226002)
@@ -1,3 +1,14 @@
+2017-12-16  Basuke Suzuki  <basuke.suz...@sony.com>
+
+        [WinCairo] Move the destination of WinCairoRequirements.zip into WebKitLibraries and register it and related files as git ignore files.
+        https://bugs.webkit.org/show_bug.cgi?id=180875
+
+        Reviewed by Alex Christensen.
+
+        Bug fix. Specify the download destination correctly.
+
+        * Scripts/update-webkit-wincairo-libs.py:
+
 2017-12-16  Brent Fulgham  <bfulg...@apple.com>
 
         Plugin processes are repeatedly spun up to do nothing

Modified: trunk/Tools/Scripts/update-webkit-wincairo-libs.py (226001 => 226002)


--- trunk/Tools/Scripts/update-webkit-wincairo-libs.py	2017-12-16 18:31:42 UTC (rev 226001)
+++ trunk/Tools/Scripts/update-webkit-wincairo-libs.py	2017-12-16 18:33:31 UTC (rev 226002)
@@ -33,7 +33,7 @@
 file = 'WinCairoRequirements.zip'
 output = 'WebKitLibraries/win'
 
-result = download.main([repo, file])
+result = download.main(['-o', output, repo, file])
 
 # Only unzip if required
 if result == download.Status.DOWNLOADED:
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to