From 66cf4357d5b532188ca2bb8ddf8d91215fee94bb Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Tue, 10 Oct 2023 11:15:49 -0700 Subject: [PATCH] Move //third_party/glfw to //flutter/third_party/glfw As part of eliminating the Flutter buildroot (#67373), we are moving all third-party dependencies from //third_party to //flutter/third_party. This will be followed by an engine PR that updates the deps pull GLFW to //flutter/third_party/glfw and update all targets to point to the new location. Once all third-party dependencies have been migrated, tooling and config will be moved and the buildroot will be eliminated altogether. Issue: https://github.com/flutter/flutter/issues/136284 --- build/secondary/{ => flutter}/third_party/glfw/BUILD.gn | 2 +- build/secondary/{ => flutter}/third_party/glfw/README | 0 build/secondary/{ => flutter}/third_party/glfw/glfw_args.gni | 0 build/secondary/third_party/imgui/BUILD.gn | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename build/secondary/{ => flutter}/third_party/glfw/BUILD.gn (98%) rename build/secondary/{ => flutter}/third_party/glfw/README (100%) rename build/secondary/{ => flutter}/third_party/glfw/glfw_args.gni (100%) diff --git a/build/secondary/third_party/glfw/BUILD.gn b/build/secondary/flutter/third_party/glfw/BUILD.gn similarity index 98% rename from build/secondary/third_party/glfw/BUILD.gn rename to build/secondary/flutter/third_party/glfw/BUILD.gn index 33e93e768a..3cc850295f 100644 --- a/build/secondary/third_party/glfw/BUILD.gn +++ b/build/secondary/flutter/third_party/glfw/BUILD.gn @@ -4,7 +4,7 @@ import("glfw_args.gni") -_checkout_dir = "//third_party/glfw" +_checkout_dir = "//flutter/third_party/glfw" config("relative_glfw_headers") { include_dirs = [ diff --git a/build/secondary/third_party/glfw/README b/build/secondary/flutter/third_party/glfw/README similarity index 100% rename from build/secondary/third_party/glfw/README rename to build/secondary/flutter/third_party/glfw/README diff --git a/build/secondary/third_party/glfw/glfw_args.gni b/build/secondary/flutter/third_party/glfw/glfw_args.gni similarity index 100% rename from build/secondary/third_party/glfw/glfw_args.gni rename to build/secondary/flutter/third_party/glfw/glfw_args.gni diff --git a/build/secondary/third_party/imgui/BUILD.gn b/build/secondary/third_party/imgui/BUILD.gn index 686bf387e1..dadc4eec3e 100644 --- a/build/secondary/third_party/imgui/BUILD.gn +++ b/build/secondary/third_party/imgui/BUILD.gn @@ -36,7 +36,7 @@ config("imgui_headers") { source_set("imgui_glfw") { public_deps = [ ":imgui", - "//third_party/glfw", + "//flutter/third_party/glfw", ] public_configs = [ ":imgui_headers" ]