blob: 17a10c2cbbee9f882dbc302c728b3eab33769fda [file] [log] [blame]
Austin Schuh55139fe2015-10-14 23:55:24 -07001package(default_visibility = ['//tools/cpp:__pkg__'])
2
3filegroup(
4 name = 'gcc',
5 srcs = [
Brian Silverman826e1cd2016-01-31 18:26:00 -05006 '@arm_frc_linux_gnueabi_repo//:gcc',
Austin Schuh55139fe2015-10-14 23:55:24 -07007 'arm-frc-linux-gnueabi-gcc',
8 ],
9)
10
11filegroup(
12 name = 'ar',
13 srcs = [
Brian Silverman826e1cd2016-01-31 18:26:00 -050014 '@arm_frc_linux_gnueabi_repo//:ar',
Austin Schuh55139fe2015-10-14 23:55:24 -070015 'arm-frc-linux-gnueabi-ar',
16 ],
17)
18
19filegroup(
Brian Silvermanb2215d02015-11-23 19:10:15 -050020 name = 'as',
21 srcs = [
Brian Silverman826e1cd2016-01-31 18:26:00 -050022 '@arm_frc_linux_gnueabi_repo//:as',
Brian Silvermanb2215d02015-11-23 19:10:15 -050023 'arm-frc-linux-gnueabi-as',
24 ],
25)
26
27filegroup(
Austin Schuh55139fe2015-10-14 23:55:24 -070028 name = 'ld',
29 srcs = [
Brian Silverman826e1cd2016-01-31 18:26:00 -050030 '@arm_frc_linux_gnueabi_repo//:ld',
Austin Schuh55139fe2015-10-14 23:55:24 -070031 'arm-frc-linux-gnueabi-ld',
32 ],
33)
34
35filegroup(
36 name = 'nm',
37 srcs = [
Brian Silverman826e1cd2016-01-31 18:26:00 -050038 '@arm_frc_linux_gnueabi_repo//:nm',
Austin Schuh55139fe2015-10-14 23:55:24 -070039 'arm-frc-linux-gnueabi-nm',
40 ],
41)
42
43filegroup(
44 name = 'objcopy',
45 srcs = [
Brian Silverman826e1cd2016-01-31 18:26:00 -050046 '@arm_frc_linux_gnueabi_repo//:objcopy',
Austin Schuh55139fe2015-10-14 23:55:24 -070047 'arm-frc-linux-gnueabi-objcopy',
48 ],
49)
50
51filegroup(
52 name = 'objdump',
53 srcs = [
Brian Silverman826e1cd2016-01-31 18:26:00 -050054 '@arm_frc_linux_gnueabi_repo//:objdump',
Austin Schuh55139fe2015-10-14 23:55:24 -070055 'arm-frc-linux-gnueabi-objdump',
56 ],
57)
58
59filegroup(
60 name = 'strip',
61 srcs = [
Brian Silverman826e1cd2016-01-31 18:26:00 -050062 '@arm_frc_linux_gnueabi_repo//:strip',
Austin Schuh55139fe2015-10-14 23:55:24 -070063 'arm-frc-linux-gnueabi-strip',
64 ],
65)
66
67filegroup(
68 name = 'tool-wrappers',
69 srcs = [
70 ':gcc',
71 ':ar',
Brian Silvermanb2215d02015-11-23 19:10:15 -050072 ':as',
Austin Schuh55139fe2015-10-14 23:55:24 -070073 ':ld',
74 ':nm',
75 ':objcopy',
76 ':objdump',
77 ':strip',
78 ],
79)