about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-05-20T03·02+0100
committerVincent Ambo <tazjin@google.com>2020-05-20T03·02+0100
commitfed31b2c9b364fc1ed0b724c21b068cdedf46ee7 (patch)
treecd7d829facd27b5d9af91084868e9d38088d9b18 /third_party
parent6dfef3137428fe46f94d3178120345f0ccfb2c87 (diff)
feat(3p/nix): Add some initial Abseil build targets r/786
These make it possible to link to Abseil strings.
Diffstat (limited to 'third_party')
-rw-r--r--third_party/nix/meson.build4
-rw-r--r--third_party/nix/meson_options.txt2
-rw-r--r--third_party/nix/src/libutil/meson.build17
3 files changed, 13 insertions, 10 deletions
diff --git a/third_party/nix/meson.build b/third_party/nix/meson.build
index abf5b7b427..9020f4f87e 100644
--- a/third_party/nix/meson.build
+++ b/third_party/nix/meson.build
@@ -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.
 #--------------------------------------------------
diff --git a/third_party/nix/meson_options.txt b/third_party/nix/meson_options.txt
index 663e5c42ab..1b1efffe48 100644
--- a/third_party/nix/meson_options.txt
+++ b/third_party/nix/meson_options.txt
@@ -11,8 +11,6 @@ option(
     description : 'path of the Nix store (defaults to /nix/store)')
 
 
-
-
 # compiler args
 #============================================================================
 
diff --git a/third_party/nix/src/libutil/meson.build b/third_party/nix/src/libutil/meson.build
index 325a7d33ba..a6494e6eac 100644
--- a/third_party/nix/src/libutil/meson.build
+++ b/third_party/nix/src/libutil/meson.build
@@ -39,14 +39,15 @@ libutil_headers = files(
 )
 
 libutil_dep_list = [
-    glog_dep,
-    boost_dep,
-    libbz2_dep,
-    liblzma_dep,
-    libbrotli_dep,
-    openssl_dep,
-    pthread_dep,
-    libsodium_dep]
+  glog_dep,
+  boost_dep,
+  libbz2_dep,
+  liblzma_dep,
+  libbrotli_dep,
+  openssl_dep,
+  pthread_dep,
+  libsodium_dep,
+]
 
 libutil_link_list = []
 libutil_link_args = []