forked from google/pigweed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.bazel
137 lines (126 loc) · 3.49 KB
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# 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.
load(
"//pw_build:pigweed.bzl",
"pw_cc_test",
)
load(
"//pw_build_info:substitute_workspace_status.bzl",
"pw_substitute_workspace_status",
)
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
cc_library(
name = "build_id_header",
hdrs = [
"public/pw_build_info/build_id.h",
"public/pw_build_info/util.h",
],
includes = ["public"],
deps = [
"//pw_span",
],
)
cc_library(
name = "build_id",
srcs = [
"build_id.cc",
"util.cc",
],
# Automatically add the gnu build ID linker sections when building for
# Linux. macOS and Windows executables are not supported, and embedded
# targets must manually add the snippet to their linker script in a
# read-only section.
linkopts = select({
# When building for Linux, the linker provides a default linker script.
# The add_build_id_to_default_script.ld wrapper includes the
# build_id_linker_snippet.ld script in a way that appends to the
# default linker script instead of overriding it.
"@platforms//os:linux": [
"-T$(location add_build_id_to_default_linker_script.ld)",
],
"//conditions:default": [],
}) + [
"-Lpw_build_info",
"-Wl,--build-id=sha1",
],
deps = select({
"@platforms//os:linux": [
":add_build_id_to_default_linker_script.ld",
":build_id_linker_snippet.ld",
],
"//conditions:default": [],
}) + [
":build_id_header",
"//pw_log",
"//pw_preprocessor",
"//pw_span",
"//pw_string",
],
)
cc_library(
name = "build_id_noop",
srcs = [
"build_id_noop.cc",
"util.cc",
],
deps = [
":build_id_header",
"//pw_log",
"//pw_span",
"//pw_string",
],
)
cc_library(
name = "build_id_or_noop",
deps = select({
"@platforms//os:ios": [":build_id_noop"],
"@platforms//os:macos": [":build_id_noop"],
"@platforms//os:windows": [":build_id_noop"],
"//conditions:default": [":build_id"],
}),
)
pw_cc_test(
name = "build_id_test",
srcs = ["build_id_test.cc"],
# This test is only compatible with linux. macOS and Windows are not
# supported, and embedded targets must manually add the snippet to their
# linker scripts
target_compatible_with = ["@platforms//os:linux"],
deps = [
":build_id",
"//pw_span",
"//pw_unit_test",
],
)
py_binary(
name = "substitute_workspace_status_tool",
srcs = ["substitute_workspace_status_tool.py"],
)
pw_substitute_workspace_status(
name = "git_build_info",
src = "git_build_info.h.in",
out = "git_build_info.h",
)
pw_cc_test(
name = "git_build_info_test",
srcs = [
"git_build_info_test.cc",
":git_build_info",
],
deps = [
"//pw_log",
"//pw_unit_test",
],
)