blob: 50bc7090bc122df8b33bfc1174e54a335b4089a3 [file] [log] [blame]
Armando Montanez68de0712019-11-14 18:29:39 -08001# Copyright 2019 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
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
22source_set("facade") {
Wyatt Hepler21192402020-01-15 15:40:51 -080023 public_configs = [ ":default_config" ]
Armando Montanez68de0712019-11-14 18:29:39 -080024 public_deps = [
25 "$dir_pw_span",
26 "$dir_pw_status",
27 ]
28 public = [
29 "public/pw_dumb_io/dumb_io.h",
30 ]
31 sources = public
32}
33
34source_set("default_putget_bytes") {
35 deps = [
36 ":facade",
37 ]
38 sources = [
39 "dumb_io.cc",
40 ]
41}
42
Armando Montanez04c56ae2019-12-12 14:34:05 -080043pw_facade("pw_dumb_io") {
44 backend = dir_pw_dumb_io_backend
Armando Montanez68de0712019-11-14 18:29:39 -080045 public_deps = [
46 ":facade",
47 ]
Armando Montanez68de0712019-11-14 18:29:39 -080048}
Armando Montanezd2e49032019-12-06 13:06:01 -080049
50pw_doc_group("docs") {
51 sources = [
52 "docs.rst",
53 ]
54}