webengine/osswebengine/WebKitTools/BuildSlaveSupport/build-launcher-app
changeset 0 dd21522fd290
equal deleted inserted replaced
-1:000000000000 0:dd21522fd290
       
     1 #!/usr/bin/perl -w
       
     2 
       
     3 # Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
       
     4 # Copyright (C) 2006 Mark Rowe <opendarwin.org@bdash.net.nz>.  All rights reserved.
       
     5 #
       
     6 # Redistribution and use in source and binary forms, with or without
       
     7 # modification, are permitted provided that the following conditions
       
     8 # are met:
       
     9 #
       
    10 # 1.  Redistributions of source code must retain the above copyright
       
    11 #     notice, this list of conditions and the following disclaimer. 
       
    12 # 2.  Redistributions in binary form must reproduce the above copyright
       
    13 #     notice, this list of conditions and the following disclaimer in the
       
    14 #     documentation and/or other materials provided with the distribution. 
       
    15 # 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
       
    16 #     its contributors may be used to endorse or promote products derived
       
    17 #     from this software without specific prior written permission. 
       
    18 #
       
    19 # THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
       
    20 # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
       
    21 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
       
    22 # DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
       
    23 # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
       
    24 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
       
    25 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
       
    26 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
       
    27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
       
    28 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
       
    29 
       
    30 # Creates the launcher WebKit.app with bundled frameworks.
       
    31 
       
    32 use strict;
       
    33 
       
    34 use FindBin;
       
    35 use lib "$FindBin::Bin/../Scripts";
       
    36 use webkitdirs;
       
    37 
       
    38 my @xcodeBuildArguments = XcodeOptions();
       
    39 my $nightlyLauncherTemplatePath = "$FindBin::Bin/../WebKitLauncher";
       
    40 my $nightlyLauncherStagingPath = productDir() . "/WebKit.app";
       
    41 my $droseraProjectPath = "$FindBin::Bin/../Drosera/mac";
       
    42 my $droseraStagingPath = productDir() . "/DroseraLauncher.app";
       
    43 
       
    44 sub buildNightlyLauncher
       
    45 {
       
    46     chdir($nightlyLauncherTemplatePath);
       
    47     system("xcodebuild", "clean", "-alltargets", @xcodeBuildArguments, @ARGV) == 0 or die "Failed cleaning WebKitLauncher project";
       
    48     system("xcodebuild", @xcodeBuildArguments, @ARGV) == 0 or die "Failed building WebKitLauncher project";
       
    49     chdirWebKit();
       
    50 }
       
    51 
       
    52 sub currentSVNBranch
       
    53 {
       
    54     my $sourceDir = sourceDir();
       
    55     my $svnInfo = `LC_ALL=C svn info $sourceDir | grep URL:`;
       
    56     (my $url) = ($svnInfo =~ m/URL: (.+)/g);
       
    57     (my $branch) = ($url =~ m/\/svn\/webkit\/(trunk|branches\/[^\/]+)/);
       
    58     die "Unable to determine current SVN branch in $sourceDir" unless (defined $branch);
       
    59     $branch =~ s/^branches\///;
       
    60     return $branch
       
    61 }
       
    62 
       
    63 sub copyNightlyLauncher
       
    64 {
       
    65     my $revision = currentSVNRevision();
       
    66     my $branch = currentSVNBranch();
       
    67     my $infoPlist = "$nightlyLauncherStagingPath/Contents/Info.plist";
       
    68     my $versionFile = "$nightlyLauncherStagingPath/Contents/Resources/VERSION";
       
    69     my $branchFile = "$nightlyLauncherStagingPath/Contents/Resources/BRANCH";
       
    70     my $data;
       
    71     open(IN, $infoPlist) or die "Couldn't open Info.plist in built application for reading";
       
    72     {
       
    73         undef $/;
       
    74         $data = <IN>;
       
    75     }
       
    76     close(IN);
       
    77     open(OUT, ">$infoPlist") or die "Couldn't open Info.plist in built application for writing";
       
    78     $data =~ s/VERSION/$revision/g;
       
    79     print OUT $data;
       
    80     close(OUT);
       
    81 
       
    82     open(OUT, ">$versionFile") or die "Couldn't open VERSION in built application for writing";
       
    83     print OUT "$revision\n";
       
    84     close(OUT);
       
    85 
       
    86     open(OUT, ">$branchFile") or die "Couldn't open BRANCH in built application for writing";
       
    87     print OUT "$branch\n";
       
    88     close(OUT);
       
    89 
       
    90     my @frameworks = ("JavaScriptCore", "JavaScriptGlue", "WebCore", "WebKit");
       
    91     for my $framework (@frameworks) {
       
    92         system("ditto", productDir() . "/$framework.framework", "$nightlyLauncherStagingPath/Contents/Resources/$framework.framework") == 0 or die "Failed copying $framework.framework into $nightlyLauncherStagingPath";
       
    93     }
       
    94 }
       
    95 
       
    96 sub buildDroseraLauncher
       
    97 {
       
    98     chdir($droseraProjectPath);
       
    99     system("xcodebuild", "clean", "-alltargets", @xcodeBuildArguments, @ARGV) == 0 or die "Failed cleaning Drosera project";
       
   100     # Build native platform only right now, as building universal with the 10.4u SDK cause Xcode to look for WebKit,
       
   101     # WebCore & JavaScriptCore in the SDK under /Developer/SDKs/MacOSX10.4u.sdk/$(BUILT_PRODUCTS_DIR) where they do not exist
       
   102     system("xcodebuild", "-alltargets", @xcodeBuildArguments, @ARGV) == 0 or die "Failed building Drosera project";
       
   103     chdirWebKit();
       
   104 }
       
   105 
       
   106 sub setDroseraLauncherVersion
       
   107 {
       
   108     my $revision = currentSVNRevision();
       
   109     my $infoPlist = "$droseraStagingPath/Contents/Info.plist";
       
   110     my $data;
       
   111     open(IN, $infoPlist) or die "Couldn't open Info.plist in built application for reading";
       
   112     {
       
   113         undef $/;
       
   114         $data = <IN>;
       
   115     }
       
   116     close(IN);
       
   117     open(OUT, ">$infoPlist") or die "Couldn't open Info.plist in built application for writing";
       
   118     $data =~ s/VERSION/$revision/g;
       
   119     print OUT $data;
       
   120     close(OUT);
       
   121 }
       
   122 
       
   123 chdirWebKit();
       
   124 buildNightlyLauncher();
       
   125 copyNightlyLauncher();
       
   126 buildDroseraLauncher();
       
   127 setDroseraLauncherVersion();