Changeset 106617 in webkit


Ignore:
Timestamp:
Feb 2, 2012 7:18:53 PM (12 years ago)
Author:
jochen@chromium.org
Message:

[chromium] add support for --makeargs to the ninja-based build
https://bugs.webkit.org/show_bug.cgi?id=77688

Reviewed by Adam Barth.

  • Scripts/webkitdirs.pm:

(buildChromiumNinja):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r106616 r106617  
     12012-02-02  Jochen Eisinger  <jochen@chromium.org>
     2
     3        [chromium] add support for --makeargs to the ninja-based build
     4        https://bugs.webkit.org/show_bug.cgi?id=77688
     5
     6        Reviewed by Adam Barth.
     7
     8        * Scripts/webkitdirs.pm:
     9        (buildChromiumNinja):
     10
    1112012-02-02  Eric Seidel  <eric@webkit.org>
    212
  • trunk/Tools/Scripts/webkitdirs.pm

    r106369 r106617  
    23102310    my ($target, @options) = @_;
    23112311    my $config = configuration();
     2312    my $makeArgs;
     2313    for (@options) {
     2314        $makeArgs = $1 if /^--makeargs=(.*)/i;
     2315    }
    23122316    my $command = "";
    23132317
    2314     $command .= "ninja -C out/$config $target";
     2318    $command .= "ninja -C out/$config $target $makeArgs";
    23152319
    23162320    print "$command\n";
Note: See TracChangeset for help on using the changeset viewer.