summaryrefslogtreecommitdiffstats
path: root/Tools/Scripts/update-webkit
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/Scripts/update-webkit')
-rwxr-xr-xTools/Scripts/update-webkit7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tools/Scripts/update-webkit b/Tools/Scripts/update-webkit
index 5c132ae..6a7b9f7 100755
--- a/Tools/Scripts/update-webkit
+++ b/Tools/Scripts/update-webkit
@@ -2,6 +2,7 @@
# Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
# Copyright (C) 2009 Google Inc. All rights reserved.
+# Copyright (C) 2011 Brent Fulgham. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
@@ -49,6 +50,8 @@ my $useGYP = 0;
determineIsChromium();
+determineIsWinCairo();
+
chdirWebKit();
my $getOptionsResult = GetOptions(
@@ -64,6 +67,7 @@ Usage: @{[ basename($0) ]} [options]
-h|--help show the help message
-q|--quiet pass -q to svn update for quiet updates
--gyp generate project files from gyp after update
+ --wincairo also update dependencies of the WinCairo port
__END__
exit 1;
}
@@ -96,6 +100,9 @@ if (-d "../Internal") {
system("perl", "Tools/Scripts/update-webkit-chromium") == 0 or die $!;
} elsif (isAppleWinWebKit()) {
system("perl", "Tools/Scripts/update-webkit-auxiliary-libs") == 0 or die;
+ if (isWinCairo()) {
+ system("perl", "Tools/Scripts/update-webkit-wincairo-libs") == 0 or die;
+ }
}
setupAppleWinEnv() if isAppleWinWebKit();