feat(3p/nix): Add some initial Abseil build targets

These make it possible to link to Abseil strings.
This commit is contained in:
Vincent Ambo 2020-05-20 04:02:23 +01:00
parent 6dfef31374
commit fed31b2c9b
3 changed files with 13 additions and 10 deletions

View file

@ -348,6 +348,10 @@ description : 'Whether link() works on symlinks')
# This will need to change if //third_party/nix is every split out as
# a subtree.
absl = cmake.subproject('abseil_cpp')
absl_base = absl.dependency('base')
absl_raw_logging = absl.dependency('raw_logging_internal')
absl_int128 = absl.dependency('int128')
absl_strings = absl.dependency('strings')
# Look for boost, a required dependency.
#--------------------------------------------------