Title: [187406] trunk/Source/WebKit2
Revision
187406
Author
[email protected]
Date
2015-07-26 12:14:12 -0700 (Sun, 26 Jul 2015)

Log Message

Suppressed an Xcode 7 warning about including a nib in an iOS build product.

* Configurations/BaseLegacyProcess.xcconfig: Exclude xib files on iOS.
* Configurations/BaseXPCService.xcconfig: Ditto.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (187405 => 187406)


--- trunk/Source/WebKit2/ChangeLog	2015-07-26 06:30:37 UTC (rev 187405)
+++ trunk/Source/WebKit2/ChangeLog	2015-07-26 19:14:12 UTC (rev 187406)
@@ -1,3 +1,10 @@
+2015-07-26  Dan Bernstein  <[email protected]>
+
+        Suppressed an Xcode 7 warning about including a nib in an iOS build product.
+
+        * Configurations/BaseLegacyProcess.xcconfig: Exclude xib files on iOS.
+        * Configurations/BaseXPCService.xcconfig: Ditto.
+
 2015-07-24  Ryosuke Niwa  <[email protected]>
 
         iOS 8 build fix attempt after r187215.

Modified: trunk/Source/WebKit2/Configurations/BaseLegacyProcess.xcconfig (187405 => 187406)


--- trunk/Source/WebKit2/Configurations/BaseLegacyProcess.xcconfig	2015-07-26 06:30:37 UTC (rev 187405)
+++ trunk/Source/WebKit2/Configurations/BaseLegacyProcess.xcconfig	2015-07-26 19:14:12 UTC (rev 187406)
@@ -36,4 +36,6 @@
 EXCLUDED_SOURCE_FILE_NAMES_Debug = $(EXCLUDED_SHIM_FILE_NAME);
 EXCLUDED_SOURCE_FILE_NAMES_Release = $(EXCLUDED_SHIM_FILE_NAME);
 
+EXCLUDED_SOURCE_FILE_NAMES[sdk=iphone*] = $(EXCLUDED_SOURCE_FILE_NAMES_$(CONFIGURATION)) *.xib;
+
 SKIP_INSTALL[sdk=iphone*] = YES;

Modified: trunk/Source/WebKit2/Configurations/BaseXPCService.xcconfig (187405 => 187406)


--- trunk/Source/WebKit2/Configurations/BaseXPCService.xcconfig	2015-07-26 06:30:37 UTC (rev 187405)
+++ trunk/Source/WebKit2/Configurations/BaseXPCService.xcconfig	2015-07-26 19:14:12 UTC (rev 187406)
@@ -40,6 +40,8 @@
 EXCLUDED_SOURCE_FILE_NAMES = $(EXCLUDED_SOURCE_FILE_NAMES_$(CONFIGURATION));
 EXCLUDED_SOURCE_FILE_NAMES_Production = WebKit.icns;
 
+EXCLUDED_SOURCE_FILE_NAMES[sdk=iphone*] = $(EXCLUDED_SOURCE_FILE_NAMES_$(CONFIGURATION)) *.xib;
+
 WRAPPER_EXTENSION = xpc;
 MACH_O_TYPE = mh_execute;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to