summaryrefslogtreecommitdiff
path: root/include/task_filter.h
blob: fe4f1110ba246a6dc26d60e44b047c0e57324422 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* Copyright 2017 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 *
 * Filter tasklist in *.tasklist, depending on section (RO/RW), or
 * TEST/CTS build.
 */

#ifndef __CROS_EC_TASK_FILTER_H
#define __CROS_EC_TASK_FILTER_H

#ifdef SECTION_IS_RO
#define TASK_NOTEST_RO TASK_NOTEST
#define TASK_TEST_RO TASK_TEST
#define TASK_ALWAYS_RO TASK_ALWAYS
#define TASK_NOTEST_RW(...)
#define TASK_TEST_RW(...)
#define TASK_ALWAYS_RW(...)
#else /* SECTION_IS_RW */
#define TASK_NOTEST_RW TASK_NOTEST
#define TASK_TEST_RW TASK_TEST
#define TASK_ALWAYS_RW TASK_ALWAYS
#define TASK_NOTEST_RO(...)
#define TASK_TEST_RO(...)
#define TASK_ALWAYS_RO(...)
#endif

/* excludes non-base tasks for test build */
#ifdef TEST_BUILD
#define TASK_NOTEST(...)
#ifdef TEST_TASK_EXTRA_ARGS
#define TASK_TEST(...) TASK(__VA_ARGS__, TEST_TASK_EXTRA_ARGS)
#else
#define TASK_TEST TASK
#endif
#else
#define TASK_NOTEST TASK
#define CONFIG_TEST_TASK_LIST
#endif

#ifndef CTS_MODULE
#define CONFIG_CTS_TASK_LIST
#endif

#define TASK_ALWAYS TASK

/* If included directly from Makefile, dump task list. */
#ifdef _MAKEFILE
#define TASK(n, ...) n
CONFIG_TASK_LIST CONFIG_TEST_TASK_LIST CONFIG_CTS_TASK_LIST
#endif


#endif /*  __CROS_EC_TASK_FILTER_H */