third_party.pigweed.src/pw_base64/BUILD.gn
Wyatt Hepler 2119240da1 GN build: Override built-in targets
- Override built-in targets, which gives more flexibility than
  set_defaults.
- Provide the default C++ in the toolchain, which can be overridden by
  explicitly specifying a config on a target.
- Remove the C++17 default flags from public configs, since it is no
  longer needed.

Change-Id: If211bada971c46cef83909bf15811a4f2c1eb7fd
2020-01-16 11:41:15 -08:00

49 lines
1.1 KiB
Plaintext

# Copyright 2020 The Pigweed Authors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
import("$dir_pw_unit_test/test.gni")
config("default_config") {
include_dirs = [ "public" ]
}
source_set("pw_base64") {
public_configs = [ ":default_config" ]
public = [
"public/pw_base64/base64.h",
]
sources = [
"base64.cc",
]
sources += public
public_deps = [
"$dir_pw_span",
]
}
pw_test_group("tests") {
tests = [ ":base64_test" ]
group_deps = [ "$dir_pw_span:tests" ]
}
pw_test("base64_test") {
deps = [
":pw_base64",
]
sources = [
"base64_test.c",
"base64_test.cc",
]
}