blob: 4ebddec85bdfec0b1dcc263273748dece257f4cb [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 = [
20 ":pw_module_tests",
21 "$dir_pigweed/docs",
22 ]
23}
24
25group("pw_facades") {
26 deps = [
27 "$dir_pw_dumb_io",
28 ]
29}
30
31# All Pigweed modules that can be built using gn. This is not built by default.
Alexei Frolov1a82c142019-10-31 17:37:12 -070032group("pw_modules") {
33 deps = [
Alexei Frolov0efdb112019-11-14 17:22:08 -080034 "$dir_pigweed/docs",
Alexei Frolove2016762019-11-14 13:49:52 -080035 "$dir_pw_bloat",
Alexei Frolovc10c8122019-11-01 16:31:19 -070036 "$dir_pw_preprocessor",
Wyatt Hepler77105652019-11-06 17:50:03 -080037 "$dir_pw_span",
Alexei Frolov1a82c142019-10-31 17:37:12 -070038 "$dir_pw_status",
Wyatt Hepler48db4d62019-11-11 10:32:45 -080039 "$dir_pw_string",
Alexei Frolovc10c8122019-11-01 16:31:19 -070040 "$dir_pw_unit_test",
Alexei Frolov82d3cb32019-11-27 14:38:39 -080041 "$dir_pw_varint",
Alexei Frolov1a82c142019-10-31 17:37:12 -070042 ]
43}
Alexei Frolov925fb8f2019-11-05 16:32:30 -080044
45# Targets for all module unit test groups.
Wyatt Hepleredf6f292019-11-25 18:52:21 -080046pw_test_group("pw_module_tests") {
47 group_deps = [
Alexei Frolova454c682019-11-19 10:55:07 -080048 "$dir_pw_preprocessor:tests",
49 "$dir_pw_span:tests",
50 "$dir_pw_status:tests",
51 "$dir_pw_string:tests",
Alexei Frolov82d3cb32019-11-27 14:38:39 -080052 "$dir_pw_varint:tests",
Alexei Frolov925fb8f2019-11-05 16:32:30 -080053 ]
54}