third_party.pigweed.src/pw_span/BUILD
Nathaniel Brough 389e88e32c pw_span: Fixes bazel build allowing <span> polyfill
This adds the public_overrides directory to the includes.
This allows for you to include using `#include <span>`
rather than `#include "pw_span/span.h"`.

Change-Id: I0094bdbf69b6701f338110a6c563e2144f81e192
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/30080
Commit-Queue: Wyatt Hepler <hepler@google.com>
Reviewed-by: Wyatt Hepler <hepler@google.com>
Reviewed-by: Akira Baruah <akira.baruah@gmail.com>
2021-02-26 02:24:42 +00:00

44 lines
1.1 KiB
Python

# 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.
load(
"//pw_build:pigweed.bzl",
"pw_cc_library",
"pw_cc_test",
)
package(default_visibility = ["//visibility:public"])
licenses(["notice"]) # Apache License 2.0
pw_cc_library(
name = "pw_span",
srcs = ["public/pw_span/internal/span.h"],
hdrs = ["public_overrides/span"],
includes = [
"public",
"public_overrides",
],
deps = ["//pw_polyfill"],
)
pw_cc_test(
name = "span_test",
srcs = ["span_test.cc"],
deps = [
":pw_span",
"//pw_unit_test",
],
)