Changeset 151523 in webkit


Ignore:
Timestamp:
Jun 12, 2013 1:46:18 PM (11 years ago)
Author:
Hugo Parente Lima
Message:

Remove last bits of GYP from build-webkit and update-webkit scripts
https://bugs.webkit.org/show_bug.cgi?id=117557

Reviewed by Ryosuke Niwa.

  • Scripts/build-webkit:
  • Scripts/update-webkit:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r151521 r151523  
     12013-06-12  Hugo Parente Lima  <hugo.lima@openbossa.org>
     2
     3        Remove last bits of GYP from build-webkit and update-webkit scripts
     4        https://bugs.webkit.org/show_bug.cgi?id=117557
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * Scripts/build-webkit:
     9        * Scripts/update-webkit:
     10
    1112013-06-12  Hugo Parente Lima  <hugo.lima@openbossa.org>
    212
  • trunk/Tools/Scripts/build-webkit

    r151465 r151523  
    5252my $showHelp = 0;
    5353my $clean = 0;
    54 my $useGYP = 0;
    5554my $minimal = 0;
    5655my $installHeaders;
     
    114113  --device                          Use the current iphoneos.internal SDK (iOS only)
    115114  --simulator                       Use the current iphonesimulator SDK (iOS only)
    116   --gyp                             Use GYP-generated project files
    117115  --coverage                        Enable Code Coverage support (Mac only)
    118116
     
    145143    'help' => \$showHelp,
    146144    'clean' => \$clean,
    147     'gyp' => \$useGYP,
    148145    'install-headers=s' => \$installHeaders,
    149146    'install-libs=s' => \$installLibs,
     
    206203if (!isQt() && !-d "WebKitLibraries") {
    207204    die "Error: No WebKitLibraries directory found. Please do a fresh checkout.\n";
    208 }
    209 
    210 # Generate the generate project files from .gyp files
    211 if ($useGYP) {
    212     system("perl", "Tools/Scripts/generate-project-files") == 0 or die "Failed to run generate-project-files";
    213205}
    214206
     
    335327        my @local_options = @options;
    336328        push @local_options, XcodeCoverageSupportOptions() if $coverageSupport && $project ne "ANGLE";
    337         my $useGYPProject = $useGYP && ($project =~ "WebCore|JavaScriptCore");
    338         my $projectPath = $useGYPProject ? "gyp/$project" : $project;
    339         $projectPath = $project =~ /gtest/ ? "xcode/gtest" : $project;
     329        my $projectPath = $project =~ /gtest/ ? "xcode/gtest" : $project;
    340330        $result = buildXCodeProject($projectPath, $clean, @local_options, @ARGV);
    341331    } elsif (isAppleWinWebKit()) {
  • trunk/Tools/Scripts/update-webkit

    r149166 r151523  
    4646my $quiet = '';
    4747my $showHelp;
    48 my $useGYP = 0;
    4948
    5049determineIsQt();
     
    5655    'h|help'  => \$showHelp,
    5756    'q|quiet' => \$quiet,
    58     'gyp' => \$useGYP,
    5957);
    6058
     
    6462  -h|--help           show the help message
    6563  -q|--quiet          pass -q to svn update for quiet updates
    66   --gyp               generate project files from gyp after update
    6764  --wincairo          also update dependencies of the WinCairo port
    6865__END__
     
    9491
    9592setupAppleWinEnv() if isAppleWinWebKit();
    96 
    97 if ($useGYP) {
    98     print "Generating Project Files\n";
    99     system("perl", "Tools/Scripts/generate-project-files") == 0 or die "Failed to run generate-project-files";
    100 }
    10193
    10294exit 0;
Note: See TracChangeset for help on using the changeset viewer.