mirror of https://github.com/grpc/grpc.git
commit
b0bb674df3
13 changed files with 653 additions and 71 deletions
@ -0,0 +1,177 @@ |
||||
/*
|
||||
* |
||||
* Copyright 2016, Google Inc. |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* * Redistributions in binary form must reproduce the above |
||||
* copyright notice, this list of conditions and the following disclaimer |
||||
* in the documentation and/or other materials provided with the |
||||
* distribution. |
||||
* * Neither the name of Google Inc. nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
* |
||||
*/ |
||||
|
||||
#include "test/cpp/util/proto_file_parser.h" |
||||
|
||||
#include <algorithm> |
||||
#include <iostream> |
||||
#include <sstream> |
||||
|
||||
#include <google/protobuf/text_format.h> |
||||
|
||||
namespace grpc { |
||||
namespace testing { |
||||
namespace { |
||||
|
||||
// Match the user input method string to the full_name from method descriptor.
|
||||
bool MethodNameMatch(const grpc::string& full_name, const grpc::string& input) { |
||||
grpc::string clean_input = input; |
||||
std::replace(clean_input.begin(), clean_input.end(), '/', '.'); |
||||
if (clean_input.size() > full_name.size()) { |
||||
return false; |
||||
} |
||||
return full_name.compare(full_name.size() - clean_input.size(), |
||||
clean_input.size(), clean_input) == 0; |
||||
} |
||||
} // namespace
|
||||
|
||||
class ErrorPrinter |
||||
: public google::protobuf::compiler::MultiFileErrorCollector { |
||||
public: |
||||
explicit ErrorPrinter(ProtoFileParser* parser) : parser_(parser) {} |
||||
|
||||
void AddError(const grpc::string& filename, int line, int column, |
||||
const grpc::string& message) GRPC_OVERRIDE { |
||||
std::ostringstream oss; |
||||
oss << "error " << filename << " " << line << " " << column << " " |
||||
<< message << "\n"; |
||||
parser_->LogError(oss.str()); |
||||
} |
||||
|
||||
void AddWarning(const grpc::string& filename, int line, int column, |
||||
const grpc::string& message) GRPC_OVERRIDE { |
||||
std::cout << "warning " << filename << " " << line << " " << column << " " |
||||
<< message << std::endl; |
||||
} |
||||
|
||||
private: |
||||
ProtoFileParser* parser_; // not owned
|
||||
}; |
||||
|
||||
ProtoFileParser::ProtoFileParser(const grpc::string& proto_path, |
||||
const grpc::string& file_name, |
||||
const grpc::string& method) |
||||
: has_error_(false) { |
||||
source_tree_.MapPath("", proto_path); |
||||
error_printer_.reset(new ErrorPrinter(this)); |
||||
importer_.reset(new google::protobuf::compiler::Importer( |
||||
&source_tree_, error_printer_.get())); |
||||
const auto* file_desc = importer_->Import(file_name); |
||||
if (!file_desc) { |
||||
LogError(""); |
||||
return; |
||||
} |
||||
dynamic_factory_.reset( |
||||
new google::protobuf::DynamicMessageFactory(importer_->pool())); |
||||
|
||||
const google::protobuf::MethodDescriptor* method_descriptor = nullptr; |
||||
for (int i = 0; !method_descriptor && i < file_desc->service_count(); i++) { |
||||
const auto* service_desc = file_desc->service(i); |
||||
for (int j = 0; j < service_desc->method_count(); j++) { |
||||
const auto* method_desc = service_desc->method(j); |
||||
if (MethodNameMatch(method_desc->full_name(), method)) { |
||||
if (method_descriptor) { |
||||
std::ostringstream error_stream("Ambiguous method names: "); |
||||
error_stream << method_descriptor->full_name() << " "; |
||||
error_stream << method_desc->full_name(); |
||||
LogError(error_stream.str()); |
||||
} |
||||
method_descriptor = method_desc; |
||||
} |
||||
} |
||||
} |
||||
if (!method_descriptor) { |
||||
LogError("Method name not found"); |
||||
} |
||||
if (has_error_) { |
||||
return; |
||||
} |
||||
full_method_name_ = method_descriptor->full_name(); |
||||
size_t last_dot = full_method_name_.find_last_of('.'); |
||||
if (last_dot != grpc::string::npos) { |
||||
full_method_name_[last_dot] = '/'; |
||||
} |
||||
full_method_name_.insert(full_method_name_.begin(), '/'); |
||||
|
||||
request_prototype_.reset( |
||||
dynamic_factory_->GetPrototype(method_descriptor->input_type())->New()); |
||||
response_prototype_.reset( |
||||
dynamic_factory_->GetPrototype(method_descriptor->output_type())->New()); |
||||
} |
||||
|
||||
ProtoFileParser::~ProtoFileParser() {} |
||||
|
||||
grpc::string ProtoFileParser::GetSerializedProto( |
||||
const grpc::string& text_format_proto, bool is_request) { |
||||
grpc::string serialized; |
||||
grpc::protobuf::Message* msg = |
||||
is_request ? request_prototype_.get() : response_prototype_.get(); |
||||
bool ok = |
||||
google::protobuf::TextFormat::ParseFromString(text_format_proto, msg); |
||||
if (!ok) { |
||||
LogError("Failed to parse text format to proto."); |
||||
return ""; |
||||
} |
||||
ok = request_prototype_->SerializeToString(&serialized); |
||||
if (!ok) { |
||||
LogError("Failed to serialize proto."); |
||||
return ""; |
||||
} |
||||
return serialized; |
||||
} |
||||
|
||||
grpc::string ProtoFileParser::GetTextFormat( |
||||
const grpc::string& serialized_proto, bool is_request) { |
||||
grpc::protobuf::Message* msg = |
||||
is_request ? request_prototype_.get() : response_prototype_.get(); |
||||
if (!msg->ParseFromString(serialized_proto)) { |
||||
LogError("Failed to deserialize proto."); |
||||
return ""; |
||||
} |
||||
grpc::string text_format; |
||||
if (!google::protobuf::TextFormat::PrintToString(*msg, &text_format)) { |
||||
LogError("Failed to print proto message to text format"); |
||||
return ""; |
||||
} |
||||
return text_format; |
||||
} |
||||
|
||||
void ProtoFileParser::LogError(const grpc::string& error_msg) { |
||||
if (!error_msg.empty()) { |
||||
std::cout << error_msg << std::endl; |
||||
} |
||||
has_error_ = true; |
||||
} |
||||
|
||||
} // namespace testing
|
||||
} // namespace grpc
|
@ -0,0 +1,85 @@ |
||||
/*
|
||||
* |
||||
* Copyright 2016, Google Inc. |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* * Redistributions in binary form must reproduce the above |
||||
* copyright notice, this list of conditions and the following disclaimer |
||||
* in the documentation and/or other materials provided with the |
||||
* distribution. |
||||
* * Neither the name of Google Inc. nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
* |
||||
*/ |
||||
|
||||
#ifndef GRPC_TEST_CPP_UTIL_PROTO_FILE_PARSER_H |
||||
#define GRPC_TEST_CPP_UTIL_PROTO_FILE_PARSER_H |
||||
|
||||
#include <memory> |
||||
|
||||
#include <google/protobuf/compiler/importer.h> |
||||
#include <google/protobuf/dynamic_message.h> |
||||
|
||||
#include "src/compiler/config.h" |
||||
|
||||
namespace grpc { |
||||
namespace testing { |
||||
class ErrorPrinter; |
||||
|
||||
// Find method and associated request/response types.
|
||||
class ProtoFileParser { |
||||
public: |
||||
// The given proto file_name will be searched in a source tree rooted from
|
||||
// proto_path. The method could be a partial string such as Service.Method or
|
||||
// even just Method. It will log an error if there is ambiguity.
|
||||
ProtoFileParser(const grpc::string& proto_path, const grpc::string& file_name, |
||||
const grpc::string& method); |
||||
~ProtoFileParser(); |
||||
|
||||
grpc::string GetFullMethodName() const { return full_method_name_; } |
||||
|
||||
grpc::string GetSerializedProto(const grpc::string& text_format_proto, |
||||
bool is_request); |
||||
|
||||
grpc::string GetTextFormat(const grpc::string& serialized_proto, |
||||
bool is_request); |
||||
|
||||
bool HasError() const { return has_error_; } |
||||
|
||||
void LogError(const grpc::string& error_msg); |
||||
|
||||
private: |
||||
bool has_error_; |
||||
grpc::string request_text_; |
||||
grpc::string full_method_name_; |
||||
google::protobuf::compiler::DiskSourceTree source_tree_; |
||||
std::unique_ptr<ErrorPrinter> error_printer_; |
||||
std::unique_ptr<google::protobuf::compiler::Importer> importer_; |
||||
std::unique_ptr<google::protobuf::DynamicMessageFactory> dynamic_factory_; |
||||
std::unique_ptr<grpc::protobuf::Message> request_prototype_; |
||||
std::unique_ptr<grpc::protobuf::Message> response_prototype_; |
||||
}; |
||||
|
||||
} // namespace testing
|
||||
} // namespace grpc
|
||||
|
||||
#endif // GRPC_TEST_CPP_UTIL_PROTO_FILE_PARSER_H
|
@ -0,0 +1,176 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
<ItemGroup Label="ProjectConfigurations"> |
||||
<ProjectConfiguration Include="Debug|Win32"> |
||||
<Configuration>Debug</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Debug|x64"> |
||||
<Configuration>Debug</Configuration> |
||||
<Platform>x64</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Release|Win32"> |
||||
<Configuration>Release</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Release|x64"> |
||||
<Configuration>Release</Configuration> |
||||
<Platform>x64</Platform> |
||||
</ProjectConfiguration> |
||||
</ItemGroup> |
||||
<PropertyGroup Label="Globals"> |
||||
<ProjectGuid>{86E35862-43E8-F59E-F906-AFE0348AD3D2}</ProjectGuid> |
||||
<IgnoreWarnIntDirInTempDetected>true</IgnoreWarnIntDirInTempDetected> |
||||
<IntDir>$(SolutionDir)IntDir\$(MSBuildProjectName)\</IntDir> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '10.0'" Label="Configuration"> |
||||
<PlatformToolset>v100</PlatformToolset> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '11.0'" Label="Configuration"> |
||||
<PlatformToolset>v110</PlatformToolset> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '12.0'" Label="Configuration"> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '14.0'" Label="Configuration"> |
||||
<PlatformToolset>v140</PlatformToolset> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration"> |
||||
<ConfigurationType>StaticLibrary</ConfigurationType> |
||||
<UseDebugLibraries>true</UseDebugLibraries> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration"> |
||||
<ConfigurationType>StaticLibrary</ConfigurationType> |
||||
<UseDebugLibraries>false</UseDebugLibraries> |
||||
<WholeProgramOptimization>true</WholeProgramOptimization> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
||||
<ImportGroup Label="ExtensionSettings"> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
<Import Project="$(SolutionDir)\..\vsprojects\global.props" /> |
||||
<Import Project="$(SolutionDir)\..\vsprojects\winsock.props" /> |
||||
</ImportGroup> |
||||
<PropertyGroup Label="UserMacros" /> |
||||
<PropertyGroup Condition="'$(Configuration)'=='Debug'"> |
||||
<TargetName>grpc_cli_libs</TargetName> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(Configuration)'=='Release'"> |
||||
<TargetName>grpc_cli_libs</TargetName> |
||||
</PropertyGroup> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>Disabled</Optimization> |
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> |
||||
<TreatWarningAsError>true</TreatWarningAsError> |
||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>Disabled</Optimization> |
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> |
||||
<TreatWarningAsError>true</TreatWarningAsError> |
||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>MaxSpeed</Optimization> |
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary> |
||||
<TreatWarningAsError>true</TreatWarningAsError> |
||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
||||
<OptimizeReferences>true</OptimizeReferences> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>MaxSpeed</Optimization> |
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary> |
||||
<TreatWarningAsError>true</TreatWarningAsError> |
||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
||||
<OptimizeReferences>true</OptimizeReferences> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
|
||||
<ItemGroup> |
||||
<ClInclude Include="$(SolutionDir)\..\test\cpp\util\cli_call.h" /> |
||||
<ClInclude Include="$(SolutionDir)\..\test\cpp\util\proto_file_parser.h" /> |
||||
</ItemGroup> |
||||
<ItemGroup> |
||||
<ClCompile Include="$(SolutionDir)\..\test\cpp\util\cli_call.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="$(SolutionDir)\..\test\cpp\util\proto_file_parser.cc"> |
||||
</ClCompile> |
||||
</ItemGroup> |
||||
<ItemGroup> |
||||
<ProjectReference Include="$(SolutionDir)\..\vsprojects\vcxproj\.\grpc++\grpc++.vcxproj"> |
||||
<Project>{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}</Project> |
||||
</ProjectReference> |
||||
<ProjectReference Include="$(SolutionDir)\..\vsprojects\vcxproj\.\grpc_plugin_support\grpc_plugin_support.vcxproj"> |
||||
<Project>{B6E81D84-2ACB-41B8-8781-493A944C7817}</Project> |
||||
</ProjectReference> |
||||
</ItemGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
||||
<ImportGroup Label="ExtensionTargets"> |
||||
</ImportGroup> |
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> |
||||
<PropertyGroup> |
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> |
||||
</PropertyGroup> |
||||
</Target> |
||||
</Project> |
||||
|
@ -0,0 +1,32 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
<ItemGroup> |
||||
<ClCompile Include="$(SolutionDir)\..\test\cpp\util\cli_call.cc"> |
||||
<Filter>test\cpp\util</Filter> |
||||
</ClCompile> |
||||
<ClCompile Include="$(SolutionDir)\..\test\cpp\util\proto_file_parser.cc"> |
||||
<Filter>test\cpp\util</Filter> |
||||
</ClCompile> |
||||
</ItemGroup> |
||||
<ItemGroup> |
||||
<ClInclude Include="$(SolutionDir)\..\test\cpp\util\cli_call.h"> |
||||
<Filter>test\cpp\util</Filter> |
||||
</ClInclude> |
||||
<ClInclude Include="$(SolutionDir)\..\test\cpp\util\proto_file_parser.h"> |
||||
<Filter>test\cpp\util</Filter> |
||||
</ClInclude> |
||||
</ItemGroup> |
||||
|
||||
<ItemGroup> |
||||
<Filter Include="test"> |
||||
<UniqueIdentifier>{16a32a9f-93aa-5812-5a5e-be659aaa76aa}</UniqueIdentifier> |
||||
</Filter> |
||||
<Filter Include="test\cpp"> |
||||
<UniqueIdentifier>{a6049b9f-9c4c-f814-ac67-dbd2b628b2d0}</UniqueIdentifier> |
||||
</Filter> |
||||
<Filter Include="test\cpp\util"> |
||||
<UniqueIdentifier>{30f91d14-0a6a-c8e8-ff23-6a83142d42fd}</UniqueIdentifier> |
||||
</Filter> |
||||
</ItemGroup> |
||||
</Project> |
||||
|
Loading…
Reference in new issue