xref: /aosp_15_r20/external/pigweed/pw_tls_client/configs.gni (revision 61c4878ac05f98d0ceed94b57d316916de578985)
1# Copyright 2021 The Pigweed Authors
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4# use this file except in compliance with the License. You may obtain a copy of
5# the License at
6#
7#     https://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations under
13# the License.
14
15import("//build_overrides/pigweed.gni")
16
17declare_args() {
18  # Backend for pw_tls_client
19  pw_tls_client_BACKEND = ""
20
21  # Backend for pw_tls_client:tls_entropy
22  pw_tls_client_ENTROPY_BACKEND = "$dir_pw_tls_client:fake_entropy"
23
24  # Backend for pw_tls_client:time
25  pw_tls_client_TIME_BACKEND = "$dir_pw_chrono:wrap_time_build_time"
26
27  # The path to the CRLSet file.
28  pw_tls_client_CRLSET_FILE = ""
29}
30