blob: d696ae4a1c6a179c1e10ed7bfa40a85ffac37b8c [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
15# All Pigweed modules that can be built using gn.
16group("pw_modules") {
17 deps = [
Alexei Frolovc10c8122019-11-01 16:31:19 -070018 "$dir_pw_preprocessor",
Alexei Frolov1a82c142019-10-31 17:37:12 -070019 "$dir_pw_status",
Alexei Frolovc10c8122019-11-01 16:31:19 -070020 "$dir_pw_unit_test",
Alexei Frolov1a82c142019-10-31 17:37:12 -070021 ]
22}
Alexei Frolov925fb8f2019-11-05 16:32:30 -080023
24# Targets for all module unit test groups.
25group("pw_module_tests") {
26 deps = [
27 "$dir_pw_preprocessor:unit_tests",
28 ]
29}