blob: 669da486652492edfefb215a62604ad0346dee87 [file] [log] [blame]
Austin Schuhdde64052019-12-11 20:28:00 -08001package(default_visibility = ["//tools/cpp:__pkg__"])
Austin Schuh55139fe2015-10-14 23:55:24 -07002
3filegroup(
Austin Schuhdde64052019-12-11 20:28:00 -08004 name = "gcc",
5 srcs = [
6 "arm-frc-linux-gnueabi-gcc",
7 "@arm_frc_linux_gnueabi_repo//:gcc",
8 ],
Austin Schuh55139fe2015-10-14 23:55:24 -07009)
10
11filegroup(
Austin Schuhdde64052019-12-11 20:28:00 -080012 name = "ar",
13 srcs = [
14 "arm-frc-linux-gnueabi-ar",
15 "@arm_frc_linux_gnueabi_repo//:ar",
16 ],
Austin Schuh55139fe2015-10-14 23:55:24 -070017)
18
19filegroup(
Austin Schuhdde64052019-12-11 20:28:00 -080020 name = "as",
21 srcs = [
22 "arm-frc-linux-gnueabi-as",
23 "@arm_frc_linux_gnueabi_repo//:as",
24 ],
Brian Silvermanb2215d02015-11-23 19:10:15 -050025)
26
27filegroup(
Austin Schuhdde64052019-12-11 20:28:00 -080028 name = "ld",
29 srcs = [
30 "arm-frc-linux-gnueabi-ld",
31 "@arm_frc_linux_gnueabi_repo//:ld",
32 ],
Austin Schuh55139fe2015-10-14 23:55:24 -070033)
34
35filegroup(
Austin Schuhdde64052019-12-11 20:28:00 -080036 name = "nm",
37 srcs = [
38 "arm-frc-linux-gnueabi-nm",
39 "@arm_frc_linux_gnueabi_repo//:nm",
40 ],
Austin Schuh55139fe2015-10-14 23:55:24 -070041)
42
43filegroup(
Austin Schuhdde64052019-12-11 20:28:00 -080044 name = "objcopy",
45 srcs = [
46 "arm-frc-linux-gnueabi-objcopy",
47 "@arm_frc_linux_gnueabi_repo//:objcopy",
48 ],
Austin Schuh55139fe2015-10-14 23:55:24 -070049)
50
51filegroup(
Austin Schuhdde64052019-12-11 20:28:00 -080052 name = "objdump",
53 srcs = [
54 "arm-frc-linux-gnueabi-objdump",
55 "@arm_frc_linux_gnueabi_repo//:objdump",
56 ],
Austin Schuh55139fe2015-10-14 23:55:24 -070057)
58
59filegroup(
Austin Schuhdde64052019-12-11 20:28:00 -080060 name = "strip",
61 srcs = [
62 "arm-frc-linux-gnueabi-strip",
63 "@arm_frc_linux_gnueabi_repo//:strip",
64 ],
Austin Schuh55139fe2015-10-14 23:55:24 -070065)
66
67filegroup(
Austin Schuhdde64052019-12-11 20:28:00 -080068 name = "tool-wrappers",
69 srcs = [
70 ":ar",
71 ":as",
72 ":gcc",
73 ":ld",
74 ":nm",
75 ":objcopy",
76 ":objdump",
77 ":strip",
78 ],
Austin Schuh55139fe2015-10-14 23:55:24 -070079)
Brian Silvermanb200c172017-01-02 17:35:35 -080080
81filegroup(
Austin Schuhdde64052019-12-11 20:28:00 -080082 name = "libs",
83 srcs = glob([
84 "libs/**",
85 ]),
Brian Silvermanb200c172017-01-02 17:35:35 -080086)