xref: /aosp_15_r20/external/pigweed/pw_chrono_stl/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/target_types.gni")
18import("$dir_pw_docgen/docs.gni")
19import("$dir_pw_unit_test/test.gni")
20
21config("public_include_path") {
22  include_dirs = [ "public" ]
23  visibility = [ ":*" ]
24}
25
26config("clock_backend_config") {
27  include_dirs = [ "clock_public_overrides" ]
28  visibility = [ ":*" ]
29}
30
31config("timer_backend_config") {
32  include_dirs = [ "timer_public_overrides" ]
33  visibility = [ ":*" ]
34}
35
36# This target provides the backend for pw::chrono::SystemClock.
37pw_source_set("system_clock") {
38  public_configs = [
39    ":public_include_path",
40    ":clock_backend_config",
41  ]
42  public = [
43    "clock_public_overrides/pw_chrono_backend/system_clock_config.h",
44    "clock_public_overrides/pw_chrono_backend/system_clock_inline.h",
45    "public/pw_chrono_stl/system_clock_config.h",
46    "public/pw_chrono_stl/system_clock_inline.h",
47  ]
48  public_deps = [
49    "$dir_pw_chrono:epoch",
50    "$dir_pw_chrono:system_clock.facade",
51  ]
52}
53
54# This target provides the backend for pw::chrono::SystemTimer.
55pw_source_set("system_timer") {
56  public_configs = [
57    ":public_include_path",
58    ":timer_backend_config",
59  ]
60  public = [
61    "public/pw_chrono_stl/system_timer_inline.h",
62    "public/pw_chrono_stl/system_timer_native.h",
63    "timer_public_overrides/pw_chrono_backend/system_timer_inline.h",
64    "timer_public_overrides/pw_chrono_backend/system_timer_native.h",
65  ]
66  public_deps = [
67    "$dir_pw_chrono:system_clock",
68    "$dir_pw_chrono:system_timer.facade",
69    "$dir_pw_function",
70  ]
71  allow_circular_includes_from = [ "$dir_pw_chrono:system_timer.facade" ]
72  sources = [ "system_timer.cc" ]
73}
74
75pw_doc_group("docs") {
76  sources = [ "docs.rst" ]
77}
78
79pw_test_group("tests") {
80}
81