Title: [143820] trunk/Source/WebCore
Revision
143820
Author
[email protected]
Date
2013-02-22 17:32:31 -0800 (Fri, 22 Feb 2013)

Log Message

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

Patch by Laszlo Gombos <[email protected]> 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:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (143819 => 143820)


--- trunk/Source/WebCore/ChangeLog	2013-02-23 01:15:14 UTC (rev 143819)
+++ trunk/Source/WebCore/ChangeLog	2013-02-23 01:32:31 UTC (rev 143820)
@@ -1,3 +1,21 @@
+2013-02-22  Laszlo Gombos  <[email protected]>
+
+        Remove unused make variable from DerivedSources.make
+        https://bugs.webkit.org/show_bug.cgi?id=110306
+
+        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:
+
 2013-02-22  Dimitri Glazkov  <[email protected]>
 
         REGRESSION(r130089): Scrollbar thumb no longer re-rendered on hover

Modified: trunk/Source/WebCore/DerivedSources.make (143819 => 143820)


--- trunk/Source/WebCore/DerivedSources.make	2013-02-23 01:15:14 UTC (rev 143819)
+++ trunk/Source/WebCore/DerivedSources.make	2013-02-23 01:32:31 UTC (rev 143820)
@@ -694,30 +694,16 @@
 	SDK_FLAGS=-isysroot $(SDKROOT)
 endif
 
-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)
-    ENABLE_DASHBOARD_SUPPORT = 1
-else
-    ENABLE_DASHBOARD_SUPPORT = 0
-endif
-
 ifeq ($(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)
     ENABLE_ORIENTATION_EVENTS = 1
-else
-    ENABLE_ORIENTATION_EVENTS = 0
 endif
 
-else
+endif # MACOS
 
-ifndef ENABLE_DASHBOARD_SUPPORT
-    ENABLE_DASHBOARD_SUPPORT = 0
-endif
-
 ifndef ENABLE_ORIENTATION_EVENTS
     ENABLE_ORIENTATION_EVENTS = 0
 endif
 
-endif # MACOS
-
 ifndef ENABLE_DRAGGABLE_REGION
     ENABLE_DRAGGABLE_REGION = 0
 endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to