Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 1 | package(default_visibility = ["//visibility:public"]) |
| 2 | |
| 3 | filegroup( |
Brian Silverman | 50b9ac0 | 2018-08-12 13:24:10 -0700 | [diff] [blame^] | 4 | name = "gcc", |
| 5 | srcs = [ |
| 6 | "usr/bin/arm-frc-linux-gnueabi-gcc", |
| 7 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 8 | ) |
| 9 | |
| 10 | filegroup( |
Brian Silverman | 50b9ac0 | 2018-08-12 13:24:10 -0700 | [diff] [blame^] | 11 | name = "ar", |
| 12 | srcs = [ |
| 13 | "usr/bin/arm-frc-linux-gnueabi-ar", |
| 14 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 15 | ) |
| 16 | |
| 17 | filegroup( |
Brian Silverman | 50b9ac0 | 2018-08-12 13:24:10 -0700 | [diff] [blame^] | 18 | name = "as", |
| 19 | srcs = [ |
| 20 | "usr/bin/arm-frc-linux-gnueabi-as", |
| 21 | ], |
Brian Silverman | b2215d0 | 2015-11-23 19:10:15 -0500 | [diff] [blame] | 22 | ) |
| 23 | |
| 24 | filegroup( |
Brian Silverman | 50b9ac0 | 2018-08-12 13:24:10 -0700 | [diff] [blame^] | 25 | name = "ld", |
| 26 | srcs = [ |
| 27 | "usr/bin/arm-frc-linux-gnueabi-ld", |
| 28 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 29 | ) |
| 30 | |
| 31 | filegroup( |
Brian Silverman | 50b9ac0 | 2018-08-12 13:24:10 -0700 | [diff] [blame^] | 32 | name = "nm", |
| 33 | srcs = [ |
| 34 | "usr/bin/arm-frc-linux-gnueabi-nm", |
| 35 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 36 | ) |
| 37 | |
| 38 | filegroup( |
Brian Silverman | 50b9ac0 | 2018-08-12 13:24:10 -0700 | [diff] [blame^] | 39 | name = "objcopy", |
| 40 | srcs = [ |
| 41 | "usr/bin/arm-frc-linux-gnueabi-objcopy", |
| 42 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 43 | ) |
| 44 | |
| 45 | filegroup( |
Brian Silverman | 50b9ac0 | 2018-08-12 13:24:10 -0700 | [diff] [blame^] | 46 | name = "objdump", |
| 47 | srcs = [ |
| 48 | "usr/bin/arm-frc-linux-gnueabi-objdump", |
| 49 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 50 | ) |
| 51 | |
| 52 | filegroup( |
Brian Silverman | 50b9ac0 | 2018-08-12 13:24:10 -0700 | [diff] [blame^] | 53 | name = "strip", |
| 54 | srcs = [ |
| 55 | "usr/bin/arm-frc-linux-gnueabi-strip", |
| 56 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 57 | ) |
| 58 | |
| 59 | filegroup( |
Brian Silverman | 50b9ac0 | 2018-08-12 13:24:10 -0700 | [diff] [blame^] | 60 | name = "compiler_pieces", |
| 61 | srcs = glob([ |
| 62 | "usr/bin/**/*", |
| 63 | "usr/include/**/*", |
| 64 | "usr/lib/**/*", |
| 65 | "usr/arm-frc-linux-gnueabi/**/*", |
| 66 | "usr/lib/x86_64-linux-gnu/gcc/**/*", |
| 67 | ]) + [ |
| 68 | "@arm_frc_gnueabi_deps", |
| 69 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 70 | ) |
| 71 | |
| 72 | filegroup( |
Brian Silverman | 50b9ac0 | 2018-08-12 13:24:10 -0700 | [diff] [blame^] | 73 | name = "compiler_components", |
| 74 | srcs = [ |
| 75 | ":ar", |
| 76 | ":as", |
| 77 | ":gcc", |
| 78 | ":ld", |
| 79 | ":nm", |
| 80 | ":objcopy", |
| 81 | ":objdump", |
| 82 | ":strip", |
| 83 | ], |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 84 | ) |