Title: [143951] trunk/Tools
- Revision
- 143951
- Author
- [email protected]
- Date
- 2013-02-25 11:23:04 -0800 (Mon, 25 Feb 2013)
Log Message
[chromium] Try to get the webkit builder to use msvs again
https://bugs.webkit.org/show_bug.cgi?id=110771
Reviewed by Eric Seidel.
The msvs gyp generator apparently doesn't write the sln file on every
run, so check the vcxproj file instead.
* Scripts/webkitdirs.pm:
(determineIsChromiumNinja):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (143950 => 143951)
--- trunk/Tools/ChangeLog 2013-02-25 19:14:40 UTC (rev 143950)
+++ trunk/Tools/ChangeLog 2013-02-25 19:23:04 UTC (rev 143951)
@@ -1,5 +1,18 @@
2013-02-25 Nico Weber <[email protected]>
+ [chromium] Try to get the webkit builder to use msvs again
+ https://bugs.webkit.org/show_bug.cgi?id=110771
+
+ Reviewed by Eric Seidel.
+
+ The msvs gyp generator apparently doesn't write the sln file on every
+ run, so check the vcxproj file instead.
+
+ * Scripts/webkitdirs.pm:
+ (determineIsChromiumNinja):
+
+2013-02-25 Nico Weber <[email protected]>
+
[chromium] try to unbreak run-chromium-webkit-unit-tests on the mac bots
https://bugs.webkit.org/show_bug.cgi?id=110767
Modified: trunk/Tools/Scripts/webkitdirs.pm (143950 => 143951)
--- trunk/Tools/Scripts/webkitdirs.pm 2013-02-25 19:14:40 UTC (rev 143950)
+++ trunk/Tools/Scripts/webkitdirs.pm 2013-02-25 19:23:04 UTC (rev 143951)
@@ -1260,8 +1260,8 @@
}
my $statVisualStudio = 0;
- if (-e 'Source/WebKit/chromium/All.sln') {
- $statVisualStudio = stat('Source/WebKit/chromium/All.sln')->mtime;
+ if (-e 'Source/WebKit/chromium/webkit.vcxproj') {
+ $statVisualStudio = stat('Source/WebKit/chromium/webkit.vcxproj')->mtime;
}
$hasUpToDateNinjabuild = $statNinja > $statXcode && $statNinja > $statMake && $statNinja > $statVisualStudio;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes