Title: [199622] trunk/Source/WebKit2
Revision
199622
Author
[email protected]
Date
2016-04-15 22:26:39 -0700 (Fri, 15 Apr 2016)

Log Message

[Mac] WebContent, Networking and Databases services have i386 slices that are never used
https://bugs.webkit.org/show_bug.cgi?id=156654

Reviewed by Alexey Proskuryakov.

* Configurations/BaseXPCService.xcconfig: Set VALID_ARCHS to ARCHS_STANDARD when not building only
  for the active architecture.
* Configurations/PluginService.32.xcconfig: Removed now-redundant definitions.
* Configurations/PluginService.64.xcconfig: Ditto.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (199621 => 199622)


--- trunk/Source/WebKit2/ChangeLog	2016-04-16 04:52:18 UTC (rev 199621)
+++ trunk/Source/WebKit2/ChangeLog	2016-04-16 05:26:39 UTC (rev 199622)
@@ -1,3 +1,15 @@
+2016-04-15  Dan Bernstein  <[email protected]>
+
+        [Mac] WebContent, Networking and Databases services have i386 slices that are never used
+        https://bugs.webkit.org/show_bug.cgi?id=156654
+
+        Reviewed by Alexey Proskuryakov.
+
+        * Configurations/BaseXPCService.xcconfig: Set VALID_ARCHS to ARCHS_STANDARD when not building only
+          for the active architecture.
+        * Configurations/PluginService.32.xcconfig: Removed now-redundant definitions.
+        * Configurations/PluginService.64.xcconfig: Ditto.
+
 2016-04-15  Sam Weinig  <[email protected]>
 
         Need a way to specify a script name to show in the inspector for scripts injected via WKUserScript

Modified: trunk/Source/WebKit2/Configurations/BaseXPCService.xcconfig (199621 => 199622)


--- trunk/Source/WebKit2/Configurations/BaseXPCService.xcconfig	2016-04-16 04:52:18 UTC (rev 199621)
+++ trunk/Source/WebKit2/Configurations/BaseXPCService.xcconfig	2016-04-16 05:26:39 UTC (rev 199622)
@@ -23,6 +23,10 @@
 
 #include "BaseTarget.xcconfig"
 
+VALID_ARCHS[sdk=macosx*] = $(VALID_ARCHS_macosx_$(ONLY_ACTIVE_ARCH));
+VALID_ARCHS_macosx_YES = $(VALID_ARCHS);
+VALID_ARCHS_macosx_NO = $(ARCHS_STANDARD);
+
 INSTALL_PATH[sdk=iphone*] = $(WEBKIT_FRAMEWORKS_DIR)/WebKit.framework/XPCServices;
 INSTALL_PATH[sdk=macosx*] = $(WEBKIT_FRAMEWORKS_DIR)/WebKit.framework/Versions/A/XPCServices;
 

Modified: trunk/Source/WebKit2/Configurations/PluginService.32.xcconfig (199621 => 199622)


--- trunk/Source/WebKit2/Configurations/PluginService.32.xcconfig	2016-04-16 04:52:18 UTC (rev 199621)
+++ trunk/Source/WebKit2/Configurations/PluginService.32.xcconfig	2016-04-16 05:26:39 UTC (rev 199622)
@@ -23,8 +23,6 @@
 
 #include "BaseXPCService.xcconfig"
 
-VALID_ARCHS[sdk=macosx*] = $(VALID_ARCHS_macosx_$(ONLY_ACTIVE_ARCH));
-VALID_ARCHS_macosx_YES = $(VALID_ARCHS);
 VALID_ARCHS_macosx_NO = i386;
 
 PRODUCT_NAME = com.apple.WebKit.Plugin.32$(WK_XPC_SERVICE_SUFFIX);

Modified: trunk/Source/WebKit2/Configurations/PluginService.64.xcconfig (199621 => 199622)


--- trunk/Source/WebKit2/Configurations/PluginService.64.xcconfig	2016-04-16 04:52:18 UTC (rev 199621)
+++ trunk/Source/WebKit2/Configurations/PluginService.64.xcconfig	2016-04-16 05:26:39 UTC (rev 199622)
@@ -23,8 +23,6 @@
 
 #include "BaseXPCService.xcconfig"
 
-VALID_ARCHS[sdk=macosx*] = $(VALID_ARCHS_macosx_$(ONLY_ACTIVE_ARCH));
-VALID_ARCHS_macosx_YES = $(VALID_ARCHS);
 VALID_ARCHS_macosx_NO = x86_64;
 
 PRODUCT_NAME = com.apple.WebKit.Plugin.64$(WK_XPC_SERVICE_SUFFIX);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to