mirror of https://github.com/grpc/grpc.git
[build] Reland grpc_base autodeps (#30235)
* Revert "[build] Automate deps for grpc_base (#29995)" This reverts commitpull/30286/head5956fb8829
. * fix merge * Revert "fix merge" This reverts commit75d73ca362
. * Revert "Revert "[build] Automate deps for grpc_base (#29995)"" This reverts commitc3bec79a21
. * [build] Reland grpc_base autodeps * add note * Automated change: Fix sanity tests * fix * Automated change: Fix sanity tests Co-authored-by: ctiller <ctiller@users.noreply.github.com>
parent
4491ed26aa
commit
caf0a49e67
12 changed files with 68 additions and 27 deletions
@ -0,0 +1,33 @@ |
||||
// Copyright 2021 The gRPC Authors
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#ifndef GRPC_CORE_LIB_EVENT_ENGINE_DEFAULT_EVENT_ENGINE_FACTORY_H |
||||
#define GRPC_CORE_LIB_EVENT_ENGINE_DEFAULT_EVENT_ENGINE_FACTORY_H |
||||
|
||||
#include <grpc/support/port_platform.h> |
||||
|
||||
#include <memory> |
||||
|
||||
#include <grpc/event_engine/event_engine.h> |
||||
|
||||
namespace grpc_event_engine { |
||||
namespace experimental { |
||||
|
||||
/// Create an EventEngine using the default factory provided at link time.
|
||||
std::unique_ptr<EventEngine> DefaultEventEngineFactory(); |
||||
|
||||
} // namespace experimental
|
||||
} // namespace grpc_event_engine
|
||||
|
||||
#endif // GRPC_CORE_LIB_EVENT_ENGINE_DEFAULT_EVENT_ENGINE_FACTORY_H
|
Loading…
Reference in new issue