Austin Schuh | 4759ffc | 2015-10-07 20:39:56 -0700 | [diff] [blame^] | 1 | new_local_repository( |
| 2 | name = 'usr_repo', |
| 3 | path = '/usr', |
| 4 | build_file = 'debian/BUILD.usr', |
| 5 | ) |
| 6 | |
| 7 | # TODO(brian): Make these point to something which isn't hard-coded to come off |
| 8 | # the host system... |
| 9 | bind( |
| 10 | name = 'librt', |
| 11 | actual = '@usr_repo//:librt', |
| 12 | ) |
| 13 | |
| 14 | bind( |
| 15 | name = 'libdl', |
| 16 | actual = '@usr_repo//:libdl', |
| 17 | ) |
| 18 | |
| 19 | bind( |
| 20 | name = 'libm', |
| 21 | actual = '@usr_repo//:libm', |
| 22 | ) |
| 23 | |
| 24 | bind( |
| 25 | name = 'libpthread', |
| 26 | actual = '@usr_repo//:libpthread', |
| 27 | ) |