⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 181447 in webkit


Ignore:
Timestamp:
Mar 12, 2015, 12:13:49 PM (11 years ago)
Author:
Csaba Osztrogonác
Message:

Remove isWK2 cruft from webkitdirs.pm after r170426
https://bugs.webkit.org/show_bug.cgi?id=142618

Reviewed by Daniel Bates.

  • Scripts/webkitdirs.pm:

(isWK2): Deleted.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r181446 r181447  
     12015-03-12  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Remove isWK2 cruft from webkitdirs.pm after r170426
     4        https://bugs.webkit.org/show_bug.cgi?id=142618
     5
     6        Reviewed by Daniel Bates.
     7
     8        * Scripts/webkitdirs.pm:
     9        (isWK2): Deleted.
     10
    1112015-03-12  Alexey Proskuryakov  <ap@apple.com>
    212
  • trunk/Tools/Scripts/webkitdirs.pm

    r181125 r181447  
    116116my $isEfl;
    117117my $isInspectorFrontend;
    118 my $isWK2;
    119118my $shouldTargetWebProcess;
    120119my $shouldUseXPCServiceForWebProcess;
     
    977976}
    978977
    979 sub isWK2()
    980 {
    981     if (defined($isWK2)) {
    982         return $isWK2;
    983     }
    984     if (checkForArgumentAndRemoveFromARGV("-2")) {
    985         $isWK2 = 1;
    986     } else {
    987         $isWK2 = 0;
    988     }
    989     return $isWK2;
    990 }
    991 
    992978sub determineIsEfl()
    993979{
Note: See TracChangeset for help on using the changeset viewer.