moved some files around

pull/5270/head
David Garcia Quintas 9 years ago
parent 81932891af
commit 723af53419
  1. 4
      BUILD
  2. 8
      Makefile
  3. 4
      build.yaml
  4. 2
      include/grpc++/impl/grpc_library.h
  5. 4
      src/cpp/common/core_codegen.cc
  6. 0
      src/cpp/common/core_codegen.h
  7. 2
      src/cpp/common/grpc_library.cc
  8. 4
      tools/doxygen/Doxyfile.c++.internal
  9. 4
      tools/run_tests/sources_and_headers.json
  10. 6
      vsprojects/vcxproj/grpc++/grpc++.vcxproj
  11. 13
      vsprojects/vcxproj/grpc++/grpc++.vcxproj.filters

@ -796,9 +796,9 @@ cc_library(
"src/cpp/server/dynamic_thread_pool.h",
"src/cpp/server/thread_pool_interface.h",
"src/cpp/client/secure_credentials.cc",
"src/cpp/codegen/core_codegen.cc",
"src/cpp/codegen/grpc_library.cc",
"src/cpp/common/auth_property_iterator.cc",
"src/cpp/common/core_codegen.cc",
"src/cpp/common/grpc_library.cc",
"src/cpp/common/secure_auth_context.cc",
"src/cpp/common/secure_channel_arguments.cc",
"src/cpp/common/secure_create_auth_context.cc",

@ -3014,9 +3014,9 @@ endif
LIBGRPC++_SRC = \
src/cpp/client/secure_credentials.cc \
src/cpp/codegen/core_codegen.cc \
src/cpp/codegen/grpc_library.cc \
src/cpp/common/auth_property_iterator.cc \
src/cpp/common/core_codegen.cc \
src/cpp/common/grpc_library.cc \
src/cpp/common/secure_auth_context.cc \
src/cpp/common/secure_channel_arguments.cc \
src/cpp/common/secure_create_auth_context.cc \
@ -13147,9 +13147,9 @@ src/core/tsi/fake_transport_security.c: $(OPENSSL_DEP)
src/core/tsi/ssl_transport_security.c: $(OPENSSL_DEP)
src/core/tsi/transport_security.c: $(OPENSSL_DEP)
src/cpp/client/secure_credentials.cc: $(OPENSSL_DEP)
src/cpp/codegen/core_codegen.cc: $(OPENSSL_DEP)
src/cpp/codegen/grpc_library.cc: $(OPENSSL_DEP)
src/cpp/common/auth_property_iterator.cc: $(OPENSSL_DEP)
src/cpp/common/core_codegen.cc: $(OPENSSL_DEP)
src/cpp/common/grpc_library.cc: $(OPENSSL_DEP)
src/cpp/common/secure_auth_context.cc: $(OPENSSL_DEP)
src/cpp/common/secure_channel_arguments.cc: $(OPENSSL_DEP)
src/cpp/common/secure_create_auth_context.cc: $(OPENSSL_DEP)

@ -695,9 +695,9 @@ libs:
- src/cpp/server/secure_server_credentials.h
src:
- src/cpp/client/secure_credentials.cc
- src/cpp/codegen/core_codegen.cc
- src/cpp/codegen/grpc_library.cc
- src/cpp/common/auth_property_iterator.cc
- src/cpp/common/core_codegen.cc
- src/cpp/common/grpc_library.cc
- src/cpp/common/secure_auth_context.cc
- src/cpp/common/secure_channel_arguments.cc
- src/cpp/common/secure_create_auth_context.cc

@ -40,7 +40,7 @@
#include <grpc++/impl/codegen/grpc_library.h>
#include <grpc/grpc.h>
#include "src/cpp/codegen/core_codegen.h"
#include "src/cpp/common/core_codegen.h"
namespace grpc {

@ -31,7 +31,7 @@
*
*/
#include "src/cpp/codegen/core_codegen.h"
#include "src/cpp/common/core_codegen.h"
#include <stdlib.h>
@ -48,8 +48,6 @@
#include "src/core/profiling/timers.h"
grpc::CoreCodegenInterface* grpc::g_core_codegen_interface = nullptr;
namespace {
const int kGrpcBufferWriterMaxBufferLength = 8192;

@ -32,9 +32,11 @@
*/
#include <grpc++/impl/codegen/grpc_library.h>
#include <grpc++/impl/codegen/core_codegen_interface.h>
namespace grpc {
GrpcLibraryInterface *g_glip = nullptr;
CoreCodegenInterface *g_core_codegen_interface = nullptr;
} // namespace grpc

@ -812,9 +812,9 @@ src/cpp/common/create_auth_context.h \
src/cpp/server/dynamic_thread_pool.h \
src/cpp/server/thread_pool_interface.h \
src/cpp/client/secure_credentials.cc \
src/cpp/codegen/core_codegen.cc \
src/cpp/codegen/grpc_library.cc \
src/cpp/common/auth_property_iterator.cc \
src/cpp/common/core_codegen.cc \
src/cpp/common/grpc_library.cc \
src/cpp/common/secure_auth_context.cc \
src/cpp/common/secure_channel_arguments.cc \
src/cpp/common/secure_create_auth_context.cc \

@ -5036,12 +5036,12 @@
"src/cpp/client/insecure_credentials.cc",
"src/cpp/client/secure_credentials.cc",
"src/cpp/client/secure_credentials.h",
"src/cpp/codegen/core_codegen.cc",
"src/cpp/codegen/grpc_library.cc",
"src/cpp/common/auth_property_iterator.cc",
"src/cpp/common/channel_arguments.cc",
"src/cpp/common/completion_queue.cc",
"src/cpp/common/core_codegen.cc",
"src/cpp/common/create_auth_context.h",
"src/cpp/common/grpc_library.cc",
"src/cpp/common/rpc_method.cc",
"src/cpp/common/secure_auth_context.cc",
"src/cpp/common/secure_auth_context.h",

@ -315,11 +315,11 @@
<ItemGroup>
<ClCompile Include="$(SolutionDir)\..\src\cpp\client\secure_credentials.cc">
</ClCompile>
<ClCompile Include="$(SolutionDir)\..\src\cpp\codegen\core_codegen.cc">
<ClCompile Include="$(SolutionDir)\..\src\cpp\common\auth_property_iterator.cc">
</ClCompile>
<ClCompile Include="$(SolutionDir)\..\src\cpp\codegen\grpc_library.cc">
<ClCompile Include="$(SolutionDir)\..\src\cpp\common\core_codegen.cc">
</ClCompile>
<ClCompile Include="$(SolutionDir)\..\src\cpp\common\auth_property_iterator.cc">
<ClCompile Include="$(SolutionDir)\..\src\cpp\common\grpc_library.cc">
</ClCompile>
<ClCompile Include="$(SolutionDir)\..\src\cpp\common\secure_auth_context.cc">
</ClCompile>

@ -4,13 +4,13 @@
<ClCompile Include="$(SolutionDir)\..\src\cpp\client\secure_credentials.cc">
<Filter>src\cpp\client</Filter>
</ClCompile>
<ClCompile Include="$(SolutionDir)\..\src\cpp\codegen\core_codegen.cc">
<Filter>src\cpp\codegen</Filter>
<ClCompile Include="$(SolutionDir)\..\src\cpp\common\auth_property_iterator.cc">
<Filter>src\cpp\common</Filter>
</ClCompile>
<ClCompile Include="$(SolutionDir)\..\src\cpp\codegen\grpc_library.cc">
<Filter>src\cpp\codegen</Filter>
<ClCompile Include="$(SolutionDir)\..\src\cpp\common\core_codegen.cc">
<Filter>src\cpp\common</Filter>
</ClCompile>
<ClCompile Include="$(SolutionDir)\..\src\cpp\common\auth_property_iterator.cc">
<ClCompile Include="$(SolutionDir)\..\src\cpp\common\grpc_library.cc">
<Filter>src\cpp\common</Filter>
</ClCompile>
<ClCompile Include="$(SolutionDir)\..\src\cpp\common\secure_auth_context.cc">
@ -281,9 +281,6 @@
<Filter Include="src\cpp\client">
<UniqueIdentifier>{7febf32a-d7a6-76fa-9e17-f189f591c062}</UniqueIdentifier>
</Filter>
<Filter Include="src\cpp\codegen">
<UniqueIdentifier>{3c3e27f4-d3d9-3c42-5204-08b5e839f2de}</UniqueIdentifier>
</Filter>
<Filter Include="src\cpp\common">
<UniqueIdentifier>{2336e396-7e0b-8bf9-3b09-adc6ad1f0e5b}</UniqueIdentifier>
</Filter>

Loading…
Cancel
Save