blob: db2cc77c646f73081304d312f33a5d5c3cf1afcf [file] [log] [blame]
Brian Silverman6c8b88b2018-09-03 18:17:02 -07001package(default_visibility = ["//visibility:public"])
2
3filegroup(
4 name = "gcc",
5 srcs = [
6 "bin/arm-none-eabi-gcc",
7 ],
8)
9
10filegroup(
11 name = "ar",
12 srcs = [
13 "bin/arm-none-eabi-ar",
14 ],
15)
16
17filegroup(
18 name = "ld",
19 srcs = [
20 "bin/arm-none-eabi-ld",
21 ],
22)
23
24filegroup(
25 name = "nm",
26 srcs = [
27 "bin/arm-none-eabi-nm",
28 ],
29)
30
31filegroup(
32 name = "objcopy",
33 srcs = [
34 "bin/arm-none-eabi-objcopy",
35 ],
36)
37
38filegroup(
39 name = "objdump",
40 srcs = [
41 "bin/arm-none-eabi-objdump",
42 ],
43)
44
45filegroup(
46 name = "strip",
47 srcs = [
48 "bin/arm-none-eabi-strip",
49 ],
50)
51
52filegroup(
53 name = "as",
54 srcs = [
55 "bin/arm-none-eabi-as",
56 ],
57)
58
59filegroup(
60 name = "compiler_pieces",
61 srcs = glob([
62 "arm-none-eabi/**",
63 "lib/gcc/arm-none-eabi/**",
64 "include/**",
65 ]),
66)
67
68filegroup(
69 name = "compiler_components",
70 srcs = [
71 ":ar",
72 ":as",
73 ":gcc",
74 ":ld",
75 ":nm",
76 ":objcopy",
77 ":objdump",
78 ":strip",
79 ],
80)