Fix include paths in protoc plugin files

This commit is contained in:
murgatroid99 2018-09-20 10:27:00 -07:00
parent 2d261f03a3
commit b50fd9b87c
6 changed files with 12 additions and 12 deletions

View File

@ -19,7 +19,7 @@
#ifndef SRC_COMPILER_CONFIG_H
#define SRC_COMPILER_CONFIG_H
#include <grpcpp/impl/codegen/config_protobuf.h>
#include "config_protobuf.h"
#ifndef GRPC_CUSTOM_CODEGENERATOR
#include <google/protobuf/compiler/code_generator.h>

View File

@ -25,7 +25,7 @@
#include <string>
#include <vector>
#include "src/compiler/config.h"
#include "config.h"
namespace grpc_generator {

View File

@ -18,10 +18,10 @@
#include <map>
#include "src/compiler/config.h"
#include "src/compiler/generator_helpers.h"
#include "src/compiler/node_generator.h"
#include "src/compiler/node_generator_helpers.h"
#include "config.h"
#include "generator_helpers.h"
#include "node_generator.h"
#include "node_generator_helpers.h"
using grpc::protobuf::Descriptor;
using grpc::protobuf::FileDescriptor;

View File

@ -19,7 +19,7 @@
#ifndef GRPC_INTERNAL_COMPILER_NODE_GENERATOR_H
#define GRPC_INTERNAL_COMPILER_NODE_GENERATOR_H
#include "src/compiler/config.h"
#include "config.h"
namespace grpc_node_generator {

View File

@ -21,8 +21,8 @@
#include <algorithm>
#include "src/compiler/config.h"
#include "src/compiler/generator_helpers.h"
#include "config.h"
#include "generator_helpers.h"
namespace grpc_node_generator {

View File

@ -20,9 +20,9 @@
#include <memory>
#include "src/compiler/config.h"
#include "src/compiler/node_generator.h"
#include "src/compiler/node_generator_helpers.h"
#include "config.h"
#include "node_generator.h"
#include "node_generator_helpers.h"
using grpc_node_generator::GenerateFile;
using grpc_node_generator::GetJSServiceFilename;