Add dependencies on @com_google_absl//absl/base:log_severity

to targets including "absl/base/log_severity.h"

PiperOrigin-RevId: 259483071
Change-Id: Ide51ea54ca18ce466be863c1e7755098618801c0
This commit is contained in:
Sandboxed API Team 2019-07-23 00:31:28 -07:00 committed by Copybara-Service
parent 2300141bdb
commit ae9836e6bf
4 changed files with 6 additions and 3 deletions

View File

@ -148,6 +148,7 @@ cc_library(
"//sandboxed_api/util:status",
"//sandboxed_api/util:statusor",
"@com_google_absl//absl/base:core_headers",
"@com_google_absl//absl/memory",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/strings:str_format",
"@com_google_absl//absl/synchronization",

View File

@ -32,9 +32,9 @@ def sapi_deps():
if "com_google_absl" not in native.existing_rules():
http_archive(
name = "com_google_absl",
sha256 = "57cadb5f4e35e479de395490994db5cd91a23b3a4d6fba85ffbe86590d70f606", # 2019-05-07
strip_prefix = "abseil-cpp-aa468ad75539619b47979911297efbb629c52e44",
urls = ["https://github.com/abseil/abseil-cpp/archive/aa468ad75539619b47979911297efbb629c52e44.zip"],
sha256 = "3c119a995f3bb1e2aa7b3a37efe526172695816d63bb7a001139f25d628b9c6e", # 2019-07-18
strip_prefix = "abseil-cpp-278b26058c036833a4f7f3047d3f4d9296527f87",
urls = ["https://github.com/abseil/abseil-cpp/archive/278b26058c036833a4f7f3047d3f4d9296527f87.zip"],
)
# Abseil-py

View File

@ -58,6 +58,7 @@ cc_library(
":status",
"@com_google_absl//absl/base",
"@com_google_absl//absl/base:core_headers",
"@com_google_absl//absl/base:log_severity",
"@com_google_absl//absl/types:variant",
],
)

View File

@ -19,6 +19,7 @@
#include <cinttypes>
#include "absl/memory/memory.h"
#include "sandboxed_api/proto_helper.h"
#include "sandboxed_api/var_lenval.h"
#include "sandboxed_api/var_pointable.h"