From cdacdf635939adddef5c744ba64ec3a92f3dccfc Mon Sep 17 00:00:00 2001 From: Gowtham Tammana Date: Mon, 11 Dec 2023 11:18:34 -0600 Subject: [PATCH] llvm: Move it to third_party/llvm/src Clone the llvm_project into third_party src location to make for README.chromium and related files. Bug: angleproject:8369 Change-Id: I625eefd8fd883a956985d217f33274ebe7fbe7ed Signed-off-by: Gowtham Tammana Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/5111802 Reviewed-by: Shahbaz Youssefi Commit-Queue: Shahbaz Youssefi --- .gitignore | 2 +- .gitmodules | 4 ++-- DEPS | 2 +- third_party/{llvm => llvm/src} | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename third_party/{llvm => llvm/src} (100%) diff --git a/.gitignore b/.gitignore index b5c07810548..eafdd6e82bf 100644 --- a/.gitignore +++ b/.gitignore @@ -66,7 +66,7 @@ /third_party/libpng/src /third_party/libunwind/src /third_party/llvm-build -/third_party/llvm +/third_party/llvm/src /third_party/markupsafe /third_party/meson /third_party/nasm diff --git a/.gitmodules b/.gitmodules index 633259f6966..4b2b3598454 100644 --- a/.gitmodules +++ b/.gitmodules @@ -97,8 +97,8 @@ path = third_party/libpng/src url = https://android.googlesource.com/platform/external/libpng gclient-condition = not build_with_chromium -[submodule "third_party/llvm"] - path = third_party/llvm +[submodule "third_party/llvm/src"] + path = third_party/llvm/src url = https://chromium.googlesource.com/external/github.com/llvm/llvm-project gclient-condition = not build_with_chromium [submodule "third_party/jinja2"] diff --git a/DEPS b/DEPS index f32f3f23333..b369c1843b7 100644 --- a/DEPS +++ b/DEPS @@ -461,7 +461,7 @@ deps = { 'condition': 'not build_with_chromium', }, - 'third_party/llvm': { + 'third_party/llvm/src': { 'url': Var('chromium_git') + '/external/github.com/llvm/llvm-project@d222fa4521531cc4ac14b8e157d231c108c003be', 'condition': 'not build_with_chromium', }, diff --git a/third_party/llvm b/third_party/llvm/src similarity index 100% rename from third_party/llvm rename to third_party/llvm/src