blob: 5514010b160cdd8133d41262d8575019d81fddea [file] [log] [blame]
Alexei Frolov1a82c142019-10-31 17:37:12 -07001# Copyright 2019 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
Wyatt Hepleredf6f292019-11-25 18:52:21 -080015import("$dir_pw_unit_test/test.gni")
16
Armando Montanez04c56ae2019-12-12 14:34:05 -080017# By default, Pigweed will build this target when invoking ninja.
18group("default") {
19 deps = [
Armando Montanez04c56ae2019-12-12 14:34:05 -080020 "$dir_pigweed/docs",
21 ]
Keir Mierlee2f5d0f2019-12-16 11:36:22 -080022 if (pw_automatic_test_runner == "") {
23 # Without a test runner defined, build the tests but don't run them.
24 deps += [ ":pw_module_tests" ]
25 } else {
26 # With a test runner, depend on the run targets so they run with the build.
27 deps += [ ":pw_module_tests_run" ]
28 }
Armando Montanez04c56ae2019-12-12 14:34:05 -080029}
30
31group("pw_facades") {
32 deps = [
Armando Montanez5104cd62019-12-10 14:36:43 -080033 "$dir_pw_cpu_exception",
Armando Montanez04c56ae2019-12-12 14:34:05 -080034 "$dir_pw_dumb_io",
35 ]
36}
37
38# All Pigweed modules that can be built using gn. This is not built by default.
Alexei Frolov1a82c142019-10-31 17:37:12 -070039group("pw_modules") {
40 deps = [
Alexei Frolov0efdb112019-11-14 17:22:08 -080041 "$dir_pigweed/docs",
Alexei Frolove2016762019-11-14 13:49:52 -080042 "$dir_pw_bloat",
Alexei Frolovc10c8122019-11-01 16:31:19 -070043 "$dir_pw_preprocessor",
Wyatt Hepler77105652019-11-06 17:50:03 -080044 "$dir_pw_span",
Alexei Frolov1a82c142019-10-31 17:37:12 -070045 "$dir_pw_status",
Wyatt Hepler48db4d62019-11-11 10:32:45 -080046 "$dir_pw_string",
Alexei Frolovc10c8122019-11-01 16:31:19 -070047 "$dir_pw_unit_test",
Alexei Frolov82d3cb32019-11-27 14:38:39 -080048 "$dir_pw_varint",
Alexei Frolov1a82c142019-10-31 17:37:12 -070049 ]
50}
Alexei Frolov925fb8f2019-11-05 16:32:30 -080051
52# Targets for all module unit test groups.
Wyatt Hepleredf6f292019-11-25 18:52:21 -080053pw_test_group("pw_module_tests") {
54 group_deps = [
Alexei Frolova454c682019-11-19 10:55:07 -080055 "$dir_pw_preprocessor:tests",
56 "$dir_pw_span:tests",
57 "$dir_pw_status:tests",
58 "$dir_pw_string:tests",
Alexei Frolov82d3cb32019-11-27 14:38:39 -080059 "$dir_pw_varint:tests",
Alexei Frolov925fb8f2019-11-05 16:32:30 -080060 ]
Armando Montanez5104cd62019-12-10 14:36:43 -080061
62 # TODO(pwbug/17): Re-think when Pigweed config system is added.
63 if (dir_pw_cpu_exception_backend == dir_pw_cpu_exception_armv7m) {
64 group_deps += [ "$dir_pw_cpu_exception_armv7m:tests" ]
65 }
Alexei Frolov925fb8f2019-11-05 16:32:30 -080066}