blob: dd35c300772e1b07d61b0f0a345127ee66e1916e [file] [log] [blame]
Ewout van Bekkum8b72a572021-03-09 08:53:39 -08001# 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(
16 "//pw_build:pigweed.bzl",
17 "pw_cc_library",
18)
19
20package(default_visibility = ["//visibility:public"])
21
22licenses(["notice"]) # Apache License 2.0
23
24pw_cc_library(
25 name = "id_headers",
26 hdrs = [
27 "public/pw_thread_embos/id_inline.h",
28 "public/pw_thread_embos/id_native.h",
29 "public_overrides/pw_thread_backend/id_inline.h",
30 "public_overrides/pw_thread_backend/id_native.h",
31 ],
32 includes = [
33 "public",
34 "public_overrides",
35 ],
36)
37
38pw_cc_library(
39 name = "id",
40 deps = [
41 ":id_headers",
42 "//pw_thread:id_facade",
43 ],
44 # TODO(pwbug/317): This should depend on embOS but our third parties
45 # currently do not have Bazel support.
46)
47
48pw_cc_library(
49 name = "sleep_headers",
50 hdrs = [
51 "public/pw_thread_embos/sleep_inline.h",
52 "public_overrides/pw_thread_backend/sleep_inline.h",
53 ],
54 includes = [
55 "public",
56 "public_overrides",
57 ],
58 deps = [
59 "//pw_chrono:system_clock",
60 ],
61)
62
63pw_cc_library(
64 name = "sleep",
65 srcs = [
66 "sleep.cc",
67 ],
68 deps = [
69 ":sleep_headers",
70 "//pw_chrono_embos:system_clock_headers",
71 "//pw_assert",
72 "//pw_chrono:system_clock",
73 "//pw_thread:sleep_facade",
74 ],
75 # TODO(pwbug/317): This should depend on embOS but our third parties
76 # currently do not have Bazel support.
77)
78
79pw_cc_library(
80 name = "yield_headers",
81 hdrs = [
82 "public/pw_thread_embos/yield_inline.h",
83 "public_overrides/pw_thread_backend/yield_inline.h",
84 ],
85 includes = [
86 "public",
87 "public_overrides",
88 ],
89 # TODO(pwbug/317): This should depend on embOS but our third parties
90 # currently do not have Bazel support.
91)
92
93pw_cc_library(
94 name = "yield",
95 deps = [
96 ":yield_headers",
97 "//pw_thread:yield_facade",
98 ],
99)