Kristina Chodorow | 93fbc3e | 2016-04-27 17:03:28 +0000 | [diff] [blame] | 1 | workspace(name = "io_bazel") |
| 2 | |
David Chen | 7019ff9 | 2015-12-04 13:25:38 +0000 | [diff] [blame] | 3 | load("/tools/build_defs/jsonnet/jsonnet", "jsonnet_repositories") |
David Chen | 07b0ba6 | 2015-12-02 15:16:09 +0000 | [diff] [blame] | 4 | load("/tools/build_rules/rust/rust", "rust_repositories") |
David Chen | 3114324 | 2015-07-27 08:40:47 +0000 | [diff] [blame] | 5 | |
David Chen | 7019ff9 | 2015-12-04 13:25:38 +0000 | [diff] [blame] | 6 | jsonnet_repositories() |
David Chen | 07b0ba6 | 2015-12-02 15:16:09 +0000 | [diff] [blame] | 7 | rust_repositories() |
Lukacs Berki | 678ba23 | 2015-09-03 13:28:55 +0000 | [diff] [blame] | 8 | |
David Chen | b78bbd5 | 2016-03-16 13:17:57 +0000 | [diff] [blame] | 9 | # Protobuf expects an //external:python_headers label which would contain the |
| 10 | # Python headers if fast Python protos is enabled. Since we are not using fast |
| 11 | # Python protos, bind python_headers to a dummy target. |
| 12 | bind( |
| 13 | name = "python_headers", |
| 14 | actual = "//:dummy", |
| 15 | ) |
| 16 | |
Damien Martin-Guillerez | 0c1a8cf | 2016-02-05 18:37:12 +0000 | [diff] [blame] | 17 | # Bind to dummy targets if no android SDK/NDK is present. |
| 18 | bind( |
| 19 | name = "android_sdk_for_testing", |
| 20 | actual = "//:dummy", |
| 21 | ) |
| 22 | |
| 23 | bind( |
| 24 | name = "android_ndk_for_testing", |
| 25 | actual = "//:dummy", |
| 26 | ) |
| 27 | |
Damien Martin-Guillerez | 9b88920 | 2016-03-03 00:35:13 +0000 | [diff] [blame] | 28 | # For tools/cpp/test/... |
| 29 | load("//tools/cpp/test:docker_repository.bzl", "docker_repository") |
| 30 | docker_repository() |
| 31 | |
Steven Dee | c74d3e4 | 2016-02-02 16:32:23 +0000 | [diff] [blame] | 32 | # In order to run the Android integration tests, run |
| 33 | # scripts/workspace_user.sh and uncomment the next two lines. |
| 34 | # load("/WORKSPACE.user", "android_repositories") |
| 35 | # android_repositories() |
Cal Peyser | 2152bc1 | 2016-04-22 17:08:59 +0000 | [diff] [blame] | 36 | |
| 37 | # This allows rules written in skylark to locate apple build tools. |
| 38 | bind(name = "xcrunwrapper", actual = "@bazel_tools//tools/objc:xcrunwrapper") |