Set non_prod compatibility

PiperOrigin-RevId: 462733200
This commit is contained in:
jsobczak
2022-07-22 17:03:23 -07:00
committed by Copybara-Service
parent d2c401112c
commit 3ed4bfcfe1
2 changed files with 4 additions and 13 deletions
+2 -10
View File
@@ -13,6 +13,8 @@
# limitations under the License.
licenses(["notice"])
package(default_visibility = ["//third_party/nearby:__subpackages__"])
cc_library(
name = "presence",
srcs = [
@@ -22,9 +24,6 @@ cc_library(
"presence_client.h",
"presence_service.h",
],
visibility = [
"//third_party/nearby:__subpackages__",
],
deps = [
":types",
"//third_party/nearby/presence/implementation:internal", # build_cleaner: keep
@@ -56,9 +55,6 @@ cc_library(
"presence_zone.h",
"status.h",
],
visibility = [
"//third_party/nearby/presence:__subpackages__",
],
deps = [
"//internal/platform:base",
"@com_google_absl//absl/strings",
@@ -84,13 +80,9 @@ cc_library(
name = "encryption",
srcs = ["encryption.cc"],
hdrs = ["encryption.h"],
visibility = [
"//third_party/nearby/presence:__subpackages__",
],
deps = [
"//internal/platform:logging",
"//third_party/tink/cc/subtle",
"//util/random:ssl_bit_gen",
"@boringssl//:crypto",
"@com_google_absl//absl/status",
"@com_google_absl//absl/status:statusor",
+2 -3
View File
@@ -22,12 +22,11 @@
#include "absl/status/statusor.h"
#include "absl/strings/str_format.h"
#include "internal/platform/logging.h"
#include "third_party/openssl/cipher.h" // NOLINT
#include "third_party/openssl/cipher.h" // NOLINT
#include "third_party/openssl/crypto.h"
#include "third_party/openssl/evp.h" // NOLINT
#include "third_party/openssl/evp.h" // NOLINT
#include "third_party/tink/cc/subtle/hkdf.h"
#include "third_party/tink/cc/subtle/random.h"
#include "util/random/ssl_bit_gen.h"
namespace nearby {
namespace presence {