Changeset 237536 in webkit


Ignore:
Timestamp:
Oct 28, 2018 7:01:38 PM (5 years ago)
Author:
Fujii Hironori
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.

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r237522 r237536  
     12018-10-28  Fujii Hironori  <Hironori.Fujii@sony.com>
     2
     3        [Win] Remove obsolete code for vcxproj builds in build-api-tests and build-jsc
     4        https://bugs.webkit.org/show_bug.cgi?id=190948
     5
     6        Reviewed by Brent Fulgham.
     7
     8        vcxproj files have been removed in Bug 154388.
     9
     10        * Scripts/build-api-tests: Removed obsolete code to build vcproj.
     11        * Scripts/build-jsc:
     12        (buildMyProject): Ditto. Removed a condition of buiding bmalloc
     13        which is not used because Windows ports are using CMake.
     14
    1152018-10-28  Geoffrey Garen  <ggaren@apple.com>
    216
  • trunk/Tools/Scripts/build-api-tests

    r226395 r237536  
    7373    }
    7474    $result = buildXCodeProject("TestWebKitAPI", $clean, @options, @ARGV);
    75 } elsif (isAppleWinWebKit()) {
    76     chdir "Tools/TestWebKitAPI" or die;
    77     my $solutionPath = "TestWebKitAPI.vcxproj/TestWebKitAPI.sln";
    78     $result = buildVisualStudioProject($solutionPath, $clean);
    7975} else {
    8076    die "TestWebKitAPI is not supported on this platform.\n";
  • trunk/Tools/Scripts/build-jsc

    r237486 r237536  
    199199    if (isAppleCocoaWebKit()) {
    200200        $result = system "sh", "-c", ('xcodebuild -project ' . $projectName . '.xcodeproj "$@" | grep -v setenv && exit ${PIPESTATUS[0]}'), "xcodebuild",  @options, @ARGV, @additionalSupportOptions;
    201     } elsif (isAppleWinWebKit() || isWinCairo()) {
    202         # WTF is a part of JavaScriptCore.sln because jsc.exe wouldn't start otherwise.
    203         if ($projectName ne "WTF") {
    204             $result = buildVisualStudioProject("$projectName.vcxproj/$projectName.sln");
    205         }
    206201    } else {
    207202        die "Building not defined for this platform!\n";
     
    222217}
    223218
    224 if (!isAppleWinWebKit() && !isWinCairo()) {
    225     buildMyProject("Source/bmalloc", "bmalloc");
    226 }
     219buildMyProject("Source/bmalloc", "bmalloc");
    227220buildMyProject("Source/WTF", "WTF");
    228221buildMyProject("Source/JavaScriptCore", "JavaScriptCore");
Note: See TracChangeset for help on using the changeset viewer.