-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathflashable_executable.gni
175 lines (149 loc) · 5.46 KB
/
flashable_executable.gni
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# Copyright (c) 2020 Project CHIP 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
#
# http://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/build.gni")
# Convert a binary to a target format using objcopy.
template("objcopy_convert") {
forward_variables_from(invoker,
[
"conversion_input",
"conversion_output",
"conversion_target_format",
"deps",
"objcopy",
])
action(target_name) {
inputs = [ conversion_input ]
outputs = [ conversion_output ]
args = [
objcopy,
"-O",
conversion_target_format,
rebase_path(conversion_input, root_build_dir),
rebase_path(conversion_output, root_build_dir),
]
script = "${build_root}/gn_run_binary.py"
}
}
# Build a script to perform a device flashing operation.
#
# This requires a Python script, given by flashing_script_generator,
# to construct the resulting flashing script, given by flashing_script_name.
#
# As used by flashable_executable(), the generator script requires two options,
# --output SCRIPT - The generated script
# --application IMAGE - The file to be flashed
# plus any platform- or target-specific options as passed in by
# flashable_executable()'s flashing_options.
template("gen_flashing_script") {
forward_variables_from(invoker,
[
"flashing_script_generator",
"flashing_script_name",
"flashing_script_inputs",
"flashing_options",
"deps",
"data_deps",
])
action(target_name) {
outputs = [ flashing_script_name ]
args = flashing_options
args += [
"--output",
rebase_path(flashing_script_name, root_build_dir),
]
script = flashing_script_generator
inputs = flashing_script_inputs
}
}
# Build target for an executable, optionally converted to the preferred form
# for flashing, plus a script that performs the flashing operation.
#
# The intent is that every flashable (or testable) build target in CHIP will
# ultimately be flashable/runnable in a consistent way.
template("flashable_executable") {
executable_target = "$target_name.executable"
if (!defined(invoker.output_dir)) {
invoker.output_dir = root_out_dir
}
if (defined(invoker.flashing_script_name)) {
# Generating the flashing script is the final target.
final_target = "$target_name.flashing"
} else if (defined(invoker.objcopy_image_name)) {
# Converted image is the final target.
final_target = "$target_name.image"
} else {
# The executable is the final target.
final_target = executable_target
}
if (defined(invoker.flashbundle_name)) {
flashbundle_name = invoker.flashbundle_name
} else {
flashbundle_name = "${target_name}.flashbundle.txt"
}
group(target_name) {
data_deps = [ ":$final_target" ]
if (defined(invoker.data_deps)) {
data_deps += invoker.data_deps
}
# Invoker can stop this template from creating the flashbundle.txt by setting flashbundle_name to empty string.
if (flashbundle_name != "") {
write_runtime_deps = "${invoker.output_dir}/${flashbundle_name}"
}
}
if (defined(invoker.objcopy_image_name)) {
# Executable target must be converted for flashing.
assert(defined(invoker.objcopy_image_format))
assert(defined(invoker.objcopy))
image_target = "$target_name.image"
image_name = invoker.objcopy_image_name
image_format = invoker.objcopy_image_format
objcopy = invoker.objcopy
objcopy_convert(image_target) {
conversion_input = "${invoker.output_dir}/${invoker.output_name}"
conversion_output = "${invoker.output_dir}/${image_name}"
conversion_target_format = image_format
deps = [ ":$executable_target" ]
}
}
if (defined(invoker.flashing_script_name)) {
if (!defined(image_target)) {
# The executable can be flashed directly.
image_target = executable_target
image_name = invoker.output_name
}
gen_flashing_script("$target_name.flashing") {
flashing_script_generator = invoker.flashing_script_generator
flashing_script_inputs = invoker.flashing_script_inputs
flashing_script_name =
"${invoker.output_dir}/${invoker.flashing_script_name}"
if (defined(invoker.flashing_options)) {
flashing_options = invoker.flashing_options
} else {
flashing_options = []
}
# Allows to set a different image name in the flasher script
if (defined(invoker.flashing_image_name)) {
image_name = invoker.flashing_image_name
}
flashing_options += [
"--application",
rebase_path(image_name, invoker.output_dir, invoker.output_dir),
]
data_deps = [ ":$image_target" ]
}
}
executable(executable_target) {
forward_variables_from(invoker, "*")
}
}