blob: 5edf70bab2d9ac7df4652a199f607990f7629e30 [file] [log] [blame]
Wyatt Hepler99713932019-12-17 10:20:42 -08001# 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
15load("//pw_build:pigweed.bzl", "pw_cc_binary")
16
17package(default_visibility = ["//visibility:public"])
18
19licenses(["notice"]) # Apache License 2.0
20
21pw_cc_binary(
22 name = "simple_base",
23 srcs = ["simple_base.cc"],
24)
25
26pw_cc_binary(
27 name = "simple_loop",
28 srcs = ["simple_loop.cc"],
29)
30
31pw_cc_binary(
32 name = "simple_function",
33 srcs = ["simple_function.cc"],
34)