diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2016-10-20 09:29:46 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2016-10-20 09:29:46 +0200 |
commit | 31d11dbfb8db0fc39da64be9c094e2900e9aedfb (patch) | |
tree | 4fce6ab0f51f421430bd82bf1e089b2293fd0d19 /WORKSPACE | |
parent | 70ee74c4798afe781788d40afe1923feff37d657 (diff) |
Starting this from scratch
-) Basic workspace
-) Basic BUILD file with macros
Diffstat (limited to 'WORKSPACE')
-rw-r--r-- | WORKSPACE | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/WORKSPACE b/WORKSPACE new file mode 100644 index 0000000000..6a1b70e152 --- /dev/null +++ b/WORKSPACE @@ -0,0 +1,42 @@ +bind( + name = "nanopb", + actual = "//third_party/nanopb", +) + +bind( + name = "libssl", + actual = "@submodule_boringssl//:ssl", +) + +bind( + name = "zlib", + actual = "@submodule_zlib//:z", +) + +bind( + name = "protobuf_clib", + actual = "@submodule_protobuf//:protoc_lib", +) + +bind( + name = "protobuf_compiler", + actual = "@submodule_protobuf//:protoc_lib", +) + +new_local_repository( + name = "submodule_boringssl", + path = "third_party/boringssl", + build_file = "third_party/boringssl/BUILD", +) + +new_local_repository( + name = "submodule_zlib", + path = "third_party/zlib", + build_file = "third_party/zlib.BUILD", +) + +new_local_repository( + name = "submodule_protobuf", + path = "third_party/protobuf", + build_file = "third_party/protobuf/BUILD", +) |