File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -8,18 +8,24 @@ genrule(
8
8
srcs = [
9
9
"//c-toxcore/toxav:toxav.h" ,
10
10
"//c-toxcore/toxcore:tox.h" ,
11
+ "//c-toxcore/toxcore:tox_dispatch.h" ,
12
+ "//c-toxcore/toxcore:tox_events.h" ,
11
13
"//c-toxcore/toxcore:tox_private.h" ,
12
14
"//c-toxcore/toxencryptsave:toxencryptsave.h" ,
13
15
],
14
16
outs = [
15
17
"tox/toxav.h" ,
16
18
"tox/tox.h" ,
19
+ "tox/tox_dispatch.h" ,
20
+ "tox/tox_events.h" ,
17
21
"tox/tox_private.h" ,
18
22
"tox/toxencryptsave.h" ,
19
23
],
20
24
cmd = """
21
25
cp $(location //c-toxcore/toxav:toxav.h) $(GENDIR)/c-toxcore/tox/toxav.h
22
26
cp $(location //c-toxcore/toxcore:tox.h) $(GENDIR)/c-toxcore/tox/tox.h
27
+ cp $(location //c-toxcore/toxcore:tox_dispatch.h) $(GENDIR)/c-toxcore/tox/tox_dispatch.h
28
+ cp $(location //c-toxcore/toxcore:tox_events.h) $(GENDIR)/c-toxcore/tox/tox_events.h
23
29
cp $(location //c-toxcore/toxcore:tox_private.h) $(GENDIR)/c-toxcore/tox/tox_private.h
24
30
cp $(location //c-toxcore/toxencryptsave:toxencryptsave.h) $(GENDIR)/c-toxcore/tox/toxencryptsave.h
25
31
""" ,
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ load("@rules_fuzzing//fuzzing:cc_defs.bzl", "cc_fuzz_test")
4
4
exports_files (
5
5
srcs = [
6
6
"tox.h" ,
7
+ "tox_dispatch.h" ,
8
+ "tox_events.h" ,
7
9
"tox_private.h" ,
8
10
],
9
11
visibility = ["//c-toxcore:__subpackages__" ],
You can’t perform that action at this time.
0 commit comments