Title: [237536] trunk/Tools
Revision
237536
Author
[email protected]
Date
2018-10-28 19:01:38 -0700 (Sun, 28 Oct 2018)

Log Message

[Win] Remove obsolete code for vcxproj builds in build-api-tests and build-jsc
https://bugs.webkit.org/show_bug.cgi?id=190948

Reviewed by Brent Fulgham.

vcxproj files have been removed in Bug 154388.

* Scripts/build-api-tests: Removed obsolete code to build vcproj.
* Scripts/build-jsc:
(buildMyProject): Ditto. Removed a condition of buiding bmalloc
which is not used because Windows ports are using CMake.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (237535 => 237536)


--- trunk/Tools/ChangeLog	2018-10-29 00:03:25 UTC (rev 237535)
+++ trunk/Tools/ChangeLog	2018-10-29 02:01:38 UTC (rev 237536)
@@ -1,3 +1,17 @@
+2018-10-28  Fujii Hironori  <[email protected]>
+
+        [Win] Remove obsolete code for vcxproj builds in build-api-tests and build-jsc
+        https://bugs.webkit.org/show_bug.cgi?id=190948
+
+        Reviewed by Brent Fulgham.
+
+        vcxproj files have been removed in Bug 154388.
+
+        * Scripts/build-api-tests: Removed obsolete code to build vcproj.
+        * Scripts/build-jsc:
+        (buildMyProject): Ditto. Removed a condition of buiding bmalloc
+        which is not used because Windows ports are using CMake.
+
 2018-10-28  Geoffrey Garen  <[email protected]>
 
         HashMap should support selecting a random entry

Modified: trunk/Tools/Scripts/build-api-tests (237535 => 237536)


--- trunk/Tools/Scripts/build-api-tests	2018-10-29 00:03:25 UTC (rev 237535)
+++ trunk/Tools/Scripts/build-api-tests	2018-10-29 02:01:38 UTC (rev 237536)
@@ -72,10 +72,6 @@
         push @options, ("-target", "TestWTF");
     }
     $result = buildXCodeProject("TestWebKitAPI", $clean, @options, @ARGV);
-} elsif (isAppleWinWebKit()) {
-    chdir "Tools/TestWebKitAPI" or die;
-    my $solutionPath = "TestWebKitAPI.vcxproj/TestWebKitAPI.sln";
-    $result = buildVisualStudioProject($solutionPath, $clean);
 } else {
     die "TestWebKitAPI is not supported on this platform.\n";
 }

Modified: trunk/Tools/Scripts/build-jsc (237535 => 237536)


--- trunk/Tools/Scripts/build-jsc	2018-10-29 00:03:25 UTC (rev 237535)
+++ trunk/Tools/Scripts/build-jsc	2018-10-29 02:01:38 UTC (rev 237536)
@@ -198,11 +198,6 @@
     chdir $projectDirectory or die "Can't find $projectName directory to build from";
     if (isAppleCocoaWebKit()) {
         $result = system "sh", "-c", ('xcodebuild -project ' . $projectName . '.xcodeproj "$@" | grep -v setenv && exit ${PIPESTATUS[0]}'), "xcodebuild",  @options, @ARGV, @additionalSupportOptions;
-    } elsif (isAppleWinWebKit() || isWinCairo()) {
-        # WTF is a part of _javascript_Core.sln because jsc.exe wouldn't start otherwise.
-        if ($projectName ne "WTF") {
-            $result = buildVisualStudioProject("$projectName.vcxproj/$projectName.sln");
-        }
     } else {
         die "Building not defined for this platform!\n";
     }
@@ -221,9 +216,7 @@
     print "====================================================================\n";
 }
 
-if (!isAppleWinWebKit() && !isWinCairo()) {
-    buildMyProject("Source/bmalloc", "bmalloc");
-}
+buildMyProject("Source/bmalloc", "bmalloc");
 buildMyProject("Source/WTF", "WTF");
 buildMyProject("Source/_javascript_Core", "_javascript_Core");
 if (isAppleCocoaWebKit() && $cli) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to