Changeset 87808 in webkit


Ignore:
Timestamp:
Jun 1, 2011 9:08:24 AM (13 years ago)
Author:
Carlos Garcia Campos
Message:

2011-06-01 Carlos Garcia Campos <cgarcia@igalia.com>

Reviewed by Martin Robinson.

[GTK] run-launcher should run MiniBrowser in WebKit2
https://bugs.webkit.org/show_bug.cgi?id=61858

  • Scripts/run-launcher: Check whether -2 command line option has been passed and run MiniBrowser instead of GtkLauncher.
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r87774 r87808  
     12011-06-01  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        Reviewed by Martin Robinson.
     4
     5        [GTK] run-launcher should run MiniBrowser in WebKit2
     6        https://bugs.webkit.org/show_bug.cgi?id=61858
     7
     8        * Scripts/run-launcher: Check whether -2 command line option has
     9        been passed and run MiniBrowser instead of GtkLauncher.
     10
    1112011-05-31  Hao Zheng  <zhenghao@chromium.org>
    212
  • trunk/Tools/Scripts/run-launcher

    r79610 r87808  
    6666
    6767    if (isGtk()) {
    68         $launcherPath = catdir($launcherPath, "Programs", "GtkLauncher");
     68        if (isWK2()) {
     69            $launcherPath = catdir($launcherPath, "Programs", "MiniBrowser");
     70
     71            # isWK2() removes the -2 option from @ARGV, but not @args. We do not want to pass -2 to MiniBrowser.
     72            @args = @ARGV;
     73        } else {
     74            $launcherPath = catdir($launcherPath, "Programs", "GtkLauncher");
     75        }
    6976    }
    7077   
Note: See TracChangeset for help on using the changeset viewer.