diff options
author | misterg <misterg@google.com> | 2017-09-19T20·54-0400 |
---|---|---|
committer | misterg <misterg@google.com> | 2017-09-19T20·54-0400 |
commit | c2e754829628d1e9b7a16b3389cfdace76950fdf (patch) | |
tree | 5a7f056f44e27c30e10025113b644f0b3b5801fc /WORKSPACE |
Initial Commit
Diffstat (limited to 'WORKSPACE')
-rw-r--r-- | WORKSPACE | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/WORKSPACE b/WORKSPACE new file mode 100644 index 000000000000..7d8efc7fca74 --- /dev/null +++ b/WORKSPACE @@ -0,0 +1,22 @@ +workspace(name = "com_google_absl") +# GoogleTest/GoogleMock framework. Used by most unit-tests. +http_archive( + name = "com_google_googletest", + urls = ["https://github.com/google/googletest/archive/master.zip"], + strip_prefix = "googletest-master", +) + +# CCTZ (Time-zone framework). +# TODO(b/63158562): Make test and benchmark targets from here build. +http_archive( + name = "com_googlesource_code_cctz", + urls = ["https://github.com/google/cctz/archive/master.zip"], + strip_prefix = "cctz-master", +) + +# RE2 regular-expression framework. Used by some unit-tests. +http_archive( + name = "com_googlesource_code_re2", + urls = ["https://github.com/google/re2/archive/master.zip"], + strip_prefix = "re2-master", +) |