blob: 0a874f92ce745e1c0603df983fd0e55446d3265e [file] [log] [blame]
Wyatt Hepler0412a7d2020-01-28 16:27:32 -08001# Copyright 2020 The Pigweed Authors
Alexei Frolov1a82c142019-10-31 17:37:12 -07002#
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
Armando Montanezfb3d3fb2020-06-09 18:12:12 -070015# gn-format disable
16import("//build_overrides/pigweed.gni")
Wyatt Hepleredf6f292019-11-25 18:52:21 -080017
Alexei Frolov4c0428a2020-06-10 10:46:04 -070018import("$dir_pw_build/host_tool.gni")
Alexei Frolov258fc1b2020-06-10 16:24:50 -070019import("$dir_pw_docgen/docs.gni")
Armando Montanez86003202020-06-16 18:00:06 -070020import("$dir_pw_toolchain/generate_toolchain.gni")
Armando Montanezfb3d3fb2020-06-09 18:12:12 -070021import("$dir_pw_unit_test/test.gni")
Alexei Frolov258fc1b2020-06-10 16:24:50 -070022
23# Main build file for upstream Pigweed.
24
Alexei Frolov4c0428a2020-06-10 10:46:04 -070025declare_args() {
Armando Montanezebe27c62020-06-11 15:23:15 -070026 # The optimization level to use when building upstream Pigweed targets.
27 #
28 # Choices:
29 # debug
30 # size_optimized
31 # speed_optimized
32 pw_optimization_level = "debug"
Alexei Frolovf6753902020-07-08 11:01:45 -070033
34 # List of application image GN targets specific to the Pigweed target.
35 pw_TARGET_APPLICATIONS = []
Alexei Frolov4c0428a2020-06-10 10:46:04 -070036}
37
Armando Montanezebe27c62020-06-11 15:23:15 -070038# Enumerate all of the different targets that upstream Pigweed will build by
39# default. Downstream projects should not depend on this target; this target is
40# exclusively to facilitate easy upstream development and testing.
Armando Montanez04c56ae2019-12-12 14:34:05 -080041group("default") {
Armando Montanezebe27c62020-06-11 15:23:15 -070042 deps = [
43 ":docs",
44 ":host",
Armando Montanez6f07fa72020-09-17 17:19:14 -070045 ":stm32f429i",
Armando Montanezebe27c62020-06-11 15:23:15 -070046 ]
47}
48
49# Below are a list of GN targets you can build to force Pigweed to build for a
50# specific Pigweed target.
51group("host") {
52 # Auto select a toolchain based on host OS.
Armando Montanez164624f2020-06-10 15:00:29 -070053 if (host_os == "linux") {
Armando Montanezebe27c62020-06-11 15:23:15 -070054 _default_host_toolchain = ":host_clang"
Armando Montanez164624f2020-06-10 15:00:29 -070055 } else if (host_os == "mac") {
Armando Montanezebe27c62020-06-11 15:23:15 -070056 _default_host_toolchain = ":host_clang"
Armando Montanez164624f2020-06-10 15:00:29 -070057 } else if (host_os == "win") {
Armando Montanezebe27c62020-06-11 15:23:15 -070058 _default_host_toolchain = ":host_gcc"
Armando Montanez164624f2020-06-10 15:00:29 -070059 } else {
60 assert(false, "Please define a host config for your system: $host_os")
61 }
Alexei Frolov4c0428a2020-06-10 10:46:04 -070062
Armando Montanezebe27c62020-06-11 15:23:15 -070063 deps = [ _default_host_toolchain ]
64}
65
66group("host_clang") {
67 deps = [ ":pigweed_default($dir_pigweed/targets/host:host_clang_$pw_optimization_level)" ]
68}
69
70group("host_gcc") {
71 deps = [ ":pigweed_default($dir_pigweed/targets/host:host_gcc_$pw_optimization_level)" ]
72}
73
74group("stm32f429i") {
75 deps = [ ":pigweed_default($dir_pigweed/targets/stm32f429i-disc1:stm32f429i_disc1_$pw_optimization_level)" ]
76}
77
78group("qemu") {
79 deps = [ ":pigweed_default($dir_pigweed/targets/lm3s6965evb-qemu:lm3s6965evb_qemu_$pw_optimization_level)" ]
80}
81
82group("docs") {
83 deps = [ ":pigweed_default($dir_pigweed/targets/docs)" ]
Alexei Frolov844ff0f2020-05-06 12:15:29 -070084}
85
86# By default, Pigweed will build this target when invoking ninja.
87group("pigweed_default") {
Alexei Frolov799be5d2020-01-09 15:54:39 -080088 deps = []
Alexei Frolov4c0428a2020-06-10 10:46:04 -070089
90 # Prevent the default toolchain from parsing any other BUILD.gn files.
91 if (current_toolchain != default_toolchain) {
Alexei Frolov258fc1b2020-06-10 16:24:50 -070092 if (pw_docgen_BUILD_DOCS) {
Alexei Frolov4c0428a2020-06-10 10:46:04 -070093 deps += [ "$dir_pigweed/docs" ]
Alexei Frolov799be5d2020-01-09 15:54:39 -080094 } else {
Alexei Frolovf6753902020-07-08 11:01:45 -070095 deps += [ ":apps" ]
Alexei Frolov4c0428a2020-06-10 10:46:04 -070096 if (pw_unit_test_AUTOMATIC_RUNNER == "") {
97 # Without a test runner defined, build the tests but don't run them.
98 deps += [ ":pw_module_tests" ]
99 } else {
100 # With a test runner, depend on the run targets so they run with the
101 # build.
102 deps += [ ":pw_module_tests_run" ]
103 }
104 }
Armando Montanez86003202020-06-16 18:00:06 -0700105 if (defined(pw_toolchain_SCOPE.is_host_toolchain) &&
106 pw_toolchain_SCOPE.is_host_toolchain && pw_build_HOST_TOOLS) {
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700107 deps += [ ":host_tools" ]
Alexei Frolov799be5d2020-01-09 15:54:39 -0800108 }
Robert Oliver70b92642020-07-13 15:04:10 -0400109
110 # Trace examples currently only support running on non-windows host
111 if (defined(pw_toolchain_SCOPE.is_host_toolchain) &&
112 pw_toolchain_SCOPE.is_host_toolchain && host_os != "win") {
Robert Oliver6d05de12020-07-13 15:10:42 -0400113 deps += [
114 "$dir_pw_trace:trace_example_basic",
115 "$dir_pw_trace_tokenized:trace_tokenized_example_basic",
Robert Oliver0cc20752020-07-14 15:24:22 -0400116 "$dir_pw_trace_tokenized:trace_tokenized_example_filter",
Robert Oliver19146912020-07-14 10:49:48 -0400117 "$dir_pw_trace_tokenized:trace_tokenized_example_trigger",
Robert Oliver6d05de12020-07-13 15:10:42 -0400118 ]
Robert Oliver70b92642020-07-13 15:04:10 -0400119 }
Keir Mierlee2f5d0f2019-12-16 11:36:22 -0800120 }
Alexei Frolovca9cf602019-12-26 13:00:03 -0800121}
122
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700123# Prevent the default toolchain from parsing any other BUILD.gn files.
124if (current_toolchain != default_toolchain) {
Alexei Frolovf6753902020-07-08 11:01:45 -0700125 group("apps") {
126 # Application images built for all targets.
Wyatt Heplerb8db5092020-09-17 10:36:41 -0700127 deps = [ "$dir_pw_hdlc_lite/rpc_example" ]
Alexei Frolovf6753902020-07-08 11:01:45 -0700128
129 # Add target-specific images.
130 deps += pw_TARGET_APPLICATIONS
131 }
132
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700133 group("host_tools") {
134 deps = [
135 "$dir_pw_target_runner/go:simple_client",
136 "$dir_pw_target_runner/go:simple_server",
Rob Mohr2156c0a2020-02-07 10:06:53 -0800137 ]
Alexei Frolov8c4b7522020-01-31 11:15:57 -0800138 }
Alexei Frolov925fb8f2019-11-05 16:32:30 -0800139
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700140 # All Pigweed modules that can be built using gn. This is not built by default.
141 group("pw_modules") {
142 deps = [
143 "$dir_pigweed/docs",
144 "$dir_pw_allocator",
145 "$dir_pw_base64",
David Rogers2d195022020-07-16 14:07:47 -0700146 "$dir_pw_blob_store",
shaneajg9c19db42020-06-11 15:49:51 -0400147 "$dir_pw_bytes",
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700148 "$dir_pw_checksum",
Alexei Frolovf6753902020-07-08 11:01:45 -0700149 "$dir_pw_cpu_exception",
shaneajg0869f2c2020-07-08 10:39:14 -0400150 "$dir_pw_hdlc_lite",
Keir Mierle45fa7852020-08-10 21:09:54 -0700151 "$dir_pw_metric",
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700152 "$dir_pw_polyfill",
153 "$dir_pw_preprocessor",
154 "$dir_pw_protobuf",
155 "$dir_pw_result",
156 "$dir_pw_span",
157 "$dir_pw_status",
158 "$dir_pw_stream",
159 "$dir_pw_string",
Alexei Frolovf6753902020-07-08 11:01:45 -0700160 "$dir_pw_sys_io",
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700161 "$dir_pw_trace",
162 "$dir_pw_unit_test",
163 "$dir_pw_varint",
164 ]
165
166 if (host_os != "win") {
167 deps += [
168 # TODO(frolv): Remove these two when new KVS is ready.
169 "$dir_pw_kvs",
170 "$dir_pw_minimal_cpp_stdlib",
171
172 # TODO(pwbug/111): Remove this when building successfully on Windows.
173 "$dir_pw_tokenizer",
174 ]
175 }
Armando Montanez870a86b2020-05-26 10:54:38 -0700176 }
177
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700178 # Targets for all module unit test groups.
179 pw_test_group("pw_module_tests") {
180 group_deps = [
181 "$dir_pw_allocator:tests",
182 "$dir_pw_assert:tests",
183 "$dir_pw_base64:tests",
David Rogers2d195022020-07-16 14:07:47 -0700184 "$dir_pw_blob_store:tests",
shaneajg9c19db42020-06-11 15:49:51 -0400185 "$dir_pw_bytes:tests",
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700186 "$dir_pw_checksum:tests",
187 "$dir_pw_containers:tests",
188 "$dir_pw_fuzzer:tests",
shaneajge6d3a612020-07-23 18:40:28 -0400189 "$dir_pw_hdlc_lite:tests",
Armando Montanez593d0d52020-07-08 19:55:01 -0700190 "$dir_pw_hex_dump:tests",
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700191 "$dir_pw_log:tests",
Wyatt Hepler24a6e272020-09-01 10:25:28 -0700192 "$dir_pw_log_null:tests",
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700193 "$dir_pw_log_tokenized:tests",
Chenghan Zhoud4f44d22020-06-18 15:42:06 -0400194 "$dir_pw_malloc_freelist:tests",
Keir Mierle45fa7852020-08-10 21:09:54 -0700195 "$dir_pw_metric:tests",
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700196 "$dir_pw_polyfill:tests",
197 "$dir_pw_preprocessor:tests",
198 "$dir_pw_protobuf:tests",
199 "$dir_pw_protobuf_compiler:tests",
Armando Montanez47008e82020-08-04 11:04:45 -0700200 "$dir_pw_random:tests",
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700201 "$dir_pw_result:tests",
202 "$dir_pw_ring_buffer:tests",
203 "$dir_pw_rpc:tests",
204 "$dir_pw_span:tests",
205 "$dir_pw_status:tests",
206 "$dir_pw_stream:tests",
207 "$dir_pw_string:tests",
208 "$dir_pw_tokenizer:tests",
209 "$dir_pw_trace:tests",
Robert Oliver21dcf272020-05-12 15:41:52 -0400210 "$dir_pw_trace_tokenized:tests",
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700211 "$dir_pw_unit_test:tests",
212 "$dir_pw_varint:tests",
213 ]
214
215 import("$dir_pw_cpu_exception/backend.gni")
216
217 # TODO(pwbug/17): Re-think when Pigweed config system is added.
Armando Montanez356bf972020-06-04 10:35:55 -0700218 if (pw_cpu_exception_ENTRY_BACKEND == dir_pw_cpu_exception_armv7m) {
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700219 group_deps += [ "$dir_pw_cpu_exception_armv7m:tests" ]
220 }
221
Armando Montanez86003202020-06-16 18:00:06 -0700222 if (defined(pw_toolchain_SCOPE.is_host_toolchain) &&
223 pw_toolchain_SCOPE.is_host_toolchain) {
Alexei Frolov4c0428a2020-06-10 10:46:04 -0700224 # TODO(pwbug/196): KVS tests are not compatible with device builds as they
225 # use features such as std::map and are computationally expensive. Solving
226 # this requires a more complex capabilities-based build and configuration
227 # system which allowing enabling specific tests for targets that support
228 # them and modifying test parameters for different targets.
229 #
230 # Checking for pw_build_host_tools (which is only set by the host) is a
231 # temporary fix until the problem can be properly solved.
232 group_deps += [ "$dir_pw_kvs:tests" ]
233 }
234
235 if (host_os != "win") {
236 # TODO(amontanez): pw_minimal_cpp_stdlib tests do not build on windows.
237 group_deps += [ "$dir_pw_minimal_cpp_stdlib:tests" ]
238 }
Alexei Frolov8c4b7522020-01-31 11:15:57 -0800239 }
Alexei Frolov925fb8f2019-11-05 16:32:30 -0800240}