Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame^] | 1 | package(default_visibility = ['//tools/cpp:__pkg__']) |
| 2 | |
| 3 | filegroup( |
| 4 | name = 'gcc', |
| 5 | srcs = [ |
| 6 | '@arm-frc-linux-gnueabi-repo//:gcc', |
| 7 | 'arm-frc-linux-gnueabi-gcc', |
| 8 | ], |
| 9 | ) |
| 10 | |
| 11 | filegroup( |
| 12 | name = 'ar', |
| 13 | srcs = [ |
| 14 | '@arm-frc-linux-gnueabi-repo//:ar', |
| 15 | 'arm-frc-linux-gnueabi-ar', |
| 16 | ], |
| 17 | ) |
| 18 | |
| 19 | filegroup( |
| 20 | name = 'ld', |
| 21 | srcs = [ |
| 22 | '@arm-frc-linux-gnueabi-repo//:ld', |
| 23 | 'arm-frc-linux-gnueabi-ld', |
| 24 | ], |
| 25 | ) |
| 26 | |
| 27 | filegroup( |
| 28 | name = 'nm', |
| 29 | srcs = [ |
| 30 | '@arm-frc-linux-gnueabi-repo//:nm', |
| 31 | 'arm-frc-linux-gnueabi-nm', |
| 32 | ], |
| 33 | ) |
| 34 | |
| 35 | filegroup( |
| 36 | name = 'objcopy', |
| 37 | srcs = [ |
| 38 | '@arm-frc-linux-gnueabi-repo//:objcopy', |
| 39 | 'arm-frc-linux-gnueabi-objcopy', |
| 40 | ], |
| 41 | ) |
| 42 | |
| 43 | filegroup( |
| 44 | name = 'objdump', |
| 45 | srcs = [ |
| 46 | '@arm-frc-linux-gnueabi-repo//:objdump', |
| 47 | 'arm-frc-linux-gnueabi-objdump', |
| 48 | ], |
| 49 | ) |
| 50 | |
| 51 | filegroup( |
| 52 | name = 'strip', |
| 53 | srcs = [ |
| 54 | '@arm-frc-linux-gnueabi-repo//:strip', |
| 55 | 'arm-frc-linux-gnueabi-strip', |
| 56 | ], |
| 57 | ) |
| 58 | |
| 59 | filegroup( |
| 60 | name = 'tool-wrappers', |
| 61 | srcs = [ |
| 62 | ':gcc', |
| 63 | ':ar', |
| 64 | ':ld', |
| 65 | ':nm', |
| 66 | ':objcopy', |
| 67 | ':objdump', |
| 68 | ':strip', |
| 69 | ], |
| 70 | ) |