blob: b4bf82c075e83935d6eb42f6b9d6d4651af892e8 [file] [log] [blame]
Lalit Maganti279ecde2019-04-01 16:57:12 +01001genrule(
2 name = "trace_processor_shell_rule",
3 srcs = [
4 ":src_trace_processor_trace_processor_shell_host",
5 ],
6 outs = [
7 "trace_processor_shell",
8 ],
9 cmd = "cp $(location :src_trace_processor_trace_processor_shell_host) $@",
10 executable = 1,
11)
12
13gensignature(
14 name = "trace_processor_shell_sig",
15 srcs = [
16 ":trace_processor_shell",
17 ],
18)
19
20genrule(
21 name = "trace_to_text_rule",
22 srcs = [
23 ":tools_trace_to_text_trace_to_text_host",
24 ],
25 outs = [
26 "trace_to_text",
27 ],
28 cmd = "cp $(location :tools_trace_to_text_trace_to_text_host) $@",
29 executable = 1,
30)
31
32gensignature(
33 name = "trace_to_text_sig",
34 srcs = [
35 ":trace_to_text",
36 ],
37)