Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 60e3313

Browse files
committed
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 is the engine-side follow-up to flutter/buildroot#777. Once all third-party dependencies have been migrated, tooling and config will be moved and the buildroot will be eliminated altogether. Issue: flutter/flutter#136284
1 parent bdeb534 commit 60e3313

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

DEPS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ allowed_hosts = [
262262
]
263263

264264
deps = {
265-
'src': 'https://github.com/flutter/buildroot.git' + '@' + '5d60bd2eb4642b64d00c845e5ca9f1ea41fd6db6',
265+
'src': 'https://github.com/flutter/buildroot.git' + '@' + '88b37b93ed10af9d5e7bc4e0568f6aa24de2ca42',
266266

267267
# Fuchsia compatibility
268268
#
@@ -282,7 +282,7 @@ deps = {
282282
'src/third_party/libcxxabi':
283283
Var('llvm_git') + '/llvm-project/libcxxabi' + '@' + '2ce528fb5e0f92e57c97ec3ff53b75359d33af12',
284284

285-
'src/third_party/glfw':
285+
'src/flutter/third_party/glfw':
286286
Var('fuchsia_git') + '/third_party/glfw' + '@' + 'dd8a678a66f1967372e5a5e3deac41ebf65ee127',
287287

288288
'src/third_party/shaderc':

examples/glfw/BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if (build_embedder_examples) {
1212

1313
deps = [
1414
"//flutter/shell/platform/embedder:embedder",
15-
"//third_party/glfw",
15+
"//flutter/third_party/glfw",
1616
]
1717
}
1818
}

examples/glfw_drm/BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if (build_embedder_examples) {
1212

1313
deps = [
1414
"//flutter/shell/platform/embedder:embedder",
15-
"//third_party/glfw",
15+
"//flutter/third_party/glfw",
1616
]
1717

1818
libs = [ "EGL" ]

examples/vulkan_glfw/BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ executable("vulkan_glfw") {
99

1010
deps = [
1111
"//flutter/shell/platform/embedder:embedder",
12-
"//third_party/glfw",
12+
"//flutter/third_party/glfw",
1313
"//third_party/vulkan-deps/vulkan-headers/src:vulkan_headers",
1414
]
1515
}

impeller/BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Use of this source code is governed by a BSD-style license that can be
33
# found in the LICENSE file.
44

5-
import("//third_party/glfw/glfw_args.gni")
5+
import("//flutter/third_party/glfw/glfw_args.gni")
66
import("tools/impeller.gni")
77

88
config("impeller_public_config") {

impeller/playground/BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ impeller_component("playground") {
4747
"../scene/shaders",
4848
"imgui:imgui_impeller_backend",
4949
"//flutter/fml",
50-
"//third_party/glfw",
50+
"//flutter/third_party/glfw",
5151
"//third_party/imgui:imgui_glfw",
5252
]
5353

shell/platform/glfw/BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ source_set("flutter_glfw") {
5959
"//flutter/shell/platform/common/client_wrapper:client_wrapper",
6060
"//flutter/shell/platform/embedder:embedder_as_internal_library",
6161
"//flutter/shell/platform/glfw/client_wrapper:client_wrapper_glfw",
62-
"//third_party/glfw",
62+
"//flutter/third_party/glfw",
6363
"//third_party/rapidjson",
6464
]
6565

0 commit comments

Comments
 (0)