blob: eec8d3176b2b2e2383434de92c6cfbf9ed692f55 [file] [log] [blame]
Wyatt Heplerb8b01e32020-01-08 18:33:40 -08001# Copyright 2020 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("$dir_pw_unit_test/test.gni")
16
17config("default_config") {
18 include_dirs = [ "public" ]
19}
20
21source_set("pw_base64") {
Wyatt Hepler21192402020-01-15 15:40:51 -080022 public_configs = [ ":default_config" ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080023 public = [ "public/pw_base64/base64.h" ]
24 sources = [ "base64.cc" ]
Wyatt Heplerb8b01e32020-01-08 18:33:40 -080025 sources += public
Rob Mohra0ba54f2020-02-27 11:43:49 -080026 public_deps = [ "$dir_pw_span" ]
Wyatt Heplerb8b01e32020-01-08 18:33:40 -080027}
28
29pw_test_group("tests") {
30 tests = [ ":base64_test" ]
31 group_deps = [ "$dir_pw_span:tests" ]
32}
33
34pw_test("base64_test") {
Rob Mohra0ba54f2020-02-27 11:43:49 -080035 deps = [ ":pw_base64" ]
Wyatt Heplerb8b01e32020-01-08 18:33:40 -080036 sources = [
37 "base64_test.c",
38 "base64_test.cc",
39 ]
40}