third_party.pigweed.src/pw_tls_client/BUILD.gn
Yecheng Zhao e5dbfc0d2b pw_tls_client: Add entropy facade
Add entropy facade in pw_tls_client for users to provide an entropy
source.

Change-Id: I0576971ea0f69f8967658db3270bcbdd3dd89668
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/50161
Commit-Queue: Yecheng Zhao <zyecheng@google.com>
Reviewed-by: Ali Zhang <alizhang@google.com>
2021-06-21 22:32:32 +00:00

63 lines
1.6 KiB
Plaintext

# Copyright 2021 The Pigweed 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
#
# https://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.
import("//build_overrides/pigweed.gni")
import("$dir_pw_build/facade.gni")
import("$dir_pw_build/target_types.gni")
import("$dir_pw_docgen/docs.gni")
declare_args() {
# Backend for :pw_tls_client
pw_tls_client_BACKEND = ""
# Backend for :tls_entropy
pw_tls_client_ENTROPY_BACKEND = ""
}
config("public_includes") {
include_dirs = [ "public" ]
}
pw_facade("pw_tls_client") {
backend = pw_tls_client_BACKEND
public_configs = [ ":public_includes" ]
public = [
"public/pw_tls_client/options.h",
"public/pw_tls_client/session.h",
"public/pw_tls_client/status.h",
]
public_deps = [
"$dir_pw_assert",
"$dir_pw_bytes",
"$dir_pw_result",
"$dir_pw_status",
"$dir_pw_stream",
"$dir_pw_string",
]
}
pw_facade("tls_entropy") {
backend = pw_tls_client_ENTROPY_BACKEND
public_configs = [ ":public_includes" ]
public = [ "public/pw_tls_client/entropy.h" ]
public_deps = [
"$dir_pw_bytes",
"$dir_pw_status",
]
}
pw_doc_group("docs") {
sources = [ "docs.rst" ]
}