blob: 1087c51bb147b55c4b698184c041b1e4b92057c4 [file] [log] [blame]
Wyatt Heplerf9fb90f2020-09-30 18:59:33 -07001.. _docs-pw-style:
Keir Mierle2c1e56b2019-11-15 16:32:11 -08002
3===========================
4Style Guide and Conventions
5===========================
6
Armando Montanezf2bbb752020-03-03 09:50:37 -08007.. tip::
8 Pigweed runs ``pw format`` as part of ``pw presubmit`` to perform some code
9 formatting checks. To speed up the review process, consider adding ``pw
10 presubmit`` as a git push hook using the following command:
11 ``pw presubmit --install``
12
Keir Mierle2c1e56b2019-11-15 16:32:11 -080013---------
14C++ style
15---------
16
17The Pigweed C++ style guide is closely based on Google's external C++ Style
18Guide, which is found on the web at
19https://google.github.io/styleguide/cppguide.html. The Google C++ Style Guide
20applies to Pigweed except as described in this document.
21
22The Pigweed style guide only applies to Pigweed itself. It does not apply to
Alexei Frolov44d54732020-01-10 14:45:43 -080023projects that use Pigweed or to the third-party code included with Pigweed.
Keir Mierle2c1e56b2019-11-15 16:32:11 -080024Non-Pigweed code is free to use features restricted by Pigweed, such as dynamic
25memory allocation and the entirety of the C++ Standard Library.
26
27Recommendations in the :doc:`embedded_cpp_guide` are considered part of the
28Pigweed style guide, but are separated out since it covers more general
29embedded development beyond just C++ style.
30
31Automatic formatting
32====================
33Pigweed uses `clang-format <https://clang.llvm.org/docs/ClangFormat.html>`_ to
34automatically format Pigweed source code. A ``.clang-format`` configuration is
35provided with the Pigweed repository.
36
37Automatic formatting is essential to facilitate large-scale, automated changes
38in Pigweed. Therefore, all code in Pigweed is expected to be formatted with
39``clang-format`` prior to submission. Existing code may be reformatted at any
40time.
41
42If ``clang-format`` formats code in an undesirable or incorrect way, it can be
43disabled for the affected lines by adding ``// clang-format off``.
44``clang-format`` must then be re-enabled with a ``// clang-format on`` comment.
45
46.. code-block:: cpp
47
48 // clang-format off
Alexei Frolov44d54732020-01-10 14:45:43 -080049 constexpr int kMyMatrix[] = {
Keir Mierle2c1e56b2019-11-15 16:32:11 -080050 100, 23, 0,
51 0, 542, 38,
52 1, 2, 201,
53 };
54 // clang-format on
55
56C Standard Library
57==================
58In C++ headers, always use the C++ versions of C Standard Library headers (e.g.
59``<cstdlib>`` instead of ``<stdlib.h>``). If the header is used by both C and
60C++ code, only the C header should be used.
61
62In C++ code, it is preferred to use C functions from the ``std`` namespace. For
63example, use ``std::memcpy`` instead of ``memcpy``. The C++ standard does not
64require the global namespace versions of the functions to be provided. Using
65``std::`` is more consistent with the C++ Standard Library and makes it easier
66to distinguish Pigweed functions from library functions.
67
68Within core Pigweed, do not use C standard library functions that allocate
69memory, such as ``std::malloc``. There are exceptions to this for when dynamic
70allocation is enabled for a system; Pigweed modules are allowed to add extra
71functionality when a heap is present; but this must be optional.
72
73C++ Standard Library
74====================
75Much of the C++ Standard Library is not a good fit for embedded software. Many
76of the classes and functions were not designed with the RAM, flash, and
77performance constraints of a microcontroller in mind. For example, simply
78adding the line ``#include <iostream>`` can increase the binary size by 150 KB!
Alexei Frolov44d54732020-01-10 14:45:43 -080079This is larger than many microcontrollers' entire internal storage.
Keir Mierle2c1e56b2019-11-15 16:32:11 -080080
81However, with appropriate caution, a limited set of standard C++ libraries can
82be used to great effect. Developers can leverage familiar, well-tested
83abstractions instead of writing their own. C++ library algorithms and classes
84can give equivalent or better performance than hand-written C code.
85
86A limited subset of the C++ Standard Library is permitted in Pigweed. To keep
87Pigweed small, flexible, and portable, functions that allocate dynamic memory
88must be avoided. Care must be exercised when using multiple instantiations of a
89template function, which can lead to code bloat.
90
91The following C++ Standard Library headers are always permitted:
92
93 * ``<array>``
94 * ``<complex>``
95 * ``<initializer_list>``
96 * ``<iterator>``
97 * ``<limits>``
98 * ``<optional>``
99 * ``<random>``
100 * ``<ratio>``
101 * ``<span>``
102 * ``<string_view>``
103 * ``<tuple>``
104 * ``<type_traits>``
105 * ``<utility>``
106 * ``<variant>``
107 * C Standard Library headers (``<c*>``)
108
109With caution, parts of the following headers can be used:
110
111 * ``<algorithm>`` -- be wary of potential memory allocation
112 * ``<atomic>`` -- not all MCUs natively support atomic operations
113 * ``<bitset>`` -- conversions to or from strings are disallowed
114 * ``<functional>`` -- do **not** use ``std::function``
115 * ``<new>`` -- for placement new
116 * ``<numeric>`` -- be wary of code size with multiple template instantiations
117
118Never use any of these headers:
119
120 * Dynamic containers (``<list>``, ``<map>``, ``<set>``, ``<vector>``, etc.)
121 * Streams (``<iostream>``, ``<ostream>``, ``<fstream>``, etc.)
122 * ``<exception>``
123 * ``<future>``, ``<mutex>``, ``<thread>``
124 * ``<memory>``
125 * ``<regex>``
126 * ``<scoped_allocator>``
127 * ``<sstream>``
128 * ``<stdexcept>``
129 * ``<string>``
130 * ``<valarray>``
131
132Headers not listed here should be carefully evaluated before they are used.
133
134These restrictions do not apply to third party code or to projects that use
135Pigweed.
136
137Combining C and C++
138===================
139Prefer to write C++ code over C code, using ``extern "C"`` for symbols that must
140have C linkage. ``extern "C"`` functions should be defined within C++
141namespaces to simplify referring to other code.
142
143C++ functions with no parameters do not include ``void`` in the parameter list.
144C functions with no parameters must include ``void``.
145
146.. code-block:: cpp
147
148 namespace pw {
149
150 bool ThisIsACppFunction() { return true; }
151
152 extern "C" int pw_ThisIsACFunction(void) { return -1; }
153
154 extern "C" {
155
156 int pw_ThisIsAlsoACFunction(void) {
157 return ThisIsACppFunction() ? 100 : 0;
158 }
159
160 } // extern "C"
161
162 } // namespace pw
163
164Comments
165========
166Prefer C++-style (``//``) comments over C-style commments (``/* */``). C-style
167comments should only be used for inline comments.
168
169.. code-block:: cpp
170
171 // Use C++-style comments, except where C-style comments are necessary.
172 // This returns a random number using an algorithm I found on the internet.
173 #define RANDOM_NUMBER() [] { \
174 return 4; /* chosen by fair dice roll */ \
175 }()
176
177Indent code in comments with two additional spaces, making a total of three
178spaces after the ``//``. All code blocks must begin and end with an empty
Alexei Frolov44d54732020-01-10 14:45:43 -0800179comment line, even if the blank comment line is the last line in the block.
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800180
181.. code-block:: cpp
182
183 // Here is an example of code in comments.
184 //
185 // int indentation_spaces = 2;
186 // int total_spaces = 3;
187 //
188 // engine_1.thrust = RANDOM_NUMBER() * indentation_spaces + total_spaces;
189 //
190 bool SomeFunction();
191
192Control statements
193==================
194All loops and conditional statements must use braces.
195
Ewout van Bekkume072fab2020-07-17 16:34:00 -0700196The syntax ``while (true)`` is preferred over ``for (;;)`` for infinite loops.
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800197
198Include guards
199==============
200The first non-comment line of every header file must be ``#pragma once``. Do
201not use traditional macro include guards. The ``#pragma once`` should come
202directly after the Pigweed copyright block, with no blank line, followed by a
203blank, like this:
204
205.. code-block:: cpp
206
Keir Mierle086ef1c2020-03-19 02:03:51 -0700207 // Copyright 2020 The Pigweed Authors
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800208 //
209 // Licensed under the Apache License, Version 2.0 (the "License"); you may not
Wyatt Hepler1a960942019-11-26 14:13:38 -0800210 // use this file except in compliance with the License. You may obtain a copy of
211 // the License at
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800212 //
213 // https://www.apache.org/licenses/LICENSE-2.0
214 //
215 // Unless required by applicable law or agreed to in writing, software
216 // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
217 // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
Wyatt Hepler1a960942019-11-26 14:13:38 -0800218 // License for the specific language governing permissions and limitations under
219 // the License.
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800220 #pragma once
221
222 // Header file-level comment goes here...
223
224Memory allocation
225=================
226Dynamic memory allocation can be problematic. Heap allocations and deallocations
227occupy valuable CPU cycles. Memory usage becomes nondeterministic, which can
228result in a system crashing without a clear culprit.
229
230To keep Pigweed portable, core Pigweed code is not permitted to dynamically
231(heap) allocate memory, such as with ``malloc`` or ``new``. All memory should be
232allocated with automatic (stack) or static (global) storage duration. Pigweed
233must not use C++ libraries that use dynamic allocation.
234
235Projects that use Pigweed are free to use dynamic allocation, provided they
236have selected a target that enables the heap.
237
238Naming
239======
240Entities shall be named according to the `Google style guide
241<https://google.github.io/styleguide/cppguide.html>`_, with the following
242additional requirements.
243
244**C++ code**
245 * All Pigweed C++ code must be in the ``pw`` namespace. Namespaces for
246 modules should be nested under ``pw``. For example,
247 ``pw::string::Format()``.
248 * Whenever possible, private code should be in a source (.cc) file and placed
249 in anonymous namespace nested under ``pw``.
250 * If private code must be exposed in a header file, it must be in a namespace
251 nested under ``pw``. The namespace may be named for its subsystem or use a
252 name that designates it as private, such as ``internal``.
Keir Mierle003044a2020-04-14 10:56:20 -0700253 * Template arguments for non-type names (e.g. ``template <int foo_bar>``)
254 should follow the variable naming convention, which means snake case (e.g.
255 ``foo_bar``). This matches the Google C++ style, however the wording in the
256 official style guide isn't explicit and could be interpreted to use
257 ``kFooBar`` style naming. Wide practice establishes that the naming
258 convention is ``snake_case``, and so that is the style we use in Pigweed.
259
260 **Note:** At time of writing much of Pigweed incorrectly follows the
261 ``kCamelCase`` naming for non-type template arguments. This is a bug that
262 will be fixed eventually.
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800263
264**C code**
Armando Montanez59aa2782021-01-12 15:16:36 -0800265In general, C symbols should be prefixed with the module name. If the symbol is
266not associated with a module, use just ``pw`` as the module name. Facade
267backends may chose to prefix symbols with the facade's name to help reduce the
268length of the prefix.
269
270 * Public names used by C code must be prefixed with the module name (e.g.
271 ``pw_tokenizer_*``).
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800272 * If private code must be exposed in a header, private names used by C code
Armando Montanez59aa2782021-01-12 15:16:36 -0800273 must be prefixed with an underscore followed by the module name (e.g.
274 ``_pw_assert_*``).
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800275 * Avoid writing C source (.c) files in Pigweed. Prefer to write C++ code with
276 C linkage using ``extern "C"``. Within C source, private C functions and
Armando Montanez59aa2782021-01-12 15:16:36 -0800277 variables must be named with the ``_pw_my_module_*`` prefix and should be
278 declared ``static`` whenever possible; for example,
279 ``_pw_my_module_MyPrivateFunction``.
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800280 * The C prefix rules apply to
281
Armando Montanez59aa2782021-01-12 15:16:36 -0800282 * C functions (``int pw_foo_FunctionName(void);``),
283 * variables used by C code (``int pw_foo_variable_name;``),
284 * constant variables used by C code (``int pw_foo_kConstantName;``),
285 * structs used by C code (``typedef struct {} pw_foo_StructName;``), and
286 * all of the above for ``extern "C"`` names in C++ code.
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800287
288 The prefix does not apply to struct members, which use normal Google style.
289
290**Preprocessor macros**
Armando Montanez59aa2782021-01-12 15:16:36 -0800291 * Public Pigweed macros must be prefixed with the module name (e.g.
292 ``PW_MY_MODULE_*``).
293 * Private Pigweed macros must be prefixed with an underscore followed by the
294 module name (e.g. ``_PW_MY_MODULE_*``).
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800295
296**Example**
297
298.. code-block:: cpp
299
Armando Montanez59aa2782021-01-12 15:16:36 -0800300 namespace pw::my_module {
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800301 namespace nested_namespace {
302
303 // C++ names (types, variables, functions) must be in the pw namespace.
304 // They are named according to the Google style guide.
305 constexpr int kGlobalConstant = 123;
306
307 // Prefer using functions over extern global variables.
308 extern int global_variable;
309
310 class Class {};
311
312 void Function();
313
314 extern "C" {
315
316 // Public Pigweed code used from C must be prefixed with pw_.
Armando Montanez59aa2782021-01-12 15:16:36 -0800317 extern const int pw_my_module_kGlobalConstant;
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800318
Armando Montanez59aa2782021-01-12 15:16:36 -0800319 extern int pw_my_module_global_variable;
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800320
Armando Montanez59aa2782021-01-12 15:16:36 -0800321 void pw_my_module_Function(void);
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800322
323 typedef struct {
324 int member_variable;
Armando Montanez59aa2782021-01-12 15:16:36 -0800325 } pw_my_module_Struct;
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800326
327 // Private Pigweed code used from C must be prefixed with _pw_.
Armando Montanez59aa2782021-01-12 15:16:36 -0800328 extern const int _pw_my_module_kPrivateGlobalConstant;
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800329
Armando Montanez59aa2782021-01-12 15:16:36 -0800330 extern int _pw_my_module_private_global_variable;
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800331
Armando Montanez59aa2782021-01-12 15:16:36 -0800332 void _pw_my_module_PrivateFunction(void);
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800333
334 typedef struct {
335 int member_variable;
Armando Montanez59aa2782021-01-12 15:16:36 -0800336 } _pw_my_module_PrivateStruct;
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800337
338 } // extern "C"
339
340 // Public macros must be prefixed with PW_.
Armando Montanez59aa2782021-01-12 15:16:36 -0800341 #define PW_MY_MODULE_PUBLIC_MACRO(arg) arg
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800342
343 // Private macros must be prefixed with _PW_.
Armando Montanez59aa2782021-01-12 15:16:36 -0800344 #define _PW_MY_MODULE_PRIVATE_MACRO(arg) arg
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800345
346 } // namespace nested_namespace
Armando Montanez59aa2782021-01-12 15:16:36 -0800347 } // namespace pw::my_module
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800348
349Namespace scope formatting
350==========================
351All non-indented blocks (namespaces, ``extern "C"`` blocks, and preprocessor
352conditionals) must have a comment on their closing line with the
353contents of the starting line.
354
355All nested namespaces should be declared together with no blank lines between
356them.
357
358.. code-block:: cpp
359
360 #include "some/header.h"
361
362 namespace pw::nested {
363 namespace {
364
365 constexpr int kAnonConstantGoesHere = 0;
366
367 } // namespace
368
369 namespace other {
370
371 const char* SomeClass::yes = "no";
372
373 bool ThisIsAFunction() {
374 #if PW_CONFIG_IS_SET
375 return true;
376 #else
377 return false;
378 #endif // PW_CONFIG_IS_SET
379 }
380
381 extern "C" {
382
383 const int pw_kSomeConstant = 10;
384 int pw_some_global_variable = 600;
385
386 void pw_CFunction() { ... }
387
388 } // extern "C"
389
390 } // namespace
391 } // namespace pw::nested
392
393Pointers and references
394=======================
395For pointer and reference types, place the asterisk or ampersand next to the
396type.
397
398.. code-block:: cpp
399
400 int* const number = &that_thing;
401 constexpr const char* kString = "theory!"
402
403 bool FindTheOneRing(const Region& where_to_look) { ... }
404
405Prefer storing references over storing pointers. Pointers are required when the
406pointer can change its target or may be ``nullptr``. Otherwise, a reference or
407const reference should be used. In accordance with the Google C++ style guide,
408only const references are permitted as function arguments; pointers must be used
409in place of mutable references when passed as function arguments.
410
411Preprocessor macros
412===================
413Macros should only be used when they significantly improve upon the C++ code
414they replace. Macros should make code more readable, robust, and safe, or
415provide features not possible with standard C++, such as stringification, line
416number capturing, or conditional compilation. When possible, use C++ constructs
417like constexpr variables in place of macros. Never use macros as constants,
418except when a string literal is needed or the value must be used by C code.
419
420When macros are needed, the macros should be accompanied with extensive tests
421to ensure the macros are hard to use wrong.
422
423Stand-alone statement macros
424----------------------------
425Macros that are standalone statements must require the caller to terminate the
Alexei Frolov44d54732020-01-10 14:45:43 -0800426macro invocation with a semicolon. For example, the following does *not* conform
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800427to Pigweed's macro style:
428
429.. code-block:: cpp
430
431 // BAD! Definition has built-in semicolon.
432 #define PW_LOG_IF_BAD(mj) \
433 CallSomeFunction(mj);
434
435 // BAD! Compiles without error; semicolon is missing.
Alexei Frolov44d54732020-01-10 14:45:43 -0800436 PW_LOG_IF_BAD("foo")
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800437
438Here's how to do this instead:
439
440.. code-block:: cpp
441
442 // GOOD; requires semicolon to compile.
443 #define PW_LOG_IF_BAD(mj) \
444 CallSomeFunction(mj)
445
446 // GOOD; fails to compile due to lacking semicolon.
Alexei Frolov44d54732020-01-10 14:45:43 -0800447 PW_LOG_IF_BAD("foo")
Keir Mierle2c1e56b2019-11-15 16:32:11 -0800448
449For macros in function scope that do not already require a semicolon, the
450contents can be placed in a ``do { ... } while (0)`` loop.
451
452.. code-block:: cpp
453
454 #define PW_LOG_IF_BAD(mj) \
455 do { \
456 if (mj.Bad()) { \
457 Log(#mj " is bad") \
458 } \
459 } while (0)
460
461Standalone macros at global scope that do not already require a semicolon can
462add a ``static_assert`` or throwaway struct declaration statement as their
463last line.
464
465.. code-block:: cpp
466
467 #define PW_NEAT_THING(thing) \
468 bool IsNeat_##thing() { return true; } \
469 static_assert(true, "Macros must be terminated with a semicolon")
470
471Private macros in public headers
472--------------------------------
473Private macros in public headers must be prefixed with ``_PW_``, even if they
474are undefined after use; this prevents collisions with downstream users. For
475example:
476
477.. code-block:: cpp
478
479 #define _PW_MY_SPECIAL_MACRO(op) ...
480 ...
481 // Code that uses _PW_MY_SPECIAL_MACRO()
482 ...
483 #undef _PW_MY_SPECIAL_MACRO
484
485Macros in private implementation files (.cc)
486--------------------------------------------
487Macros within .cc files that should only used within one file should be
488undefined after their last use; for example:
489
490.. code-block:: cpp
491
492 #define DEFINE_OPERATOR(op) \
493 T operator ## op(T x, T y) { return x op y; } \
494 static_assert(true, "Macros must be terminated with a semicolon") \
495
496 DEFINE_OPERATOR(+);
497 DEFINE_OPERATOR(-);
498 DEFINE_OPERATOR(/);
499 DEFINE_OPERATOR(*);
500
501 #undef DEFINE_OPERATOR
502
503Preprocessor conditional statements
504===================================
505When using macros for conditional compilation, prefer to use ``#if`` over
506``#ifdef``. This checks the value of the macro rather than whether it exists.
507
508 * ``#if`` handles undefined macros equivalently to ``#ifdef``. Undefined
509 macros expand to 0 in preprocessor conditional statements.
510 * ``#if`` evaluates false for macros defined as 0, while ``#ifdef`` evaluates
511 true.
512 * Macros defined using compiler flags have a default value of 1 in GCC and
513 Clang, so they work equivalently for ``#if`` and ``#ifdef``.
514 * Macros defined to an empty statement cause compile-time errors in ``#if``
515 statements, which avoids ambiguity about how the macro should be used.
516
517All ``#endif`` statements should be commented with the expression from their
518corresponding ``#if``. Do not indent within preprocessor conditional statements.
519
520.. code-block:: cpp
521
522 #if USE_64_BIT_WORD
523 using Word = uint64_t;
524 #else
525 using Word = uint32_t;
526 #endif // USE_64_BIT_WORD
527
528Unsigned integers
529=================
530Unsigned integers are permitted in Pigweed. Aim for consistency with existing
531code and the C++ Standard Library. Be very careful mixing signed and unsigned
532integers.
533
534------------
535Python style
536------------
537Pigweed uses the standard Python style: PEP8, which is available on the web at
538https://www.python.org/dev/peps/pep-0008/. All Pigweed Python code should pass
539``yapf`` when configured for PEP8 style.
540
Wyatt Heplerab4eb7a2020-01-08 18:04:31 -0800541Python 3
542========
543Pigweed uses Python 3. Some modules may offer limited support for Python 2, but
544Python 3.6 or newer is required for most Pigweed code.
Wayne Jacksond597e462020-06-03 15:03:12 -0700545
546---------------
547Build files: GN
548---------------
549
550Each Pigweed source module will require a build file named BUILD.gn which
551encapsulates the build targets and specifies their sources and dependencies.
552The format of this file is simlar in structure to the
553`Bazel/Blaze format <https://docs.bazel.build/versions/3.2.0/build-ref.html>`_
554(Googlers may also review `go/build-style <go/build-style>`_), but with
555nomenclature specific to Pigweed. For each target specified within the build
556file there are a list of depdency fields. Those fields, in their expected
557order, are:
558
559 * ``<public_config>`` -- external build configuration
560 * ``<public_deps>`` -- necessary public dependencies (ie: Pigweed headers)
561 * ``<public>`` -- exposed package public interface header files
562 * ``<config>`` -- package build configuration
563 * ``<sources>`` -- package source code
564 * ``<deps>`` -- package necessary local dependencies
565
566Assets within each field must be listed in alphabetical order
567
568.. code-block:: cpp
569
570 # Here is a brief example of a GN build file.
571
572 import("$dir_pw_unit_test/test.gni")
573
574 config("default_config") {
575 include_dirs = [ "public" ]
576 }
577
578 source_set("pw_sample_module") {
579 public_configs = [ ":default_config" ]
Wyatt Hepler7abd8cc2021-01-19 16:49:33 -0800580 public_deps = [ dir_pw_status ]
Wayne Jacksond597e462020-06-03 15:03:12 -0700581 public = [ "public/pw_sample_module/sample_module.h" ]
582 sources = [
583 "public/pw_sample_module/internal/sample_module.h",
584 "sample_module.cc",
585 "used_by_sample_module.cc",
586 ]
587 deps = [ dir_pw_varint ]
588 }
589
590 pw_test_group("tests") {
591 tests = [ ":sample_module_test" ]
592 }
593
594 pw_test("sample_module_test") {
Wayne Jacksond597e462020-06-03 15:03:12 -0700595 sources = [ "sample_module_test.cc" ]
Kevin Zeng1e10ef22020-06-09 20:47:14 -0700596 deps = [ ":sample_module" ]
Wayne Jacksond597e462020-06-03 15:03:12 -0700597 }
598
599 pw_doc_group("docs") {
600 sources = [ "docs.rst" ]
601 }