Changeset 77147 in webkit


Ignore:
Timestamp:
Jan 31, 2011 11:25:46 AM (13 years ago)
Author:
jberlin@webkit.org
Message:

WebKit2: the cookies used by the WebKit2 Web Process should not go in a top-level
directory.
https://bugs.webkit.org/show_bug.cgi?id=53278

Reviewed by Steve Falkenburg.

Use the name WebKit2WebProcess since the default location for the cookies is determined
based on the process name (which is WebKit2WebProcess.exe on Windows).

  • win/WebKit2.make:

Copy the WebKit2WebProcess.resources directory into the AppleInternal bin.

  • win/WebKit2WebProcess.resources: Added.
  • win/WebKit2WebProcess.resources/Info.plist: Added.

Copied from the WebKit version of Info.plist.

  • win/WebKit2WebProcessPostBuild.cmd:

Copy the WebKit2WebProcess.resources directory into the WebKitOutPutDir's bin.

Location:
trunk/Source/WebKit2
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r77139 r77147  
     12011-01-31  Jessie Berlin  <jberlin@apple.com>
     2
     3        Reviewed by Steve Falkenburg.
     4
     5        WebKit2: the cookies used by the WebKit2 Web Process should not go in a top-level
     6        directory.
     7        https://bugs.webkit.org/show_bug.cgi?id=53278
     8
     9        Use the name WebKit2WebProcess since the default location for the cookies is determined
     10        based on the process name (which is WebKit2WebProcess.exe on Windows).
     11
     12        * win/WebKit2.make:
     13        Copy the WebKit2WebProcess.resources directory into the AppleInternal bin.
     14
     15        * win/WebKit2WebProcess.resources: Added.
     16        * win/WebKit2WebProcess.resources/Info.plist: Added.
     17        Copied from the WebKit version of Info.plist.
     18
     19        * win/WebKit2WebProcessPostBuild.cmd:
     20        Copy the WebKit2WebProcess.resources directory into the WebKitOutPutDir's bin.
     21
    1222011-01-31  Anders Carlsson  <andersca@apple.com>
    223
  • trunk/Source/WebKit2/win/WebKit2.make

    r76638 r77147  
    1818        xcopy "%ConfigurationBuildDir%\lib\*" "$(DSTROOT)\AppleInternal\lib\" /e/v/i/h/y
    1919        -xcopy "%ConfigurationBuildDir%\bin\WebKit2.resources\*" "$(DSTROOT)\AppleInternal\bin\WebKit2.resources" /e/v/i/h/y
     20        -xcopy "%ConfigurationBuildDir%\bin\WebKit2WebProcess.resources\*" "$(DSTROOT)\AppleInternal\bin\WebKit2WebProcess.resources" /e/v/i/h/y
    2021        -mkdir "$(DSTROOT)\AppleInternal\Sources\WebKit2"
    2122        xcopy "%ConfigurationBuildDir%\obj\WebKit\DerivedSources\*" "$(DSTROOT)\AppleInternal\Sources\WebKit2" /e/v/i/h/y
  • trunk/Source/WebKit2/win/WebKit2WebProcessPostBuild.cmd

    r75138 r77147  
     1mkdir 2>NUL "%OUTDIR%\..\bin\WebKit2WebProcess.resources"
     2xcopy /y /d "%PROJECTDIR%\WebKit2WebProcess.resources\*" "%OUTDIR%\..\bin\WebKit2WebProcess.resources"
     3
    14if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
Note: See TracChangeset for help on using the changeset viewer.