Changeset 143820 in webkit


Ignore:
Timestamp:
Feb 22, 2013 5:32:31 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Remove unused make variable from DerivedSources.make
https://bugs.webkit.org/show_bug.cgi?id=110306

Patch by Laszlo Gombos <l.gombos@samsung.com> on 2013-02-22
Reviewed by Alexey Proskuryakov.

r107026 removed the last piece of logic that was guarded with
ENABLE_DASHBOARD_SUPPORT, so now it can be removed from
DerivedSources.make.

Also combined the way ENABLE_ORIENTATION_EVENTS is set to 0
to make it more readable.

No new tests, no new functionality.

  • DerivedSources.make:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r143819 r143820  
     12013-02-22  Laszlo Gombos  <l.gombos@samsung.com>
     2
     3        Remove unused make variable from DerivedSources.make
     4        https://bugs.webkit.org/show_bug.cgi?id=110306
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        r107026 removed the last piece of logic that was guarded with
     9        ENABLE_DASHBOARD_SUPPORT, so now it can be removed from
     10        DerivedSources.make.
     11
     12        Also combined the way ENABLE_ORIENTATION_EVENTS is set to 0
     13        to make it more readable.
     14
     15        No new tests, no new functionality.
     16
     17        * DerivedSources.make:
     18
    1192013-02-22  Dimitri Glazkov  <dglazkov@chromium.org>
    220
  • trunk/Source/WebCore/DerivedSources.make

    r143529 r143820  
    695695endif
    696696
    697 ifeq ($(shell $(CC) -x c++ -E -P -dM $(SDK_FLAGS) $(FRAMEWORK_FLAGS) $(HEADER_FLAGS) -include "wtf/Platform.h" /dev/null | grep ENABLE_DASHBOARD_SUPPORT | cut -d' ' -f3), 1)
    698     ENABLE_DASHBOARD_SUPPORT = 1
    699 else
    700     ENABLE_DASHBOARD_SUPPORT = 0
    701 endif
    702 
    703697ifeq ($(shell $(CC) -x c++ -E -P -dM $(SDK_FLAGS) $(FRAMEWORK_FLAGS) $(HEADER_FLAGS) -include "wtf/Platform.h" /dev/null | grep ENABLE_ORIENTATION_EVENTS | cut -d' ' -f3), 1)
    704698    ENABLE_ORIENTATION_EVENTS = 1
    705 else
    706     ENABLE_ORIENTATION_EVENTS = 0
    707 endif
    708 
    709 else
    710 
    711 ifndef ENABLE_DASHBOARD_SUPPORT
    712     ENABLE_DASHBOARD_SUPPORT = 0
    713 endif
     699endif
     700
     701endif # MACOS
    714702
    715703ifndef ENABLE_ORIENTATION_EVENTS
    716704    ENABLE_ORIENTATION_EVENTS = 0
    717705endif
    718 
    719 endif # MACOS
    720706
    721707ifndef ENABLE_DRAGGABLE_REGION
Note: See TracChangeset for help on using the changeset viewer.