Changeset 240885 in webkit
- Timestamp:
- Feb 1, 2019, 3:32:42 PM (6 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 1 added
- 6 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Source/WebKit/ChangeLog ¶
r240882 r240885 1 2019-02-01 Alex Christensen <achristensen@webkit.org> 2 3 Move XPCService entry points from mac directory to new Cocoa directory 4 https://bugs.webkit.org/show_bug.cgi?id=194129 5 6 Reviewed by Chris Dumez. 7 8 * Configurations/NetworkService.xcconfig: 9 * Configurations/PluginService.64.xcconfig: 10 * Configurations/WebContentService.xcconfig: 11 * NetworkProcess/EntryPoint/Cocoa: Copied from Source/WebKit/NetworkProcess/EntryPoint/mac. 12 * NetworkProcess/EntryPoint/mac: Removed. 13 * PluginProcess/EntryPoint/Cocoa: Copied from Source/WebKit/PluginProcess/EntryPoint/mac. 14 * PluginProcess/EntryPoint/mac: Removed. 15 * Shared/EntryPointUtilities/Cocoa: Copied from Source/WebKit/Shared/EntryPointUtilities/mac. 16 * Shared/EntryPointUtilities/Cocoa/XPCService/XPCServiceEntryPoint.h: 17 * Shared/EntryPointUtilities/Cocoa/XPCService/XPCServiceEntryPoint.mm: 18 * Shared/EntryPointUtilities/Cocoa/XPCService/XPCServiceMain.mm: 19 * Shared/EntryPointUtilities/mac: Removed. 20 * SourcesCocoa.txt: 21 * WebKit.xcodeproj/project.pbxproj: 22 * WebProcess/EntryPoint/Cocoa: Copied from Source/WebKit/WebProcess/EntryPoint/mac. 23 * WebProcess/EntryPoint/mac: Removed. 24 1 25 2019-02-01 Wenson Hsieh <wenson_hsieh@apple.com> 2 26 -
TabularUnified trunk/Source/WebKit/Configurations/NetworkService.xcconfig ¶
r239819 r240885 38 38 PRODUCT_NAME = com.apple.WebKit.Networking; 39 39 PRODUCT_BUNDLE_IDENTIFIER = $(PRODUCT_NAME); 40 INFOPLIST_FILE[sdk=iphone*] = NetworkProcess/EntryPoint/ mac/XPCService/NetworkService/Info-iOS.plist;41 INFOPLIST_FILE[sdk=macosx*] = NetworkProcess/EntryPoint/ mac/XPCService/NetworkService/Info-OSX.plist;40 INFOPLIST_FILE[sdk=iphone*] = NetworkProcess/EntryPoint/Cocoa/XPCService/NetworkService/Info-iOS.plist; 41 INFOPLIST_FILE[sdk=macosx*] = NetworkProcess/EntryPoint/Cocoa/XPCService/NetworkService/Info-OSX.plist; 42 42 43 43 OTHER_LDFLAGS = $(inherited) $(OTHER_LDFLAGS_VERSIONED_FRAMEWORK_PATH) $(WK_RELOCATABLE_FRAMEWORKS_LDFLAGS); -
TabularUnified trunk/Source/WebKit/Configurations/PluginService.64.xcconfig ¶
r239841 r240885 28 28 PRODUCT_NAME = com.apple.WebKit.Plugin.64; 29 29 PRODUCT_BUNDLE_IDENTIFIER = $(PRODUCT_NAME); 30 INFOPLIST_FILE = PluginProcess/EntryPoint/ mac/XPCService/PluginService.64.Info.plist;30 INFOPLIST_FILE = PluginProcess/EntryPoint/Cocoa/XPCService/PluginService.64.Info.plist; 31 31 32 32 WK_APPKIT_LDFLAGS = $(WK_APPKIT_LDFLAGS_$(WK_PLATFORM_NAME)); -
TabularUnified trunk/Source/WebKit/Configurations/WebContentService.xcconfig ¶
r239819 r240885 42 42 43 43 PRODUCT_BUNDLE_IDENTIFIER = $(PRODUCT_NAME); 44 INFOPLIST_FILE[sdk=iphone*] = WebProcess/EntryPoint/ mac/XPCService/WebContentService/Info-iOS.plist;45 INFOPLIST_FILE[sdk=macosx*] = WebProcess/EntryPoint/ mac/XPCService/WebContentService/Info-OSX.plist;44 INFOPLIST_FILE[sdk=iphone*] = WebProcess/EntryPoint/Cocoa/XPCService/WebContentService/Info-iOS.plist; 45 INFOPLIST_FILE[sdk=macosx*] = WebProcess/EntryPoint/Cocoa/XPCService/WebContentService/Info-OSX.plist; 46 46 47 47 WK_APPKIT_LDFLAGS = $(WK_APPKIT_LDFLAGS_$(WK_PLATFORM_NAME)); -
TabularUnified trunk/Source/WebKit/SourcesCocoa.txt ¶
r240805 r240885 40 40 NetworkProcess/Downloads/cocoa/DownloadCocoa.mm 41 41 42 NetworkProcess/EntryPoint/ mac/XPCService/NetworkServiceEntryPoint.mm42 NetworkProcess/EntryPoint/Cocoa/XPCService/NetworkServiceEntryPoint.mm 43 43 44 44 NetworkProcess/ios/NetworkProcessIOS.mm … … 82 82 Platform/unix/EnvironmentUtilities.cpp 83 83 84 PluginProcess/EntryPoint/ mac/XPCService/PluginServiceEntryPoint.mm @no-unify84 PluginProcess/EntryPoint/Cocoa/XPCService/PluginServiceEntryPoint.mm @no-unify 85 85 86 86 PluginProcess/mac/PluginControllerProxyMac.mm @no-unify … … 148 148 Shared/Cocoa/WKObject.mm 149 149 150 Shared/EntryPointUtilities/ mac/XPCService/XPCServiceEntryPoint.mm151 Shared/EntryPointUtilities/ mac/XPCService/XPCServiceMain.mm150 Shared/EntryPointUtilities/Cocoa/XPCService/XPCServiceEntryPoint.mm 151 Shared/EntryPointUtilities/Cocoa/XPCService/XPCServiceMain.mm 152 152 153 153 Shared/ios/AuxiliaryProcessIOS.mm … … 494 494 WebProcess/cocoa/WebProcessCocoa.mm 495 495 496 WebProcess/EntryPoint/ mac/XPCService/WebContentServiceEntryPoint.mm496 WebProcess/EntryPoint/Cocoa/XPCService/WebContentServiceEntryPoint.mm 497 497 498 498 WebProcess/InjectedBundle/API/c/WKBundlePageBanner.cpp -
TabularUnified trunk/Source/WebKit/WebKit.xcodeproj/project.pbxproj ¶
r240805 r240885 8036 8036 ); 8037 8037 name = XPCService; 8038 path = mac/XPCService;8038 path = Cocoa/XPCService; 8039 8039 sourceTree = "<group>"; 8040 8040 }; … … 8062 8062 ); 8063 8063 name = XPCService; 8064 path = mac/XPCService;8064 path = Cocoa/XPCService; 8065 8065 sourceTree = "<group>"; 8066 8066 }; … … 8081 8081 ); 8082 8082 name = XPCService; 8083 path = mac/XPCService;8083 path = Cocoa/XPCService; 8084 8084 sourceTree = "<group>"; 8085 8085 }; … … 8148 8148 ); 8149 8149 name = XPCService; 8150 path = mac/XPCService;8150 path = Cocoa/XPCService; 8151 8151 sourceTree = "<group>"; 8152 8152 };
Note:
See TracChangeset
for help on using the changeset viewer.