1# Copyright 2021 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 15load("//pw_unit_test:pw_cc_test.bzl", "pw_cc_test") 16 17package(default_visibility = ["//visibility:public"]) 18 19licenses(["notice"]) 20 21cc_library( 22 name = "pw_polyfill", 23 hdrs = [ 24 "public/pw_polyfill/language_feature_macros.h", 25 "public/pw_polyfill/standard.h", 26 "public/pw_polyfill/static_assert.h", 27 ], 28 strip_include_prefix = "public", 29) 30 31cc_library( 32 name = "standard_library", 33 hdrs = [ 34 "standard_library_public/pw_polyfill/standard_library/namespace.h", 35 ], 36 includes = ["standard_library_public"], 37 visibility = ["//pw_minimal_cpp_stdlib:__pkg__"], 38) 39 40pw_cc_test( 41 name = "test", 42 srcs = [ 43 "c_test.c", 44 "test.cc", 45 ], 46 deps = [ 47 ":pw_polyfill", 48 ":standard_library", 49 "//pw_unit_test", 50 ], 51) 52 53filegroup( 54 name = "doxygen", 55 srcs = [ 56 "public/pw_polyfill/language_feature_macros.h", 57 "public/pw_polyfill/standard.h", 58 ], 59) 60