Title: [228571] trunk/Source/WebCore
Revision
228571
Author
[email protected]
Date
2018-02-16 11:53:19 -0800 (Fri, 16 Feb 2018)

Log Message

Stop using EXCLUDED_SOURCE_FILE_NAMES for touch and gesture files in WebCore
https://bugs.webkit.org/show_bug.cgi?id=182866

Reviewed by Daniel Bates.

* Configurations/WebCore.xcconfig:
These generated files already have ENABLE() flags around them,
so there's no reason to exclude them explicitly.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (228570 => 228571)


--- trunk/Source/WebCore/ChangeLog	2018-02-16 19:52:35 UTC (rev 228570)
+++ trunk/Source/WebCore/ChangeLog	2018-02-16 19:53:19 UTC (rev 228571)
@@ -1,3 +1,14 @@
+2018-02-16  Tim Horton  <[email protected]>
+
+        Stop using EXCLUDED_SOURCE_FILE_NAMES for touch and gesture files in WebCore
+        https://bugs.webkit.org/show_bug.cgi?id=182866
+
+        Reviewed by Daniel Bates.
+
+        * Configurations/WebCore.xcconfig:
+        These generated files already have ENABLE() flags around them,
+        so there's no reason to exclude them explicitly.
+
 2018-02-16  Chris Dumez  <[email protected]>
 
         Unreviewed, fix iOS build after r228562.

Modified: trunk/Source/WebCore/Configurations/WebCore.xcconfig (228570 => 228571)


--- trunk/Source/WebCore/Configurations/WebCore.xcconfig	2018-02-16 19:52:35 UTC (rev 228570)
+++ trunk/Source/WebCore/Configurations/WebCore.xcconfig	2018-02-16 19:53:19 UTC (rev 228571)
@@ -114,15 +114,8 @@
 _javascript_CORE_PRIVATE_HEADERS_DIR_Production[sdk=macosx*] = $(SDKROOT)$(PRODUCTION_FRAMEWORKS_DIR)/_javascript_Core.framework/PrivateHeaders;
 _javascript_CORE_PRIVATE_HEADERS_engineering = $(BUILT_PRODUCTS_DIR)/_javascript_Core.framework/PrivateHeaders;
 
-EXCLUDED_SOURCE_FILE_NAMES_FOR_TOUCH_EVENTS = $(EXCLUDED_SOURCE_FILE_NAMES_FOR_TOUCH_EVENTS_IF_ENABLED_$(ENABLE_TOUCH_EVENTS));
-EXCLUDED_SOURCE_FILE_NAMES_FOR_TOUCH_EVENTS_IF_ENABLED_ = JSTouch*;
+EXCLUDED_SOURCE_FILE_NAMES[sdk=iphone*] = *.tiff *Cursor.png npapi.h npfunctions.h npruntime.h npruntime_internal.h;
 
-EXCLUDED_SOURCE_FILE_NAMES_FOR_GESTURE_EVENTS = $(EXCLUDED_SOURCE_FILE_NAMES_FOR_GESTURE_EVENTS_IF_ENABLED_$(ENABLE_IOS_GESTURE_EVENTS)$(ENABLE_MAC_GESTURE_EVENTS));
-EXCLUDED_SOURCE_FILE_NAMES_FOR_GESTURE_EVENTS_IF_ENABLED_ = JSGesture* DOMGesture*;
-
-EXCLUDED_SOURCE_FILE_NAMES[sdk=iphone*] = *.tiff *Cursor.png npapi.h npfunctions.h npruntime.h npruntime_internal.h $(EXCLUDED_SOURCE_FILE_NAMES_FOR_TOUCH_EVENTS) $(EXCLUDED_SOURCE_FILE_NAMES_FOR_GESTURE_EVENTS);
-EXCLUDED_SOURCE_FILE_NAMES[sdk=macosx*] = $(EXCLUDED_SOURCE_FILE_NAMES_FOR_TOUCH_EVENTS) $(EXCLUDED_SOURCE_FILE_NAMES_FOR_GESTURE_EVENTS);
-
 WK_EMPTY_ = YES;
 WK_NOT_ = YES;
 WK_NOT_YES = NO;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to