Changeset 139557 in webkit


Ignore:
Timestamp:
Jan 12, 2013 6:08:29 PM (11 years ago)
Author:
thakis@chromium.org
Message:

Make ninja the default build system on Linux for build-webkit --chromium
https://bugs.webkit.org/show_bug.cgi?id=104434

Reviewed by Eric Seidel.

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

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r139552 r139557  
     12013-01-12  Nico Weber  <thakis@chromium.org>
     2
     3        Make ninja the default build system on Linux for build-webkit --chromium
     4        https://bugs.webkit.org/show_bug.cgi?id=104434
     5
     6        Reviewed by Eric Seidel.
     7
     8        * Scripts/update-webkit:
     9
    1102013-01-12  Alan Cutter  <alancutter@chromium.org>
    211
  • trunk/Tools/Scripts/update-webkit

    r137375 r139557  
    4848my $useGYP = 0;
    4949my $useMake = 0;
    50 my $useNinja = 0;
     50my $useNinja = $^O eq "linux";
    5151
    5252determineIsChromium();
     
    6262    'gyp' => \$useGYP,
    6363    'make' => \$useMake,
    64     'ninja' => \$useNinja,
     64    'ninja!' => \$useNinja,
    6565);
    6666
     
    7070  --chromium          also update dependencies of the chromium port
    7171  --make              generate the Makefile-based build system (Chromium only)
    72   --ninja             generate the ninja-based build system (Chromium only)
     72  --[no-]ninja        generate the ninja-based build system (Chromium only)
    7373  --chromium-android  also update dependencies of the chromium port for Android
    7474  -h|--help           show the help message
Note: See TracChangeset for help on using the changeset viewer.