blob: ce2b30f365bc378db452c435c1aad9815d3d072e [file] [log] [blame]
Alexei Frolov5152d432020-01-17 14:15:01 -08001# Copyright 2020 The Pigweed Authors
Armando Montanez68de0712019-11-14 18:29:39 -08002#
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
Armando Montanezfb3d3fb2020-06-09 18:12:12 -070015# gn-format disable
16import("//build_overrides/pigweed.gni")
17
Armando Montanez04c56ae2019-12-12 14:34:05 -080018import("$dir_pw_build/facade.gni")
Alexei Frolovedd2f142020-06-09 19:11:27 -070019import("$dir_pw_build/target_types.gni")
Armando Montanezd2e49032019-12-06 13:06:01 -080020import("$dir_pw_docgen/docs.gni")
Alexei Frolov4c0428a2020-06-10 10:46:04 -070021declare_args() {
22 # Backend for the pw_sys_io module.
23 pw_sys_io_BACKEND = ""
24}
25
Armando Montanez68de0712019-11-14 18:29:39 -080026config("default_config") {
27 include_dirs = [ "public" ]
28}
29
Armando Montanezf7a5a742020-03-02 14:58:59 -080030pw_facade("pw_sys_io") {
Alexei Frolov4c0428a2020-06-10 10:46:04 -070031 backend = pw_sys_io_BACKEND
Wyatt Hepler21192402020-01-15 15:40:51 -080032 public_configs = [ ":default_config" ]
Armando Montanez68de0712019-11-14 18:29:39 -080033 public_deps = [
34 "$dir_pw_span",
35 "$dir_pw_status",
36 ]
Armando Montanezf7a5a742020-03-02 14:58:59 -080037 public = [ "public/pw_sys_io/sys_io.h" ]
Armando Montanez68de0712019-11-14 18:29:39 -080038}
39
Alexei Frolovedd2f142020-06-09 19:11:27 -070040pw_source_set("default_putget_bytes") {
Rob Mohra0ba54f2020-02-27 11:43:49 -080041 deps = [ ":facade" ]
Armando Montanezf7a5a742020-03-02 14:58:59 -080042 sources = [ "sys_io.cc" ]
Armando Montanez68de0712019-11-14 18:29:39 -080043}
44
Armando Montanezd2e49032019-12-06 13:06:01 -080045pw_doc_group("docs") {
Rob Mohra0ba54f2020-02-27 11:43:49 -080046 sources = [ "docs.rst" ]
Armando Montanezd2e49032019-12-06 13:06:01 -080047}