Changing include paths used in the public repo.
This CL ensures that `#include`s of `absl` headers use a path similar to
what is used in https://github.com/abseil/abseil-cpp - e.g.: `#include
"absl/strings/ascii.h"`.
Similarily, for LLVM headers, this CL changes their `#include` path to
what is used in https://github.com/llvm/llvm-project - e.g.: `#include
"clang/AST/Decl.h"` or `#include "llvm/Support/ErrorHandling.h"`.
This should help build Crubit in a scenario where its dependencies (i.e.
Abseil and LLVM/Clang) are at different paths than the ones used prior
this CL.
PiperOrigin-RevId: 444899882
diff --git a/rs_bindings_from_cc/src_code_gen.cc b/rs_bindings_from_cc/src_code_gen.cc
index 0de4964..a01e16e 100644
--- a/rs_bindings_from_cc/src_code_gen.cc
+++ b/rs_bindings_from_cc/src_code_gen.cc
@@ -8,9 +8,9 @@
#include "common/ffi_types.h"
#include "rs_bindings_from_cc/ir.h"
-#include "third_party/llvm/llvm-project/clang/include/clang/Format/Format.h"
-#include "third_party/llvm/llvm-project/llvm/include/llvm/Support/FormatVariadic.h"
-#include "third_party/llvm/llvm-project/llvm/include/llvm/Support/JSON.h"
+#include "clang/Format/Format.h"
+#include "llvm/Support/FormatVariadic.h"
+#include "llvm/Support/JSON.h"
namespace crubit {