[build] Fix it (#38095)

Closes #38095

COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/38095 from ctiller:loopz 1122dd0ea9
PiperOrigin-RevId: 694706995
pull/37928/merge
Craig Tiller 2 weeks ago committed by Copybara-Service
parent 1be5e4eff9
commit c367ab13c8
  1. 2
      CMakeLists.txt
  2. 2
      build_autogenerated.yaml
  3. 1
      gRPC-C++.podspec
  4. 12
      include/grpcpp/impl/codegen/config_protobuf.h
  5. 6
      include/grpcpp/impl/generic_serialize.h
  6. 1
      tools/doxygen/Doxyfile.c++
  7. 1
      tools/doxygen/Doxyfile.c++.internal

2
CMakeLists.txt generated

@ -4794,6 +4794,7 @@ foreach(_hdr
include/grpcpp/impl/completion_queue_tag.h
include/grpcpp/impl/create_auth_context.h
include/grpcpp/impl/delegating_channel.h
include/grpcpp/impl/generic_serialize.h
include/grpcpp/impl/generic_stub_internal.h
include/grpcpp/impl/grpc_library.h
include/grpcpp/impl/intercepted_channel.h
@ -5540,6 +5541,7 @@ foreach(_hdr
include/grpcpp/impl/completion_queue_tag.h
include/grpcpp/impl/create_auth_context.h
include/grpcpp/impl/delegating_channel.h
include/grpcpp/impl/generic_serialize.h
include/grpcpp/impl/generic_stub_internal.h
include/grpcpp/impl/grpc_library.h
include/grpcpp/impl/intercepted_channel.h

@ -3850,6 +3850,7 @@ libs:
- include/grpcpp/impl/completion_queue_tag.h
- include/grpcpp/impl/create_auth_context.h
- include/grpcpp/impl/delegating_channel.h
- include/grpcpp/impl/generic_serialize.h
- include/grpcpp/impl/generic_stub_internal.h
- include/grpcpp/impl/grpc_library.h
- include/grpcpp/impl/intercepted_channel.h
@ -4245,6 +4246,7 @@ libs:
- include/grpcpp/impl/completion_queue_tag.h
- include/grpcpp/impl/create_auth_context.h
- include/grpcpp/impl/delegating_channel.h
- include/grpcpp/impl/generic_serialize.h
- include/grpcpp/impl/generic_stub_internal.h
- include/grpcpp/impl/grpc_library.h
- include/grpcpp/impl/intercepted_channel.h

1
gRPC-C++.podspec generated

@ -161,6 +161,7 @@ Pod::Spec.new do |s|
'include/grpcpp/impl/completion_queue_tag.h',
'include/grpcpp/impl/create_auth_context.h',
'include/grpcpp/impl/delegating_channel.h',
'include/grpcpp/impl/generic_serialize.h',
'include/grpcpp/impl/generic_stub_internal.h',
'include/grpcpp/impl/grpc_library.h',
'include/grpcpp/impl/intercepted_channel.h',

@ -59,22 +59,26 @@
#ifndef GRPC_CUSTOM_DESCRIPTORDATABASE
#include <google/protobuf/descriptor_database.h>
#define GRPC_CUSTOM_DESCRIPTORDATABASE ::google::protobuf::DescriptorDatabase
#define GRPC_CUSTOM_SIMPLEDESCRIPTORDATABASE ::google::protobuf::SimpleDescriptorDatabase
#define GRPC_CUSTOM_SIMPLEDESCRIPTORDATABASE \
::google::protobuf::SimpleDescriptorDatabase
#endif
#ifndef GRPC_CUSTOM_ZEROCOPYOUTPUTSTREAM
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/io/zero_copy_stream.h>
#define GRPC_CUSTOM_ZEROCOPYOUTPUTSTREAM ::google::protobuf::io::ZeroCopyOutputStream
#define GRPC_CUSTOM_ZEROCOPYINPUTSTREAM ::google::protobuf::io::ZeroCopyInputStream
#define GRPC_CUSTOM_ZEROCOPYOUTPUTSTREAM \
::google::protobuf::io::ZeroCopyOutputStream
#define GRPC_CUSTOM_ZEROCOPYINPUTSTREAM \
::google::protobuf::io::ZeroCopyInputStream
#define GRPC_CUSTOM_CODEDINPUTSTREAM ::google::protobuf::io::CodedInputStream
#define GRPC_CUSTOM_CODEDOUTPUTSTREAM ::google::protobuf::io::CodedOutputStream
#endif
#ifndef GRPC_CUSTOM_JSONUTIL
#include "absl/status/status.h"
#include <google/protobuf/util/json_util.h>
#include <google/protobuf/util/type_resolver_util.h>
#include "absl/status/status.h"
#define GRPC_CUSTOM_JSONUTIL ::google::protobuf::util
#define GRPC_CUSTOM_UTIL_STATUS ::absl::Status
#endif

@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef GRPCPP_IMPL_PROTO_UTILS_H
#define GRPCPP_IMPL_PROTO_UTILS_H
#ifndef GRPCPP_IMPL_GENERIC_SERIALIZE_H
#define GRPCPP_IMPL_GENERIC_SERIALIZE_H
#include <grpc/byte_buffer_reader.h>
#include <grpc/impl/grpc_types.h>
@ -90,4 +90,4 @@ Status GenericDeserialize(ByteBuffer* buffer,
} // namespace grpc
#endif // GRPCPP_IMPL_PROTO_UTILS_H
#endif // GRPCPP_IMPL_GENERIC_SERIALIZE_H

@ -1028,6 +1028,7 @@ include/grpcpp/impl/codegen/time.h \
include/grpcpp/impl/completion_queue_tag.h \
include/grpcpp/impl/create_auth_context.h \
include/grpcpp/impl/delegating_channel.h \
include/grpcpp/impl/generic_serialize.h \
include/grpcpp/impl/generic_stub_internal.h \
include/grpcpp/impl/grpc_library.h \
include/grpcpp/impl/intercepted_channel.h \

@ -1028,6 +1028,7 @@ include/grpcpp/impl/codegen/time.h \
include/grpcpp/impl/completion_queue_tag.h \
include/grpcpp/impl/create_auth_context.h \
include/grpcpp/impl/delegating_channel.h \
include/grpcpp/impl/generic_serialize.h \
include/grpcpp/impl/generic_stub_internal.h \
include/grpcpp/impl/grpc_library.h \
include/grpcpp/impl/intercepted_channel.h \

Loading…
Cancel
Save