xref: /aosp_15_r20/external/pigweed/pw_chrono_freertos/BUILD.gn (revision 61c4878ac05f98d0ceed94b57d316916de578985)
1# 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("//build_overrides/pigweed.gni")
16
17import("$dir_pw_build/module_config.gni")
18import("$dir_pw_build/target_types.gni")
19import("$dir_pw_docgen/docs.gni")
20import("$dir_pw_unit_test/test.gni")
21
22declare_args() {
23  # The build target that overrides the default configuration options for this
24  # module. This should point to a source set that provides defines through a
25  # public config (which may -include a file or add defines directly).
26  pw_chrono_freertos_CONFIG = pw_build_DEFAULT_MODULE_CONFIG
27}
28
29config("public_include_path") {
30  include_dirs = [ "public" ]
31  visibility = [ ":*" ]
32}
33
34config("backend_config") {
35  include_dirs = [ "public_overrides" ]
36  visibility = [ ":*" ]
37}
38
39pw_source_set("config") {
40  public = [ "public/pw_chrono_freertos/config.h" ]
41  public_configs = [ ":public_include_path" ]
42  public_deps = [
43    "$dir_pw_third_party/freertos",
44    dir_pw_polyfill,
45    pw_chrono_freertos_CONFIG,
46  ]
47}
48
49# This target provides the backend for pw::chrono::SystemClock.
50pw_source_set("system_clock") {
51  public_configs = [
52    ":public_include_path",
53    ":backend_config",
54  ]
55  public = [
56    "public/pw_chrono_freertos/system_clock_config.h",
57    "public/pw_chrono_freertos/system_clock_constants.h",
58    "public_overrides/pw_chrono_backend/system_clock_config.h",
59  ]
60  public_deps = [
61    ":config",
62    "$dir_pw_chrono:epoch",
63    "$dir_pw_chrono:system_clock.facade",
64    "$dir_pw_third_party/freertos",
65  ]
66  sources = [ "system_clock.cc" ]
67  deps = [
68    "$dir_pw_chrono:system_clock.facade",
69    "$dir_pw_interrupt:context",
70    "$dir_pw_sync:interrupt_spin_lock",
71  ]
72}
73
74# This target provides the backend for pw::chrono::SystemTimer.
75pw_source_set("system_timer") {
76  public_configs = [
77    ":public_include_path",
78    ":backend_config",
79  ]
80  public = [
81    "public/pw_chrono_freertos/system_timer_inline.h",
82    "public/pw_chrono_freertos/system_timer_native.h",
83    "public_overrides/pw_chrono_backend/system_timer_inline.h",
84    "public_overrides/pw_chrono_backend/system_timer_native.h",
85  ]
86  public_deps = [
87    "$dir_pw_chrono:system_clock",
88    "$dir_pw_chrono:system_timer.facade",
89    "$dir_pw_third_party/freertos",
90  ]
91  deps = [
92    "$dir_pw_assert",
93    "$dir_pw_chrono_freertos:system_clock",
94  ]
95  allow_circular_includes_from = [ "$dir_pw_chrono:system_timer.facade" ]
96  sources = [ "system_timer.cc" ]
97}
98
99pw_doc_group("docs") {
100  sources = [ "docs.rst" ]
101}
102
103pw_test_group("tests") {
104}
105