Commit ac70e487 by Jamie Madill

Fix missing generate projects call.

BUG=angle:550 Change-Id: I6c9cfa1d5ceb1660af504982b7abdc39f3024b84 Reviewed-on: https://chromium-review.googlesource.com/187542Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Tested-by: 's avatarJamie Madill <jmadill@chromium.org>
parent 42f529e9
...@@ -114,7 +114,6 @@ ...@@ -114,7 +114,6 @@
<None Include="..\..\src\compiler\preprocessor\Tokenizer.l"/> <None Include="..\..\src\compiler\preprocessor\Tokenizer.l"/>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="..\..\src\compiler\preprocessor\length_limits.h"/>
<ClInclude Include="..\..\src\compiler\preprocessor\Tokenizer.h"/> <ClInclude Include="..\..\src\compiler\preprocessor\Tokenizer.h"/>
<ClInclude Include="..\..\src\compiler\preprocessor\Lexer.h"/> <ClInclude Include="..\..\src\compiler\preprocessor\Lexer.h"/>
<ClInclude Include="..\..\src\compiler\preprocessor\Token.h"/> <ClInclude Include="..\..\src\compiler\preprocessor\Token.h"/>
...@@ -124,9 +123,9 @@ ...@@ -124,9 +123,9 @@
<ClInclude Include="..\..\src\compiler\preprocessor\Macro.h"/> <ClInclude Include="..\..\src\compiler\preprocessor\Macro.h"/>
<ClInclude Include="..\..\src\compiler\preprocessor\pp_utils.h"/> <ClInclude Include="..\..\src\compiler\preprocessor\pp_utils.h"/>
<ClInclude Include="..\..\src\compiler\preprocessor\Input.h"/> <ClInclude Include="..\..\src\compiler\preprocessor\Input.h"/>
<ClInclude Include="..\..\src\compiler\preprocessor\SourceLocation.h"/>
<ClInclude Include="..\..\src\compiler\preprocessor\numeric_lex.h"/> <ClInclude Include="..\..\src\compiler\preprocessor\numeric_lex.h"/>
<ClInclude Include="..\..\src\compiler\preprocessor\DirectiveParser.h"/> <ClInclude Include="..\..\src\compiler\preprocessor\DirectiveParser.h"/>
<ClInclude Include="..\..\src\compiler\preprocessor\SourceLocation.h"/>
<ClInclude Include="..\..\src\compiler\preprocessor\DiagnosticsBase.h"/> <ClInclude Include="..\..\src\compiler\preprocessor\DiagnosticsBase.h"/>
<ClInclude Include="..\..\src\compiler\preprocessor\DirectiveHandlerBase.h"/> <ClInclude Include="..\..\src\compiler\preprocessor\DirectiveHandlerBase.h"/>
</ItemGroup> </ItemGroup>
......
...@@ -19,9 +19,6 @@ ...@@ -19,9 +19,6 @@
<None Include="..\..\src\compiler\preprocessor\ExpressionParser.y"> <None Include="..\..\src\compiler\preprocessor\ExpressionParser.y">
<Filter>compiler\preprocessor</Filter> <Filter>compiler\preprocessor</Filter>
</None> </None>
<ClInclude Include="..\..\src\compiler\preprocessor\length_limits.h">
<Filter>compiler\preprocessor</Filter>
</ClInclude>
<ClCompile Include="..\..\src\compiler\preprocessor\Tokenizer.cpp"> <ClCompile Include="..\..\src\compiler\preprocessor\Tokenizer.cpp">
<Filter>compiler\preprocessor</Filter> <Filter>compiler\preprocessor</Filter>
</ClCompile> </ClCompile>
...@@ -73,18 +70,18 @@ ...@@ -73,18 +70,18 @@
<ClInclude Include="..\..\src\compiler\preprocessor\Input.h"> <ClInclude Include="..\..\src\compiler\preprocessor\Input.h">
<Filter>compiler\preprocessor</Filter> <Filter>compiler\preprocessor</Filter>
</ClInclude> </ClInclude>
<ClCompile Include="..\..\src\compiler\preprocessor\DirectiveParser.cpp"> <ClInclude Include="..\..\src\compiler\preprocessor\SourceLocation.h">
<Filter>compiler\preprocessor</Filter> <Filter>compiler\preprocessor</Filter>
</ClCompile> </ClInclude>
<ClInclude Include="..\..\src\compiler\preprocessor\numeric_lex.h"> <ClInclude Include="..\..\src\compiler\preprocessor\numeric_lex.h">
<Filter>compiler\preprocessor</Filter> <Filter>compiler\preprocessor</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="..\..\src\compiler\preprocessor\DirectiveParser.h"> <ClInclude Include="..\..\src\compiler\preprocessor\DirectiveParser.h">
<Filter>compiler\preprocessor</Filter> <Filter>compiler\preprocessor</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="..\..\src\compiler\preprocessor\SourceLocation.h"> <ClCompile Include="..\..\src\compiler\preprocessor\DirectiveParser.cpp">
<Filter>compiler\preprocessor</Filter> <Filter>compiler\preprocessor</Filter>
</ClInclude> </ClCompile>
<ClInclude Include="..\..\src\compiler\preprocessor\DiagnosticsBase.h"> <ClInclude Include="..\..\src\compiler\preprocessor\DiagnosticsBase.h">
<Filter>compiler\preprocessor</Filter> <Filter>compiler\preprocessor</Filter>
</ClInclude> </ClInclude>
......
...@@ -132,6 +132,7 @@ ...@@ -132,6 +132,7 @@
<ClInclude Include="..\..\src\compiler\translator\OutputGLSL.h"/> <ClInclude Include="..\..\src\compiler\translator\OutputGLSL.h"/>
<ClInclude Include="..\..\src\compiler\translator\FlagStd140Structs.h"/> <ClInclude Include="..\..\src\compiler\translator\FlagStd140Structs.h"/>
<ClInclude Include="..\..\src\compiler\translator\MapLongVariableNames.h"/> <ClInclude Include="..\..\src\compiler\translator\MapLongVariableNames.h"/>
<ClInclude Include="..\..\src\compiler\translator\length_limits.h"/>
<ClInclude Include="..\..\src\compiler\translator\RewriteElseBlocks.h"/> <ClInclude Include="..\..\src\compiler\translator\RewriteElseBlocks.h"/>
<ClInclude Include="..\..\src\compiler\translator\PoolAlloc.h"/> <ClInclude Include="..\..\src\compiler\translator\PoolAlloc.h"/>
<ClInclude Include="..\..\src\compiler\translator\DetectDiscontinuity.h"/> <ClInclude Include="..\..\src\compiler\translator\DetectDiscontinuity.h"/>
......
...@@ -138,6 +138,9 @@ ...@@ -138,6 +138,9 @@
<ClInclude Include="..\..\src\compiler\translator\MapLongVariableNames.h"> <ClInclude Include="..\..\src\compiler\translator\MapLongVariableNames.h">
<Filter>src\compiler\translator</Filter> <Filter>src\compiler\translator</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="..\..\src\compiler\translator\length_limits.h">
<Filter>src\compiler\translator</Filter>
</ClInclude>
<ClInclude Include="..\..\src\compiler\translator\RewriteElseBlocks.h"> <ClInclude Include="..\..\src\compiler\translator\RewriteElseBlocks.h">
<Filter>src\compiler\translator</Filter> <Filter>src\compiler\translator</Filter>
</ClInclude> </ClInclude>
......
...@@ -132,6 +132,7 @@ ...@@ -132,6 +132,7 @@
<ClInclude Include="..\..\src\compiler\translator\OutputGLSL.h"/> <ClInclude Include="..\..\src\compiler\translator\OutputGLSL.h"/>
<ClInclude Include="..\..\src\compiler\translator\FlagStd140Structs.h"/> <ClInclude Include="..\..\src\compiler\translator\FlagStd140Structs.h"/>
<ClInclude Include="..\..\src\compiler\translator\MapLongVariableNames.h"/> <ClInclude Include="..\..\src\compiler\translator\MapLongVariableNames.h"/>
<ClInclude Include="..\..\src\compiler\translator\length_limits.h"/>
<ClInclude Include="..\..\src\compiler\translator\RewriteElseBlocks.h"/> <ClInclude Include="..\..\src\compiler\translator\RewriteElseBlocks.h"/>
<ClInclude Include="..\..\src\compiler\translator\PoolAlloc.h"/> <ClInclude Include="..\..\src\compiler\translator\PoolAlloc.h"/>
<ClInclude Include="..\..\src\compiler\translator\DetectDiscontinuity.h"/> <ClInclude Include="..\..\src\compiler\translator\DetectDiscontinuity.h"/>
......
...@@ -138,6 +138,9 @@ ...@@ -138,6 +138,9 @@
<ClInclude Include="..\..\src\compiler\translator\MapLongVariableNames.h"> <ClInclude Include="..\..\src\compiler\translator\MapLongVariableNames.h">
<Filter>src\compiler\translator</Filter> <Filter>src\compiler\translator</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="..\..\src\compiler\translator\length_limits.h">
<Filter>src\compiler\translator</Filter>
</ClInclude>
<ClInclude Include="..\..\src\compiler\translator\RewriteElseBlocks.h"> <ClInclude Include="..\..\src\compiler\translator\RewriteElseBlocks.h">
<Filter>src\compiler\translator</Filter> <Filter>src\compiler\translator</Filter>
</ClInclude> </ClInclude>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment