diff --git a/presence/implementation/BUILD b/presence/implementation/BUILD index e73fdeaa..323c1a72 100644 --- a/presence/implementation/BUILD +++ b/presence/implementation/BUILD @@ -99,7 +99,7 @@ cc_library( "//presence/implementation/mediums", "@boringssl//:crypto", ] + select({ - ":link_with_rust": ["//third_party/nearby_rust/np_ffi"], + ":link_with_rust": ["//third_party/nearby_rust/presence/np_ffi"], "//conditions:default": [":ldt_stub"], }), ) diff --git a/presence/implementation/ldt.cc b/presence/implementation/ldt.cc index 122d8906..a1b979f7 100644 --- a/presence/implementation/ldt.cc +++ b/presence/implementation/ldt.cc @@ -24,7 +24,7 @@ #include "absl/strings/string_view.h" #include #if USE_RUST_LDT == 1 -#include "third_party/nearby_rust/np_ffi/include/np_ldt.h" +#include "third_party/nearby_rust/presence/np_ffi/include/np_ldt.h" #else #include "presence/implementation/np_ldt.h" #endif /* USE_RUST_LDT */ diff --git a/presence/implementation/ldt.h b/presence/implementation/ldt.h index 25da4036..2cd9118f 100644 --- a/presence/implementation/ldt.h +++ b/presence/implementation/ldt.h @@ -21,7 +21,7 @@ #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #if USE_RUST_LDT == 1 -#include "third_party/nearby_rust/np_ffi/include/np_ldt.h" +#include "third_party/nearby_rust/presence/np_ffi/include/np_ldt.h" #else #include "presence/implementation/np_ldt.h" #endif /* USE_RUST_LDT */