Changeset 174895 in webkit


Ignore:
Timestamp:
Oct 20, 2014, 11:29:55 AM (11 years ago)
Author:
mark.lam@apple.com
Message:

Fix placement of a few items in vcxproj ItemGroups.
<https://webkit.org/b/137886>

Reviewed by Geoffrey Garen.

https://webkit.org/b/137873 is likely a cut-and-paste error that manifested
because we had ClCompile and ClInclude entries mixed up in the wrong ItemGroups.
We should fix these so that ClCompile entries are in the ClCompile ItemGroup,
and ClInclude entries in the ClInclude ItemGroup. This will help reduce the
chance of future cut-and-paste errors of this nature.

Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r174894 r174895  
     12014-10-20  Mark Lam  <mark.lam@apple.com>
     2
     3        Fix placement of a few items in vcxproj ItemGroups.
     4        <https://webkit.org/b/137886>
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        https://webkit.org/b/137873 is likely a cut-and-paste error that manifested
     9        because we had ClCompile and ClInclude entries mixed up in the wrong ItemGroups.
     10        We should fix these so that ClCompile entries are in the ClCompile ItemGroup,
     11        and ClInclude entries in the ClInclude ItemGroup.  This will help reduce the
     12        chance of future cut-and-paste errors of this nature.
     13
     14        * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj:
     15        * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters:
     16
    1172014-10-20  Joseph Pecoraro  <pecoraro@apple.com>
    218
  • trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCore.vcxproj

    r174894 r174895  
    305305    <ClCompile Include="..\assembler\LinkBuffer.cpp" />
    306306    <ClCompile Include="..\assembler\MacroAssembler.cpp" />
    307     <ClInclude Include="..\API\JSCTestRunnerUtils.h" />
    308307    <ClCompile Include="..\assembler\MacroAssemblerX86Common.cpp" />
    309308    <ClCompile Include="..\bindings\ScriptFunctionCall.cpp" />
     
    624623    <ClCompile Include="..\jit\Reg.cpp" />
    625624    <ClCompile Include="..\jit\RegisterPreservationWrapperGenerator.cpp" />
     625    <ClCompile Include="..\jit\RegisterSet.cpp" />
    626626    <ClCompile Include="..\jit\Repatch.cpp" />
    627627    <ClCompile Include="..\jit\ScratchRegisterAllocator.cpp" />
     628    <ClCompile Include="..\jit\TempRegisterSet.cpp" />
    628629    <ClCompile Include="..\jit\ThunkGenerators.cpp" />
    629630    <ClCompile Include="..\llint\LLIntCLoop.cpp" />
     
    877878    <ClInclude Include="..\API\JSBase.h" />
    878879    <ClInclude Include="..\API\JSBasePrivate.h" />
     880    <ClInclude Include="..\API\JSCTestRunnerUtils.h" />
    879881    <ClInclude Include="..\API\JSCallbackConstructor.h" />
    880882    <ClInclude Include="..\API\JSCallbackFunction.h" />
     
    13501352    <ClInclude Include="..\jit\JITWriteBarrier.h" />
    13511353    <ClInclude Include="..\jit\JSInterfaceJIT.h" />
    1352     <ClCompile Include="..\jit\RegisterSet.cpp" />
    13531354    <ClInclude Include="..\jit\Reg.h" />
    13541355    <ClInclude Include="..\jit\RegisterPreservationWrapperGenerator.h" />
     
    13571358    <ClInclude Include="..\jit\ScratchRegisterAllocator.h" />
    13581359    <ClInclude Include="..\jit\SpecializedThunkJIT.h" />
    1359     <ClCompile Include="..\jit\TempRegisterSet.cpp" />
    13601360    <ClInclude Include="..\jit\TempRegisterSet.h" />
    13611361    <ClInclude Include="..\jit\ThunkGenerator.h" />
  • trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters

    r174892 r174895  
    130130      <Filter>assembler</Filter>
    131131    </ClCompile>
     132    <ClCompile Include="..\assembler\MacroAssemblerX86Common.cpp">
     133      <Filter>assembler</Filter>
     134    </ClCompile>
    132135    <ClCompile Include="..\builtins\BuiltinExecutables.cpp">
    133136      <Filter>builtins</Filter>
     
    30343037      <Filter>runtime</Filter>
    30353038    </ClInclude>
    3036     <ClCompile Include="..\assembler\MacroAssemblerX86Common.cpp">
    3037       <Filter>assembler</Filter>
    3038     </ClCompile>
    30393039    <ClInclude Include="..\runtime\IntendedStructureChain.h">
    30403040      <Filter>runtime</Filter>
Note: See TracChangeset for help on using the changeset viewer.