Changeset 174895 in webkit
- Timestamp:
- Oct 20, 2014, 11:29:55 AM (11 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r174894 r174895 1 2014-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 1 17 2014-10-20 Joseph Pecoraro <pecoraro@apple.com> 2 18 -
trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCore.vcxproj
r174894 r174895 305 305 <ClCompile Include="..\assembler\LinkBuffer.cpp" /> 306 306 <ClCompile Include="..\assembler\MacroAssembler.cpp" /> 307 <ClInclude Include="..\API\JSCTestRunnerUtils.h" />308 307 <ClCompile Include="..\assembler\MacroAssemblerX86Common.cpp" /> 309 308 <ClCompile Include="..\bindings\ScriptFunctionCall.cpp" /> … … 624 623 <ClCompile Include="..\jit\Reg.cpp" /> 625 624 <ClCompile Include="..\jit\RegisterPreservationWrapperGenerator.cpp" /> 625 <ClCompile Include="..\jit\RegisterSet.cpp" /> 626 626 <ClCompile Include="..\jit\Repatch.cpp" /> 627 627 <ClCompile Include="..\jit\ScratchRegisterAllocator.cpp" /> 628 <ClCompile Include="..\jit\TempRegisterSet.cpp" /> 628 629 <ClCompile Include="..\jit\ThunkGenerators.cpp" /> 629 630 <ClCompile Include="..\llint\LLIntCLoop.cpp" /> … … 877 878 <ClInclude Include="..\API\JSBase.h" /> 878 879 <ClInclude Include="..\API\JSBasePrivate.h" /> 880 <ClInclude Include="..\API\JSCTestRunnerUtils.h" /> 879 881 <ClInclude Include="..\API\JSCallbackConstructor.h" /> 880 882 <ClInclude Include="..\API\JSCallbackFunction.h" /> … … 1350 1352 <ClInclude Include="..\jit\JITWriteBarrier.h" /> 1351 1353 <ClInclude Include="..\jit\JSInterfaceJIT.h" /> 1352 <ClCompile Include="..\jit\RegisterSet.cpp" />1353 1354 <ClInclude Include="..\jit\Reg.h" /> 1354 1355 <ClInclude Include="..\jit\RegisterPreservationWrapperGenerator.h" /> … … 1357 1358 <ClInclude Include="..\jit\ScratchRegisterAllocator.h" /> 1358 1359 <ClInclude Include="..\jit\SpecializedThunkJIT.h" /> 1359 <ClCompile Include="..\jit\TempRegisterSet.cpp" />1360 1360 <ClInclude Include="..\jit\TempRegisterSet.h" /> 1361 1361 <ClInclude Include="..\jit\ThunkGenerator.h" /> -
trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters
r174892 r174895 130 130 <Filter>assembler</Filter> 131 131 </ClCompile> 132 <ClCompile Include="..\assembler\MacroAssemblerX86Common.cpp"> 133 <Filter>assembler</Filter> 134 </ClCompile> 132 135 <ClCompile Include="..\builtins\BuiltinExecutables.cpp"> 133 136 <Filter>builtins</Filter> … … 3034 3037 <Filter>runtime</Filter> 3035 3038 </ClInclude> 3036 <ClCompile Include="..\assembler\MacroAssemblerX86Common.cpp">3037 <Filter>assembler</Filter>3038 </ClCompile>3039 3039 <ClInclude Include="..\runtime\IntendedStructureChain.h"> 3040 3040 <Filter>runtime</Filter>
Note:
See TracChangeset
for help on using the changeset viewer.