blob: 70e04e5c024d0e99284c40feba09495beb648ed7 [file] [log] [blame]
Yecheng Zhao568e1652021-06-21 15:47:45 -07001# 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
Yecheng Zhao3e692522021-06-28 09:09:51 -070022 pw_tls_client_ENTROPY_BACKEND = "$dir_pw_tls_client:fake_entropy"
Yecheng Zhao568e1652021-06-21 15:47:45 -070023
24 # Backend for pw_tls_client:time
25 pw_tls_client_TIME_BACKEND = "$dir_pw_tls_client:build_time"
Yecheng Zhao3cdb68e2021-06-09 15:36:05 -070026
27 # The path to the CRLSet file.
28 pw_tls_client_CRLSET_FILE = ""
Yecheng Zhao568e1652021-06-21 15:47:45 -070029}