blob: b451afa04c56e56ec1881a9fc347c265b539ade6 [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 Montanez04c56ae2019-12-12 14:34:05 -080015import("$dir_pw_build/facade.gni")
Armando Montanezd2e49032019-12-06 13:06:01 -080016import("$dir_pw_docgen/docs.gni")
17
Armando Montanez68de0712019-11-14 18:29:39 -080018config("default_config") {
19 include_dirs = [ "public" ]
20}
21
Alexei Frolov5152d432020-01-17 14:15:01 -080022pw_facade("pw_dumb_io") {
23 backend = dir_pw_dumb_io_backend
Wyatt Hepler21192402020-01-15 15:40:51 -080024 public_configs = [ ":default_config" ]
Armando Montanez68de0712019-11-14 18:29:39 -080025 public_deps = [
26 "$dir_pw_span",
27 "$dir_pw_status",
28 ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080029 public = [ "public/pw_dumb_io/dumb_io.h" ]
Armando Montanez68de0712019-11-14 18:29:39 -080030}
31
32source_set("default_putget_bytes") {
Rob Mohra0ba54f2020-02-27 11:43:49 -080033 deps = [ ":facade" ]
34 sources = [ "dumb_io.cc" ]
Armando Montanez68de0712019-11-14 18:29:39 -080035}
36
Armando Montanezd2e49032019-12-06 13:06:01 -080037pw_doc_group("docs") {
Rob Mohra0ba54f2020-02-27 11:43:49 -080038 sources = [ "docs.rst" ]
Armando Montanezd2e49032019-12-06 13:06:01 -080039}