| # Copyright 2021 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("//build_overrides/pigweed.gni") |
| |
| import("$dir_pw_bloat/bloat.gni") |
| import("$dir_pw_build/module_config.gni") |
| import("$dir_pw_build/target_types.gni") |
| import("$dir_pw_function/function.gni") |
| import("$dir_pw_unit_test/test.gni") |
| |
| config("public_include_path") { |
| include_dirs = [ "public" ] |
| visibility = [ ":*" ] |
| } |
| |
| pw_source_set("config") { |
| public = [ "public/pw_function/config.h" ] |
| public_configs = [ ":public_include_path" ] |
| public_deps = [ |
| "$pw_external_fuchsia:fit", |
| pw_function_CONFIG, |
| ] |
| visibility = [ ":*" ] |
| } |
| |
| pw_source_set("pw_function") { |
| public_configs = [ ":public_include_path" ] |
| public_deps = [ |
| ":config", |
| "$pw_external_fuchsia:fit", |
| dir_pw_assert, |
| dir_pw_preprocessor, |
| ] |
| public = [ |
| "public/pw_function/function.h", |
| "public/pw_function/function_ref.h", |
| ] |
| } |
| |
| config("enable_dynamic_allocation_config") { |
| defines = [ "PW_FUNCTION_ENABLE_DYNAMIC_ALLOCATION=1" ] |
| visibility = [ ":*" ] |
| } |
| |
| # Use this for pw_function_CONFIG to enable dynamic allocation. |
| pw_source_set("enable_dynamic_allocation") { |
| public_configs = [ ":enable_dynamic_allocation_config" ] |
| } |
| |
| pw_source_set("pointer") { |
| public_configs = [ ":public_include_path" ] |
| public = [ "public/pw_function/pointer.h" ] |
| sources = [ "public/pw_function/internal/static_invoker.h" ] |
| } |
| |
| pw_source_set("scope_guard") { |
| public_configs = [ ":public_include_path" ] |
| public = [ "public/pw_function/scope_guard.h" ] |
| } |
| |
| pw_test_group("tests") { |
| tests = [ |
| ":function_test", |
| ":function_ref_test", |
| ":pointer_test", |
| ":scope_guard_test", |
| "$pw_external_fuchsia:function_tests", |
| ] |
| } |
| |
| pw_test("function_test") { |
| deps = [ |
| ":pw_function", |
| dir_pw_polyfill, |
| ] |
| sources = [ "function_test.cc" ] |
| negative_compilation_tests = true |
| } |
| |
| pw_test("pointer_test") { |
| deps = [ |
| ":pointer", |
| ":pw_function", |
| ] |
| sources = [ "pointer_test.cc" ] |
| } |
| |
| pw_test("scope_guard_test") { |
| sources = [ "scope_guard_test.cc" ] |
| deps = [ |
| ":pw_function", |
| ":scope_guard", |
| ] |
| } |
| |
| pw_test("function_ref_test") { |
| deps = [ ":pw_function" ] |
| sources = [ "function_ref_test.cc" ] |
| negative_compilation_tests = true |
| } |