Austin Schuh | dde6405 | 2019-12-11 20:28:00 -0800 | [diff] [blame] | 1 | package(default_visibility = ["//tools/cpp:__pkg__"]) |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 2 | |
| 3 | filegroup( |
Austin Schuh | dde6405 | 2019-12-11 20:28:00 -0800 | [diff] [blame] | 4 | name = "gcc", |
| 5 | srcs = [ |
| 6 | "arm-frc-linux-gnueabi-gcc", |
| 7 | "@arm_frc_linux_gnueabi_repo//:gcc", |
| 8 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 9 | ) |
| 10 | |
| 11 | filegroup( |
Austin Schuh | dde6405 | 2019-12-11 20:28:00 -0800 | [diff] [blame] | 12 | name = "ar", |
| 13 | srcs = [ |
| 14 | "arm-frc-linux-gnueabi-ar", |
| 15 | "@arm_frc_linux_gnueabi_repo//:ar", |
| 16 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 17 | ) |
| 18 | |
| 19 | filegroup( |
Austin Schuh | dde6405 | 2019-12-11 20:28:00 -0800 | [diff] [blame] | 20 | name = "as", |
| 21 | srcs = [ |
| 22 | "arm-frc-linux-gnueabi-as", |
| 23 | "@arm_frc_linux_gnueabi_repo//:as", |
| 24 | ], |
Brian Silverman | b2215d0 | 2015-11-23 19:10:15 -0500 | [diff] [blame] | 25 | ) |
| 26 | |
| 27 | filegroup( |
Austin Schuh | dde6405 | 2019-12-11 20:28:00 -0800 | [diff] [blame] | 28 | name = "ld", |
| 29 | srcs = [ |
| 30 | "arm-frc-linux-gnueabi-ld", |
| 31 | "@arm_frc_linux_gnueabi_repo//:ld", |
| 32 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 33 | ) |
| 34 | |
| 35 | filegroup( |
Austin Schuh | dde6405 | 2019-12-11 20:28:00 -0800 | [diff] [blame] | 36 | name = "nm", |
| 37 | srcs = [ |
| 38 | "arm-frc-linux-gnueabi-nm", |
| 39 | "@arm_frc_linux_gnueabi_repo//:nm", |
| 40 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 41 | ) |
| 42 | |
| 43 | filegroup( |
Austin Schuh | dde6405 | 2019-12-11 20:28:00 -0800 | [diff] [blame] | 44 | name = "objcopy", |
| 45 | srcs = [ |
| 46 | "arm-frc-linux-gnueabi-objcopy", |
| 47 | "@arm_frc_linux_gnueabi_repo//:objcopy", |
| 48 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 49 | ) |
| 50 | |
| 51 | filegroup( |
Austin Schuh | dde6405 | 2019-12-11 20:28:00 -0800 | [diff] [blame] | 52 | name = "objdump", |
| 53 | srcs = [ |
| 54 | "arm-frc-linux-gnueabi-objdump", |
| 55 | "@arm_frc_linux_gnueabi_repo//:objdump", |
| 56 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 57 | ) |
| 58 | |
| 59 | filegroup( |
Austin Schuh | dde6405 | 2019-12-11 20:28:00 -0800 | [diff] [blame] | 60 | name = "strip", |
| 61 | srcs = [ |
| 62 | "arm-frc-linux-gnueabi-strip", |
| 63 | "@arm_frc_linux_gnueabi_repo//:strip", |
| 64 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 65 | ) |
| 66 | |
| 67 | filegroup( |
Austin Schuh | dde6405 | 2019-12-11 20:28:00 -0800 | [diff] [blame] | 68 | name = "tool-wrappers", |
| 69 | srcs = [ |
| 70 | ":ar", |
| 71 | ":as", |
| 72 | ":gcc", |
| 73 | ":ld", |
| 74 | ":nm", |
| 75 | ":objcopy", |
| 76 | ":objdump", |
| 77 | ":strip", |
| 78 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 79 | ) |
Brian Silverman | b200c17 | 2017-01-02 17:35:35 -0800 | [diff] [blame] | 80 | |
| 81 | filegroup( |
Austin Schuh | dde6405 | 2019-12-11 20:28:00 -0800 | [diff] [blame] | 82 | name = "libs", |
| 83 | srcs = glob([ |
| 84 | "libs/**", |
| 85 | ]), |
Brian Silverman | b200c17 | 2017-01-02 17:35:35 -0800 | [diff] [blame] | 86 | ) |