Changeset 143543 in webkit


Ignore:
Timestamp:
Feb 20, 2013 5:29:03 PM (11 years ago)
Author:
mrowe@apple.com
Message:

<https://webkit.org/b/110409> Remove duplication between 32- and 64-bit PluginService plists.

Reviewed by Dan Bernstein.

The only difference between the plists was the CFBundleIdentifier. Since the values are the
same as the product name, we can just use the value of the PRODUCT_NAME configuration setting.

  • Configurations/PluginService.32.xcconfig:
  • Configurations/PluginService.64.xcconfig:
  • PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist: Renamed from Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32/Info.plist.
  • PluginProcess/EntryPoint/mac/XPCService/PluginService.64/Info.plist: Removed.
Location:
trunk/Source/WebKit2
Files:
1 deleted
3 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r143537 r143543  
     12013-02-20  Mark Rowe  <mrowe@apple.com>
     2
     3        <https://webkit.org/b/110409> Remove duplication between 32- and 64-bit PluginService plists.
     4
     5        Reviewed by Dan Bernstein.
     6
     7        The only difference between the plists was the CFBundleIdentifier. Since the values are the
     8        same as the product name, we can just use the value of the PRODUCT_NAME configuration setting.
     9
     10        * Configurations/PluginService.32.xcconfig:
     11        * Configurations/PluginService.64.xcconfig:
     12        * PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist: Renamed from Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32/Info.plist.
     13        * PluginProcess/EntryPoint/mac/XPCService/PluginService.64/Info.plist: Removed.
     14
    1152013-02-20  Simon Fraser  <simon.fraser@apple.com>
    216
  • trunk/Source/WebKit2/Configurations/PluginService.32.xcconfig

    r142428 r143543  
    2626ARCHS = i386;
    2727PRODUCT_NAME = com.apple.WebKit.Plugin.32;
    28 INFOPLIST_FILE = PluginProcess/EntryPoint/mac/XPCService/PluginService.32/Info.plist;
     28INFOPLIST_FILE = PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist;
    2929
    3030// Since this service is only used in production builds, in debug and release builds
  • trunk/Source/WebKit2/Configurations/PluginService.64.xcconfig

    r142428 r143543  
    2626ARCHS = x86_64;
    2727PRODUCT_NAME = com.apple.WebKit.Plugin.64;
    28 INFOPLIST_FILE = PluginProcess/EntryPoint/mac/XPCService/PluginService.64/Info.plist;
     28INFOPLIST_FILE = PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist;
    2929
    3030// Since this service is only used in production builds, in debug and release builds
  • trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist

    r143542 r143543  
    1010        <string>${EXECUTABLE_NAME}</string>
    1111        <key>CFBundleIdentifier</key>
    12         <string>com.apple.WebKit.Plugin.64</string>
     12        <string>${PRODUCT_NAME}</string>
    1313        <key>CFBundleInfoDictionaryVersion</key>
    1414        <string>6.0</string>
Note: See TracChangeset for help on using the changeset viewer.