<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[184215] trunk/Source/WebKit2</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/184215">184215</a></dd>
<dt>Author</dt> <dd>andersca@apple.com</dd>
<dt>Date</dt> <dd>2015-05-12 13:46:34 -0700 (Tue, 12 May 2015)</dd>
</dl>

<h3>Log Message</h3>
<pre>Production builds should link against the shims directly
https://bugs.webkit.org/show_bug.cgi?id=144922
rdar://problem/19708579

Reviewed by Dan Bernstein.

* Configurations/NetworkService.xcconfig:
Point to an Info.plist that has DYLD_INSERT_LIBRARIES set on 10.10 and earlier.
Link directly against SecItemShim.dylib where possible.

* Configurations/PluginProcessShim.xcconfig:
Set the install name and install path.

* Configurations/PluginService.32.xcconfig:
Point to an Info.plist that has DYLD_INSERT_LIBRARIES set on 10.10 and earlier.
Link directly against PluginProcessShim.dylib where possible.

* Configurations/PluginService.64.xcconfig:
Point to an Info.plist that has DYLD_INSERT_LIBRARIES set on 10.10 and earlier.
Link directly against PluginProcessShim.dylib where possible.

* Configurations/SecItemShim.xcconfig:
Set the install name and install path.

* Configurations/WebContentService.xcconfig:
Point to an Info.plist that has DYLD_INSERT_LIBRARIES set on 10.10 and earlier.
Link directly against WebProcessShim.dylib where possible.

* Configurations/WebProcessShim.xcconfig:
Set the install name and install path.

* NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX-10.9-10.10.plist: Copied from Source/WebKit2/NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX.plist.
* NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX.plist:
Add an Info.plist for 10.9 and 10.10 and remove DYLD_INSERT_LIBRARIES from the non-legacy plist.

* PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64-10.9-10.10.Info.plist: Copied from Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist.
* PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist:
Add an Info.plist for 10.9 and 10.10 and remove DYLD_INSERT_LIBRARIES from the non-legacy plist.

* WebKit2.xcodeproj/project.pbxproj:
Add new files.

* WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX-10.9-10.10.plist: Copied from Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX.plist.
* WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX.plist:
Add an Info.plist for 10.9 and 10.10 and remove DYLD_INSERT_LIBRARIES from the non-legacy plist.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebKit2ChangeLog">trunk/Source/WebKit2/ChangeLog</a></li>
<li><a href="#trunkSourceWebKit2ConfigurationsNetworkServicexcconfig">trunk/Source/WebKit2/Configurations/NetworkService.xcconfig</a></li>
<li><a href="#trunkSourceWebKit2ConfigurationsPluginProcessShimxcconfig">trunk/Source/WebKit2/Configurations/PluginProcessShim.xcconfig</a></li>
<li><a href="#trunkSourceWebKit2ConfigurationsPluginService32xcconfig">trunk/Source/WebKit2/Configurations/PluginService.32.xcconfig</a></li>
<li><a href="#trunkSourceWebKit2ConfigurationsPluginService64xcconfig">trunk/Source/WebKit2/Configurations/PluginService.64.xcconfig</a></li>
<li><a href="#trunkSourceWebKit2ConfigurationsSecItemShimxcconfig">trunk/Source/WebKit2/Configurations/SecItemShim.xcconfig</a></li>
<li><a href="#trunkSourceWebKit2ConfigurationsWebContentServicexcconfig">trunk/Source/WebKit2/Configurations/WebContentService.xcconfig</a></li>
<li><a href="#trunkSourceWebKit2ConfigurationsWebProcessShimxcconfig">trunk/Source/WebKit2/Configurations/WebProcessShim.xcconfig</a></li>
<li><a href="#trunkSourceWebKit2NetworkProcessEntryPointmacXPCServiceNetworkServiceInfoOSXplist">trunk/Source/WebKit2/NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX.plist</a></li>
<li><a href="#trunkSourceWebKit2PluginProcessEntryPointmacXPCServicePluginService3264Infoplist">trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist</a></li>
<li><a href="#trunkSourceWebKit2WebKit2xcodeprojprojectpbxproj">trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj</a></li>
<li><a href="#trunkSourceWebKit2WebProcessEntryPointmacXPCServiceWebContentServiceInfoOSXplist">trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX.plist</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkSourceWebKit2NetworkProcessEntryPointmacXPCServiceNetworkServiceInfoOSX1091010plist">trunk/Source/WebKit2/NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX-10.9-10.10.plist</a></li>
<li><a href="#trunkSourceWebKit2PluginProcessEntryPointmacXPCServicePluginService32641091010Infoplist">trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64-10.9-10.10.Info.plist</a></li>
<li><a href="#trunkSourceWebKit2WebProcessEntryPointmacXPCServiceWebContentServiceInfoOSX1091010plist">trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX-10.9-10.10.plist</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebKit2ChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/ChangeLog (184214 => 184215)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/ChangeLog        2015-05-12 19:49:16 UTC (rev 184214)
+++ trunk/Source/WebKit2/ChangeLog        2015-05-12 20:46:34 UTC (rev 184215)
</span><span class="lines">@@ -1,3 +1,51 @@
</span><ins>+2015-05-12  Anders Carlsson  &lt;andersca@apple.com&gt;
+
+        Production builds should link against the shims directly
+        https://bugs.webkit.org/show_bug.cgi?id=144922
+        rdar://problem/19708579
+
+        Reviewed by Dan Bernstein.
+
+        * Configurations/NetworkService.xcconfig:
+        Point to an Info.plist that has DYLD_INSERT_LIBRARIES set on 10.10 and earlier.
+        Link directly against SecItemShim.dylib where possible.
+
+        * Configurations/PluginProcessShim.xcconfig:
+        Set the install name and install path.
+
+        * Configurations/PluginService.32.xcconfig:
+        Point to an Info.plist that has DYLD_INSERT_LIBRARIES set on 10.10 and earlier.
+        Link directly against PluginProcessShim.dylib where possible.
+
+        * Configurations/PluginService.64.xcconfig:
+        Point to an Info.plist that has DYLD_INSERT_LIBRARIES set on 10.10 and earlier.
+        Link directly against PluginProcessShim.dylib where possible.
+
+        * Configurations/SecItemShim.xcconfig:
+        Set the install name and install path.
+
+        * Configurations/WebContentService.xcconfig:
+        Point to an Info.plist that has DYLD_INSERT_LIBRARIES set on 10.10 and earlier.
+        Link directly against WebProcessShim.dylib where possible.
+
+        * Configurations/WebProcessShim.xcconfig:
+        Set the install name and install path.
+
+        * NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX-10.9-10.10.plist: Copied from Source/WebKit2/NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX.plist.
+        * NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX.plist:
+        Add an Info.plist for 10.9 and 10.10 and remove DYLD_INSERT_LIBRARIES from the non-legacy plist.
+
+        * PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64-10.9-10.10.Info.plist: Copied from Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist.
+        * PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist:
+        Add an Info.plist for 10.9 and 10.10 and remove DYLD_INSERT_LIBRARIES from the non-legacy plist.
+
+        * WebKit2.xcodeproj/project.pbxproj:
+        Add new files.
+
+        * WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX-10.9-10.10.plist: Copied from Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX.plist.
+        * WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX.plist:
+        Add an Info.plist for 10.9 and 10.10 and remove DYLD_INSERT_LIBRARIES from the non-legacy plist.
+
</ins><span class="cx"> 2015-05-12  Alexey Proskuryakov  &lt;ap@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Undo a mistaken part of r184211.
</span></span></pre></div>
<a id="trunkSourceWebKit2ConfigurationsNetworkServicexcconfig"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/Configurations/NetworkService.xcconfig (184214 => 184215)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/Configurations/NetworkService.xcconfig        2015-05-12 19:49:16 UTC (rev 184214)
+++ trunk/Source/WebKit2/Configurations/NetworkService.xcconfig        2015-05-12 20:46:34 UTC (rev 184215)
</span><span class="lines">@@ -28,5 +28,12 @@
</span><span class="cx"> PRODUCT_NAME = com.apple.WebKit.Networking;
</span><span class="cx"> INFOPLIST_FILE[sdk=iphone*] = NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-iOS.plist;
</span><span class="cx"> INFOPLIST_FILE[sdk=macosx*] = NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX.plist;
</span><ins>+INFOPLIST_FILE[sdk=macosx10.9*] = NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX-10.9-10.10.plist;
+INFOPLIST_FILE[sdk=macosx10.10*] = NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX-10.9-10.10.plist;
</ins><span class="cx"> 
</span><span class="cx"> CODE_SIGN_ENTITLEMENTS[sdk=iphone*] = Configurations/Network-iOS.entitlements;
</span><ins>+
+OTHER_LDFLAGS = $(inherited) $(OTHER_LDFLAGS_VERSIONED_FRAMEWORK_PATH) $(OTHER_LDFLAGS_PLATFORM);
+OTHER_LDFLAGS_PLATFORM[sdk=macosx*] = $(BUILT_PRODUCTS_DIR)/SecItemShim.dylib;
+OTHER_LDFLAGS_PLATFORM[sdk=macosx10.9*] = ;
+OTHER_LDFLAGS_PLATFORM[sdk=macosx10.10*] = ;
</ins></span></pre></div>
<a id="trunkSourceWebKit2ConfigurationsPluginProcessShimxcconfig"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/Configurations/PluginProcessShim.xcconfig (184214 => 184215)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/Configurations/PluginProcessShim.xcconfig        2015-05-12 19:49:16 UTC (rev 184214)
+++ trunk/Source/WebKit2/Configurations/PluginProcessShim.xcconfig        2015-05-12 20:46:34 UTC (rev 184215)
</span><span class="lines">@@ -25,5 +25,8 @@
</span><span class="cx"> 
</span><span class="cx"> #include &quot;Shim.xcconfig&quot;
</span><span class="cx"> 
</span><ins>+INSTALL_PATH_ACTUAL = $(WEBKIT_FRAMEWORKS_DIR)/WebKit.framework/Versions/A/PluginProcess.app/Contents/MacOS;
+DYLIB_INSTALL_NAME_BASE = $(NORMAL_WEBKIT_FRAMEWORKS_DIR)/WebKit.framework/Versions/A/PluginProcess.app/Contents/MacOS;
+
</ins><span class="cx"> OTHER_LDFLAGS = $(ASAN_OTHER_LDFLAGS) $(OTHER_LDFLAGS_PLATFORM);
</span><span class="cx"> OTHER_LDFLAGS_PLATFORM[sdk=macosx*] = -framework AppKit -framework Carbon -framework QuartzCore;
</span></span></pre></div>
<a id="trunkSourceWebKit2ConfigurationsPluginService32xcconfig"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/Configurations/PluginService.32.xcconfig (184214 => 184215)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/Configurations/PluginService.32.xcconfig        2015-05-12 19:49:16 UTC (rev 184214)
+++ trunk/Source/WebKit2/Configurations/PluginService.32.xcconfig        2015-05-12 20:46:34 UTC (rev 184215)
</span><span class="lines">@@ -31,9 +31,13 @@
</span><span class="cx"> 
</span><span class="cx"> PRODUCT_NAME = com.apple.WebKit.Plugin.32;
</span><span class="cx"> INFOPLIST_FILE = PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist;
</span><ins>+INFOPLIST_FILE[sdk=macosx10.9*] = PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64-10.9-10.10.Info.plist;
+INFOPLIST_FILE[sdk=macosx10.10] = PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64-10.9-10.10.Info.plist;
</ins><span class="cx"> 
</span><span class="cx"> OTHER_LDFLAGS = $(OTHER_LDFLAGS) $(OTHER_LDFLAGS_PLATFORM) $(OTHER_LDFLAGS_VERSIONED_FRAMEWORK_PATH);
</span><del>-OTHER_LDFLAGS_PLATFORM[sdk=macosx*] = -framework AppKit;
</del><ins>+OTHER_LDFLAGS_PLATFORM[sdk=macosx*] = -framework AppKit $(BUILT_PRODUCTS_DIR)/PluginProcessShim.dylib;
+OTHER_LDFLAGS_PLATFORM[sdk=macosx10.9*] = -framework AppKit;
+OTHER_LDFLAGS_PLATFORM[sdk=macosx10.10*] = -framework AppKit;
</ins><span class="cx"> 
</span><span class="cx"> CODE_SIGN_ENTITLEMENTS = Configurations/PluginService.entitlements;
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebKit2ConfigurationsPluginService64xcconfig"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/Configurations/PluginService.64.xcconfig (184214 => 184215)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/Configurations/PluginService.64.xcconfig        2015-05-12 19:49:16 UTC (rev 184214)
+++ trunk/Source/WebKit2/Configurations/PluginService.64.xcconfig        2015-05-12 20:46:34 UTC (rev 184215)
</span><span class="lines">@@ -31,9 +31,13 @@
</span><span class="cx"> 
</span><span class="cx"> PRODUCT_NAME = com.apple.WebKit.Plugin.64;
</span><span class="cx"> INFOPLIST_FILE = PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist;
</span><ins>+INFOPLIST_FILE[sdk=macosx10.9*] = PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64-10.9-10.10.Info.plist;
+INFOPLIST_FILE[sdk=macosx10.10] = PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64-10.9-10.10.Info.plist;
</ins><span class="cx"> 
</span><span class="cx"> OTHER_LDFLAGS = $(OTHER_LDFLAGS) $(OTHER_LDFLAGS_PLATFORM) $(OTHER_LDFLAGS_VERSIONED_FRAMEWORK_PATH);
</span><del>-OTHER_LDFLAGS_PLATFORM[sdk=macosx*] = -framework AppKit;
</del><ins>+OTHER_LDFLAGS_PLATFORM[sdk=macosx*] = -framework AppKit $(BUILT_PRODUCTS_DIR)/PluginProcessShim.dylib;
+OTHER_LDFLAGS_PLATFORM[sdk=macosx10.9*] = -framework AppKit;
+OTHER_LDFLAGS_PLATFORM[sdk=macosx10.10*] = -framework AppKit;
</ins><span class="cx"> 
</span><span class="cx"> CODE_SIGN_ENTITLEMENTS = Configurations/PluginService.entitlements;
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebKit2ConfigurationsSecItemShimxcconfig"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/Configurations/SecItemShim.xcconfig (184214 => 184215)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/Configurations/SecItemShim.xcconfig        2015-05-12 19:49:16 UTC (rev 184214)
+++ trunk/Source/WebKit2/Configurations/SecItemShim.xcconfig        2015-05-12 20:46:34 UTC (rev 184215)
</span><span class="lines">@@ -25,5 +25,8 @@
</span><span class="cx"> 
</span><span class="cx"> #include &quot;Shim.xcconfig&quot;
</span><span class="cx"> 
</span><ins>+INSTALL_PATH_ACTUAL[sdk=macosx*] = $(WEBKIT_FRAMEWORKS_DIR)/WebKit.framework/Versions/A/NetworkProcess.app/Contents/MacOS;
+DYLIB_INSTALL_NAME_BASE[sdk=macosx*] = $(NORMAL_WEBKIT_FRAMEWORKS_DIR)/WebKit.framework/Versions/A/NetworkProcess.app/Contents/MacOS;
+
</ins><span class="cx"> OTHER_LDFLAGS = $(ASAN_OTHER_LDFLAGS) $(OTHER_LDFLAGS_PLATFORM);
</span><span class="cx"> OTHER_LDFLAGS_PLATFORM[sdk=macosx*] = -framework Security;
</span></span></pre></div>
<a id="trunkSourceWebKit2ConfigurationsWebContentServicexcconfig"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/Configurations/WebContentService.xcconfig (184214 => 184215)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/Configurations/WebContentService.xcconfig        2015-05-12 19:49:16 UTC (rev 184214)
+++ trunk/Source/WebKit2/Configurations/WebContentService.xcconfig        2015-05-12 20:46:34 UTC (rev 184215)
</span><span class="lines">@@ -28,6 +28,8 @@
</span><span class="cx"> PRODUCT_NAME = com.apple.WebKit.WebContent;
</span><span class="cx"> INFOPLIST_FILE[sdk=iphone*] = WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-iOS.plist;
</span><span class="cx"> INFOPLIST_FILE[sdk=macosx*] = WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX.plist;
</span><ins>+INFOPLIST_FILE[sdk=macosx10.9*] = WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX-10.9-10.10.plist;
+INFOPLIST_FILE[sdk=macosx10.10*] = WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX-10.9-10.10.plist;
</ins><span class="cx"> 
</span><span class="cx"> BUNDLE_LOCALIZATION_KEY[sdk=iphone*] = CFBundleFollowParentLocalization;
</span><span class="cx"> BUNDLE_LOCALIZATION_KEY = $(BUNDLE_LOCALIZATION_KEY_$(PLATFORM_NAME)_$(TARGET_MAC_OS_X_VERSION_MAJOR));
</span><span class="lines">@@ -38,4 +40,6 @@
</span><span class="cx"> CODE_SIGN_ENTITLEMENTS[sdk=iphoneos*] = Configurations/WebContent-iOS.entitlements;
</span><span class="cx"> 
</span><span class="cx"> OTHER_LDFLAGS = $(inherited) $(OTHER_LDFLAGS_VERSIONED_FRAMEWORK_PATH) $(OTHER_LDFLAGS_PLATFORM);
</span><del>-OTHER_LDFLAGS_PLATFORM[sdk=macosx*] = -framework AppKit;
</del><ins>+OTHER_LDFLAGS_PLATFORM[sdk=macosx*] = -framework AppKit $(BUILT_PRODUCTS_DIR)/WebProcessShim.dylib;
+OTHER_LDFLAGS_PLATFORM[sdk=macosx10.9*] = -framework AppKit;
+OTHER_LDFLAGS_PLATFORM[sdk=macosx10.10*] = -framework AppKit;
</ins></span></pre></div>
<a id="trunkSourceWebKit2ConfigurationsWebProcessShimxcconfig"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/Configurations/WebProcessShim.xcconfig (184214 => 184215)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/Configurations/WebProcessShim.xcconfig        2015-05-12 19:49:16 UTC (rev 184214)
+++ trunk/Source/WebKit2/Configurations/WebProcessShim.xcconfig        2015-05-12 20:46:34 UTC (rev 184215)
</span><span class="lines">@@ -25,5 +25,8 @@
</span><span class="cx"> 
</span><span class="cx"> #include &quot;Shim.xcconfig&quot;
</span><span class="cx"> 
</span><ins>+INSTALL_PATH_ACTUAL = $(WEBKIT_FRAMEWORKS_DIR)/WebKit.framework/Versions/A/WebProcess.app/Contents/MacOS;
+DYLIB_INSTALL_NAME_BASE = $(NORMAL_WEBKIT_FRAMEWORKS_DIR)/WebKit.framework/Versions/A/WebProcess.app/Contents/MacOS;
+
</ins><span class="cx"> OTHER_LDFLAGS = $(ASAN_OTHER_LDFLAGS) $(OTHER_LDFLAGS_PLATFORM);
</span><span class="cx"> OTHER_LDFLAGS_PLATFORM[sdk=macosx*] = -framework CoreServices -framework Security;
</span></span></pre></div>
<a id="trunkSourceWebKit2NetworkProcessEntryPointmacXPCServiceNetworkServiceInfoOSX1091010plistfromrev184214trunkSourceWebKit2NetworkProcessEntryPointmacXPCServiceNetworkServiceInfoOSXplist"></a>
<div class="copfile"><h4>Copied: trunk/Source/WebKit2/NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX-10.9-10.10.plist (from rev 184214, trunk/Source/WebKit2/NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX.plist) (0 => 184215)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX-10.9-10.10.plist                                (rev 0)
+++ trunk/Source/WebKit2/NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX-10.9-10.10.plist        2015-05-12 20:46:34 UTC (rev 184215)
</span><span class="lines">@@ -0,0 +1,50 @@
</span><ins>+&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
+&lt;!DOCTYPE plist PUBLIC &quot;-//Apple//DTD PLIST 1.0//EN&quot; &quot;http://www.apple.com/DTDs/PropertyList-1.0.dtd&quot;&gt;
+&lt;plist version=&quot;1.0&quot;&gt;
+&lt;dict&gt;
+        &lt;key&gt;CFBundleGetInfoString&lt;/key&gt;
+        &lt;string&gt;${BUNDLE_VERSION}, Copyright 2003-2015 Apple Inc.&lt;/string&gt;
+        &lt;key&gt;CFBundleDevelopmentRegion&lt;/key&gt;
+        &lt;string&gt;English&lt;/string&gt;
+        &lt;key&gt;CFBundleExecutable&lt;/key&gt;
+        &lt;string&gt;${EXECUTABLE_NAME}&lt;/string&gt;
+        &lt;key&gt;CFBundleIdentifier&lt;/key&gt;
+        &lt;string&gt;com.apple.WebKit.Networking&lt;/string&gt;
+        &lt;key&gt;CFBundleInfoDictionaryVersion&lt;/key&gt;
+        &lt;string&gt;6.0&lt;/string&gt;
+        &lt;key&gt;CFBundleName&lt;/key&gt;
+        &lt;string&gt;${PRODUCT_NAME}&lt;/string&gt;
+        &lt;key&gt;CFBundlePackageType&lt;/key&gt;
+        &lt;string&gt;XPC!&lt;/string&gt;
+        &lt;key&gt;CFBundleShortVersionString&lt;/key&gt;
+        &lt;string&gt;${SHORT_VERSION_STRING}&lt;/string&gt;
+        &lt;key&gt;CFBundleSignature&lt;/key&gt;
+        &lt;string&gt;????&lt;/string&gt;
+        &lt;key&gt;CFBundleVersion&lt;/key&gt;
+        &lt;string&gt;${BUNDLE_VERSION}&lt;/string&gt;
+        &lt;key&gt;LSFileQuarantineEnabled&lt;/key&gt;
+        &lt;true/&gt;
+        &lt;key&gt;NSPrincipalClass&lt;/key&gt;
+        &lt;string&gt;NSApplication&lt;/string&gt;
+        &lt;key&gt;WebKitEntryPoint&lt;/key&gt;
+        &lt;string&gt;NetworkServiceInitializer&lt;/string&gt;
+        &lt;key&gt;LSUIElement&lt;/key&gt;
+        &lt;true/&gt;
+        &lt;key&gt;XPCService&lt;/key&gt;
+        &lt;dict&gt;
+                &lt;key&gt;ServiceType&lt;/key&gt;
+                &lt;string&gt;Application&lt;/string&gt;
+                &lt;key&gt;JoinExistingSession&lt;/key&gt;
+                &lt;true/&gt;
+                &lt;key&gt;RunLoopType&lt;/key&gt;
+                &lt;string&gt;NSRunLoop&lt;/string&gt;
+                &lt;key&gt;_MultipleInstances&lt;/key&gt;
+                &lt;true/&gt;
+                &lt;key&gt;EnvironmentVariables&lt;/key&gt;
+                &lt;dict&gt;
+                        &lt;key&gt;DYLD_INSERT_LIBRARIES&lt;/key&gt;
+                        &lt;string&gt;$(WEBKIT_FRAMEWORKS_DIR)/WebKit.framework/NetworkProcess.app/Contents/MacOS/SecItemShim.dylib&lt;/string&gt;
+                &lt;/dict&gt;
+        &lt;/dict&gt;
+&lt;/dict&gt;
+&lt;/plist&gt;
</ins></span></pre></div>
<a id="trunkSourceWebKit2NetworkProcessEntryPointmacXPCServiceNetworkServiceInfoOSXplist"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX.plist (184214 => 184215)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX.plist        2015-05-12 19:49:16 UTC (rev 184214)
+++ trunk/Source/WebKit2/NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX.plist        2015-05-12 20:46:34 UTC (rev 184215)
</span><span class="lines">@@ -40,11 +40,6 @@
</span><span class="cx">                 &lt;string&gt;NSRunLoop&lt;/string&gt;
</span><span class="cx">                 &lt;key&gt;_MultipleInstances&lt;/key&gt;
</span><span class="cx">                 &lt;true/&gt;
</span><del>-                &lt;key&gt;EnvironmentVariables&lt;/key&gt;
-                &lt;dict&gt;
-                        &lt;key&gt;DYLD_INSERT_LIBRARIES&lt;/key&gt;
-                        &lt;string&gt;$(WEBKIT_FRAMEWORKS_DIR)/WebKit.framework/NetworkProcess.app/Contents/MacOS/SecItemShim.dylib&lt;/string&gt;
-                &lt;/dict&gt;
</del><span class="cx">         &lt;/dict&gt;
</span><span class="cx"> &lt;/dict&gt;
</span><span class="cx"> &lt;/plist&gt;
</span></span></pre></div>
<a id="trunkSourceWebKit2PluginProcessEntryPointmacXPCServicePluginService32641091010Infoplistfromrev184214trunkSourceWebKit2PluginProcessEntryPointmacXPCServicePluginService3264Infoplist"></a>
<div class="copfile"><h4>Copied: trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64-10.9-10.10.Info.plist (from rev 184214, trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist) (0 => 184215)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64-10.9-10.10.Info.plist                                (rev 0)
+++ trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64-10.9-10.10.Info.plist        2015-05-12 20:46:34 UTC (rev 184215)
</span><span class="lines">@@ -0,0 +1,58 @@
</span><ins>+&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
+&lt;!DOCTYPE plist PUBLIC &quot;-//Apple//DTD PLIST 1.0//EN&quot; &quot;http://www.apple.com/DTDs/PropertyList-1.0.dtd&quot;&gt;
+&lt;plist version=&quot;1.0&quot;&gt;
+&lt;dict&gt;
+        &lt;key&gt;CFBundleGetInfoString&lt;/key&gt;
+        &lt;string&gt;${BUNDLE_VERSION}, Copyright 2003-2015 Apple Inc.&lt;/string&gt;
+        &lt;key&gt;CFBundleDevelopmentRegion&lt;/key&gt;
+        &lt;string&gt;English&lt;/string&gt;
+        &lt;key&gt;CFBundleExecutable&lt;/key&gt;
+        &lt;string&gt;${EXECUTABLE_NAME}&lt;/string&gt;
+        &lt;key&gt;CFBundleIdentifier&lt;/key&gt;
+        &lt;string&gt;${PRODUCT_NAME}&lt;/string&gt;
+        &lt;key&gt;CFBundleInfoDictionaryVersion&lt;/key&gt;
+        &lt;string&gt;6.0&lt;/string&gt;
+        &lt;key&gt;CFBundleName&lt;/key&gt;
+        &lt;string&gt;${PRODUCT_NAME}&lt;/string&gt;
+        &lt;key&gt;CFBundlePackageType&lt;/key&gt;
+        &lt;string&gt;XPC!&lt;/string&gt;
+        &lt;key&gt;CFBundleShortVersionString&lt;/key&gt;
+        &lt;string&gt;${SHORT_VERSION_STRING}&lt;/string&gt;
+        &lt;key&gt;CFBundleSignature&lt;/key&gt;
+        &lt;string&gt;????&lt;/string&gt;
+        &lt;key&gt;CFBundleVersion&lt;/key&gt;
+        &lt;string&gt;${BUNDLE_VERSION}&lt;/string&gt;
+        &lt;key&gt;LSFileQuarantineEnabled&lt;/key&gt;
+        &lt;true/&gt;
+        &lt;key&gt;NSPrincipalClass&lt;/key&gt;
+        &lt;string&gt;NSApplication&lt;/string&gt;
+        &lt;key&gt;WebKitEntryPoint&lt;/key&gt;
+        &lt;string&gt;PluginServiceInitializer&lt;/string&gt;
+        &lt;key&gt;LSUIElement&lt;/key&gt;
+        &lt;true/&gt;
+        &lt;key&gt;NSSupportsAutomaticGraphicsSwitching&lt;/key&gt;
+        &lt;true/&gt;
+        &lt;key&gt;NSSupportsAppNap&lt;/key&gt;
+        &lt;true/&gt;
+        &lt;key&gt;XPCService&lt;/key&gt;
+        &lt;dict&gt;
+                &lt;key&gt;ServiceType&lt;/key&gt;
+                &lt;string&gt;Application&lt;/string&gt;
+                &lt;key&gt;RunLoopType&lt;/key&gt;
+                &lt;string&gt;_NSApplicationMain&lt;/string&gt;
+                &lt;key&gt;JoinExistingSession&lt;/key&gt;
+                &lt;true/&gt;
+                &lt;key&gt;_MultipleInstances&lt;/key&gt;
+                &lt;true/&gt;
+                &lt;key&gt;_AbandonCoalition&lt;/key&gt;
+                &lt;true/&gt;
+                &lt;key&gt;EnvironmentVariables&lt;/key&gt;
+                &lt;dict&gt;
+                        &lt;key&gt;DYLD_INSERT_LIBRARIES&lt;/key&gt;
+                        &lt;string&gt;$(WEBKIT_FRAMEWORKS_DIR)/WebKit.framework/PluginProcess.app/Contents/MacOS/PluginProcessShim.dylib&lt;/string&gt;
+                        &lt;key&gt;NSStringDisableTagged&lt;/key&gt;
+                        &lt;string&gt;YES&lt;/string&gt;
+                &lt;/dict&gt;
+        &lt;/dict&gt;
+&lt;/dict&gt;
+&lt;/plist&gt;
</ins></span></pre></div>
<a id="trunkSourceWebKit2PluginProcessEntryPointmacXPCServicePluginService3264Infoplist"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist (184214 => 184215)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist        2015-05-12 19:49:16 UTC (rev 184214)
+++ trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist        2015-05-12 20:46:34 UTC (rev 184215)
</span><span class="lines">@@ -48,8 +48,6 @@
</span><span class="cx">                 &lt;true/&gt;
</span><span class="cx">                 &lt;key&gt;EnvironmentVariables&lt;/key&gt;
</span><span class="cx">                 &lt;dict&gt;
</span><del>-                        &lt;key&gt;DYLD_INSERT_LIBRARIES&lt;/key&gt;
-                        &lt;string&gt;$(WEBKIT_FRAMEWORKS_DIR)/WebKit.framework/PluginProcess.app/Contents/MacOS/PluginProcessShim.dylib&lt;/string&gt;
</del><span class="cx">                         &lt;key&gt;NSStringDisableTagged&lt;/key&gt;
</span><span class="cx">                         &lt;string&gt;YES&lt;/string&gt;
</span><span class="cx">                 &lt;/dict&gt;
</span></span></pre></div>
<a id="trunkSourceWebKit2WebKit2xcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj (184214 => 184215)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj        2015-05-12 19:49:16 UTC (rev 184214)
+++ trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj        2015-05-12 20:46:34 UTC (rev 184215)
</span><span class="lines">@@ -2419,6 +2419,8 @@
</span><span class="cx">                 1A64245D12DE29A100CAAE2C /* UpdateInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UpdateInfo.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A6509CD18B4146200614332 /* WKProcessPoolPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKProcessPoolPrivate.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A66BF8E18A052ED002071B4 /* WKWebViewInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKWebViewInternal.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><ins>+                1A6D141F1B0167D500785FF0 /* Info-OSX-10.9-10.10.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = &quot;Info-OSX-10.9-10.10.plist&quot;; sourceTree = &quot;&lt;group&gt;&quot;; };
+                1A6D14211B01681600785FF0 /* PluginService.32-64-10.9-10.10.Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = &quot;PluginService.32-64-10.9-10.10.Info.plist&quot;; path = &quot;PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64-10.9-10.10.Info.plist&quot;; sourceTree = SOURCE_ROOT; };
</ins><span class="cx">                 1A6F9F8E11E13EFC00DB1371 /* CommandLine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommandLine.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A6F9FB611E1408500DB1371 /* CommandLinePOSIX.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CommandLinePOSIX.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A6FB7AC11E64B6800DB1371 /* PluginView.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PluginView.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -2436,6 +2438,7 @@
</span><span class="cx">                 1A7865B816CAC71500ACE83A /* PluginProcessConnectionManagerMessages.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PluginProcessConnectionManagerMessages.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A7C6CD81378950800B9C04D /* EnvironmentVariables.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = EnvironmentVariables.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A7C6CD91378950800B9C04D /* EnvironmentVariables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EnvironmentVariables.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><ins>+                1A7DA54D1AFD8B380018239D /* Info-OSX-10.9-10.10.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = &quot;Info-OSX-10.9-10.10.plist&quot;; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 1A7E377418E4A33A003D0FFF /* WKScriptMessageHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKScriptMessageHandler.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A7E377618E4A4FE003D0FFF /* WKScriptMessage.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WKScriptMessage.mm; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A7E377718E4A4FE003D0FFF /* WKScriptMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKScriptMessage.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -6873,6 +6876,7 @@
</span><span class="cx">                         isa = PBXGroup;
</span><span class="cx">                         children = (
</span><span class="cx">                                 26659AA0185FAAED004303DD /* Info-iOS.plist */,
</span><ins>+                                1A6D141F1B0167D500785FF0 /* Info-OSX-10.9-10.10.plist */,
</ins><span class="cx">                                 BC8283A316B4BD9100A278FE /* Info-OSX.plist */,
</span><span class="cx">                         );
</span><span class="cx">                         path = NetworkService;
</span><span class="lines">@@ -6901,6 +6905,7 @@
</span><span class="cx">                 BC8283E916B4F8E200A278FE /* PluginService */ = {
</span><span class="cx">                         isa = PBXGroup;
</span><span class="cx">                         children = (
</span><ins>+                                1A6D14211B01681600785FF0 /* PluginService.32-64-10.9-10.10.Info.plist */,
</ins><span class="cx">                                 BCFCA89516DE96CB00074069 /* PluginService.32-64.Info.plist */,
</span><span class="cx">                         );
</span><span class="cx">                         name = PluginService;
</span><span class="lines">@@ -6995,6 +7000,7 @@
</span><span class="cx">                         isa = PBXGroup;
</span><span class="cx">                         children = (
</span><span class="cx">                                 375FB4731883415600BE34D4 /* Info-iOS.plist */,
</span><ins>+                                1A7DA54D1AFD8B380018239D /* Info-OSX-10.9-10.10.plist */,
</ins><span class="cx">                                 BCACC44016B24CAA00B6E092 /* Info-OSX.plist */,
</span><span class="cx">                         );
</span><span class="cx">                         path = WebContentService;
</span></span></pre></div>
<a id="trunkSourceWebKit2WebProcessEntryPointmacXPCServiceWebContentServiceInfoOSX1091010plistfromrev184214trunkSourceWebKit2WebProcessEntryPointmacXPCServiceWebContentServiceInfoOSXplist"></a>
<div class="copfile"><h4>Copied: trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX-10.9-10.10.plist (from rev 184214, trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX.plist) (0 => 184215)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX-10.9-10.10.plist                                (rev 0)
+++ trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX-10.9-10.10.plist        2015-05-12 20:46:34 UTC (rev 184215)
</span><span class="lines">@@ -0,0 +1,56 @@
</span><ins>+&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
+&lt;!DOCTYPE plist PUBLIC &quot;-//Apple//DTD PLIST 1.0//EN&quot; &quot;http://www.apple.com/DTDs/PropertyList-1.0.dtd&quot;&gt;
+&lt;plist version=&quot;1.0&quot;&gt;
+&lt;dict&gt;
+        &lt;key&gt;CFBundleGetInfoString&lt;/key&gt;
+        &lt;string&gt;${BUNDLE_VERSION}, Copyright 2003-2015 Apple Inc.&lt;/string&gt;
+        &lt;key&gt;CFBundleDevelopmentRegion&lt;/key&gt;
+        &lt;string&gt;English&lt;/string&gt;
+        &lt;key&gt;CFBundleExecutable&lt;/key&gt;
+        &lt;string&gt;${EXECUTABLE_NAME}&lt;/string&gt;
+        &lt;key&gt;CFBundleIdentifier&lt;/key&gt;
+        &lt;string&gt;com.apple.WebKit.WebContent&lt;/string&gt;
+        &lt;key&gt;CFBundleInfoDictionaryVersion&lt;/key&gt;
+        &lt;string&gt;6.0&lt;/string&gt;
+        &lt;key&gt;CFBundleName&lt;/key&gt;
+        &lt;string&gt;${PRODUCT_NAME}&lt;/string&gt;
+        &lt;key&gt;CFBundlePackageType&lt;/key&gt;
+        &lt;string&gt;XPC!&lt;/string&gt;
+        &lt;key&gt;CFBundleShortVersionString&lt;/key&gt;
+        &lt;string&gt;${SHORT_VERSION_STRING}&lt;/string&gt;
+        &lt;key&gt;CFBundleSignature&lt;/key&gt;
+        &lt;string&gt;????&lt;/string&gt;
+        &lt;key&gt;CFBundleVersion&lt;/key&gt;
+        &lt;string&gt;${BUNDLE_VERSION}&lt;/string&gt;
+        &lt;key&gt;LSFileQuarantineEnabled&lt;/key&gt;
+        &lt;true/&gt;
+        &lt;key&gt;NSPrincipalClass&lt;/key&gt;
+        &lt;string&gt;NSApplication&lt;/string&gt;
+        &lt;key&gt;WebKitEntryPoint&lt;/key&gt;
+        &lt;string&gt;WebContentServiceInitializer&lt;/string&gt;
+        &lt;key&gt;LSUIElement&lt;/key&gt;
+        &lt;true/&gt;
+        &lt;key&gt;NSSupportsAutomaticGraphicsSwitching&lt;/key&gt;
+        &lt;true/&gt;
+        &lt;key&gt;NSSupportsAppNap&lt;/key&gt;
+        &lt;true/&gt;
+        &lt;key&gt;NSMainNibFile&lt;/key&gt;
+        &lt;string&gt;WebContentProcess&lt;/string&gt;
+        &lt;key&gt;XPCService&lt;/key&gt;
+        &lt;dict&gt;
+                &lt;key&gt;JoinExistingSession&lt;/key&gt;
+                &lt;true/&gt;
+                &lt;key&gt;ServiceType&lt;/key&gt;
+                &lt;string&gt;Application&lt;/string&gt;
+                &lt;key&gt;RunLoopType&lt;/key&gt;
+                &lt;string&gt;_NSApplicationMain&lt;/string&gt;
+                &lt;key&gt;_MultipleInstances&lt;/key&gt;
+                &lt;true/&gt;
+                &lt;key&gt;EnvironmentVariables&lt;/key&gt;
+                &lt;dict&gt;
+                        &lt;key&gt;DYLD_INSERT_LIBRARIES&lt;/key&gt;
+                        &lt;string&gt;$(WEBKIT_FRAMEWORKS_DIR)/WebKit.framework/WebProcess.app/Contents/MacOS/WebProcessShim.dylib&lt;/string&gt;
+                &lt;/dict&gt;
+        &lt;/dict&gt;
+&lt;/dict&gt;
+&lt;/plist&gt;
</ins></span></pre></div>
<a id="trunkSourceWebKit2WebProcessEntryPointmacXPCServiceWebContentServiceInfoOSXplist"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX.plist (184214 => 184215)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX.plist        2015-05-12 19:49:16 UTC (rev 184214)
+++ trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX.plist        2015-05-12 20:46:34 UTC (rev 184215)
</span><span class="lines">@@ -46,11 +46,6 @@
</span><span class="cx">                 &lt;string&gt;_NSApplicationMain&lt;/string&gt;
</span><span class="cx">                 &lt;key&gt;_MultipleInstances&lt;/key&gt;
</span><span class="cx">                 &lt;true/&gt;
</span><del>-                &lt;key&gt;EnvironmentVariables&lt;/key&gt;
-                &lt;dict&gt;
-                        &lt;key&gt;DYLD_INSERT_LIBRARIES&lt;/key&gt;
-                        &lt;string&gt;$(WEBKIT_FRAMEWORKS_DIR)/WebKit.framework/WebProcess.app/Contents/MacOS/WebProcessShim.dylib&lt;/string&gt;
-                &lt;/dict&gt;
</del><span class="cx">         &lt;/dict&gt;
</span><span class="cx"> &lt;/dict&gt;
</span><span class="cx"> &lt;/plist&gt;
</span></span></pre>
</div>
</div>

</body>
</html>