Initial Commit
This commit is contained in:
commit
c2e7548296
238 changed files with 65475 additions and 0 deletions
22
WORKSPACE
Normal file
22
WORKSPACE
Normal file
|
@ -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",
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue