Skip to content

Commit

Permalink
Set correct bundle version for WebKit process extensions
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=264818
rdar://118402879

Reviewed by Brent Fulgham.

Use bundle version from the version config file.

* Source/WebKit/Configurations/GPUExtension.xcconfig:
* Source/WebKit/Configurations/NetworkingExtension.xcconfig:
* Source/WebKit/Configurations/WebContentCaptivePortalExtension.xcconfig:
* Source/WebKit/Configurations/WebContentExtension.xcconfig:
* Source/WebKit/Shared/AuxiliaryProcessExtensions/GPUExtension-Info.plist:
* Source/WebKit/Shared/AuxiliaryProcessExtensions/NetworkingExtension-Info.plist:
* Source/WebKit/Shared/AuxiliaryProcessExtensions/WebContentExtension-CaptivePortal-Info.plist:
* Source/WebKit/Shared/AuxiliaryProcessExtensions/WebContentExtension-Info.plist:

Canonical link: https://commits.webkit.org/270724@main
  • Loading branch information
pvollan committed Nov 14, 2023
1 parent 7d27cdd commit 72e51ec
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 8 deletions.
1 change: 0 additions & 1 deletion Source/WebKit/Configurations/GPUExtension.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ INFOPLIST_KEY_CFBundleDisplayName = GPUExtension;
PRODUCT_BUNDLE_IDENTIFIER = com.apple.WebKit.GPUExtension;
PRODUCT_BUNDLE_EXECUTABLE = GPUExtension;
PRODUCT_BUNDLE_NAME = GPUExtension;
PRODUCT_BUNDLE_VERSION = 1.0;
1 change: 0 additions & 1 deletion Source/WebKit/Configurations/NetworkingExtension.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ INFOPLIST_KEY_CFBundleDisplayName = NetworkingExtension;
PRODUCT_BUNDLE_IDENTIFIER = com.apple.WebKit.NetworkingExtension;
PRODUCT_BUNDLE_EXECUTABLE = NetworkingExtension;
PRODUCT_BUNDLE_NAME = NetworkingExtension;
PRODUCT_BUNDLE_VERSION = 1.0;
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ INFOPLIST_KEY_CFBundleDisplayName = WebContentCaptivePortalExtension;
PRODUCT_BUNDLE_IDENTIFIER = com.apple.WebKit.WebContentExtension.CaptivePortal;
PRODUCT_BUNDLE_EXECUTABLE = WebContentCaptivePortalExtension;
PRODUCT_BUNDLE_NAME = WebContentCaptivePortalExtension;
PRODUCT_BUNDLE_VERSION = 1.0;
1 change: 0 additions & 1 deletion Source/WebKit/Configurations/WebContentExtension.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ INFOPLIST_KEY_CFBundleDisplayName = WebContentExtension;
PRODUCT_BUNDLE_IDENTIFIER = com.apple.WebKit.WebContentExtension;
PRODUCT_BUNDLE_EXECUTABLE = WebContentExtension;
PRODUCT_BUNDLE_NAME = WebContentExtension;
PRODUCT_BUNDLE_VERSION = 1.0;
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<key>CFBundleExecutable</key>
<string>${PRODUCT_BUNDLE_EXECUTABLE}</string>
<key>CFBundleVersion</key>
<string>${PRODUCT_BUNDLE_VERSION}</string>
<string>${BUNDLE_VERSION}</string>
<key>CFBundleName</key>
<string>${PRODUCT_BUNDLE_NAME}</string>
</dict>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<key>CFBundleExecutable</key>
<string>${PRODUCT_BUNDLE_EXECUTABLE}</string>
<key>CFBundleVersion</key>
<string>${PRODUCT_BUNDLE_VERSION}</string>
<string>${BUNDLE_VERSION}</string>
<key>CFBundleName</key>
<string>${PRODUCT_BUNDLE_NAME}</string>
</dict>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<key>CFBundleExecutable</key>
<string>${PRODUCT_BUNDLE_EXECUTABLE}</string>
<key>CFBundleVersion</key>
<string>${PRODUCT_BUNDLE_VERSION}</string>
<string>${BUNDLE_VERSION}</string>
<key>CFBundleName</key>
<string>${PRODUCT_BUNDLE_NAME}</string>
</dict>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<key>CFBundleExecutable</key>
<string>${PRODUCT_BUNDLE_EXECUTABLE}</string>
<key>CFBundleVersion</key>
<string>${PRODUCT_BUNDLE_VERSION}</string>
<string>${BUNDLE_VERSION}</string>
<key>CFBundleName</key>
<string>${PRODUCT_BUNDLE_NAME}</string>
</dict>
Expand Down

0 comments on commit 72e51ec

Please sign in to comment.