forked from facebookresearch/pushmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TARGETS
65 lines (63 loc) · 1.45 KB
/
TARGETS
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
55
56
57
58
59
60
61
62
63
64
65
cpp_library(
name = "pushmi_core",
srcs = [],
headers = [
"include/boosters.h",
"include/concepts.h",
"include/executor.h",
"include/extension_points.h",
"include/flowsingle.h",
"include/flowsingledeferred.h",
"include/none.h",
"include/piping.h",
"include/single.h",
"include/singledeferred.h",
"include/traits.h",
"include/trampoline.h",
],
deps = [
"//folly:function",
"//folly:optional",
"//folly:poly",
"//folly/executors:cpu_thread_pool_executor",
"//folly/executors:sequenced_executor",
"//folly/executors:serial_executor",
"//folly/futures:futures",
"//folly/io/async:async",
"//folly/poly:basic_interfaces",
],
external_deps = [
],
)
cpp_library(
name = "pushmi_operators",
srcs = [],
headers = [
"include/o/empty.h",
"include/o/just.h",
"include/o/submit.h",
"include/o/on.h",
"include/o/via.h",
],
deps = [
":pushmi_core",
"//folly:function",
"//folly:poly",
"//folly/futures:futures",
"//folly/io/async:async",
"//folly/poly:basic_interfaces",
],
external_deps = [
],
)
cpp_unittest(
name = "pushmi_test",
srcs = [
"PushmiTest.cpp",
],
deps = [
":pushmi_core",
":pushmi_operators",
"//folly:conv",
],
)