From 886cd6eee6cb187ecd57b5e65ddbf400488b8058 Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Tue, 10 Oct 2023 13:47:16 -0700 Subject: [PATCH] Eliminate non-existent headers from GLFW build The GLFW BUILD.gn file refers to several headers that don't exist in the repo. Issue: https://github.com/flutter/flutter/issues/136284 --- build/secondary/flutter/third_party/glfw/BUILD.gn | 3 --- 1 file changed, 3 deletions(-) diff --git a/build/secondary/flutter/third_party/glfw/BUILD.gn b/build/secondary/flutter/third_party/glfw/BUILD.gn index 3cc850295f..98c3fe43e7 100644 --- a/build/secondary/flutter/third_party/glfw/BUILD.gn +++ b/build/secondary/flutter/third_party/glfw/BUILD.gn @@ -44,7 +44,6 @@ source_set("glfw") { if (is_win) { sources += [ "$_checkout_dir/src/wgl_context.c", - "$_checkout_dir/src/wgl_context.h", "$_checkout_dir/src/win32_init.c", "$_checkout_dir/src/win32_joystick.c", "$_checkout_dir/src/win32_joystick.h", @@ -60,7 +59,6 @@ source_set("glfw") { } else if (is_linux) { sources += [ "$_checkout_dir/src/glx_context.c", - "$_checkout_dir/src/glx_context.h", "$_checkout_dir/src/linux_joystick.c", "$_checkout_dir/src/linux_joystick.h", "$_checkout_dir/src/posix_module.c", @@ -99,7 +97,6 @@ source_set("glfw") { "$_checkout_dir/src/cocoa_platform.h", "$_checkout_dir/src/cocoa_time.c", "$_checkout_dir/src/cocoa_window.m", - "$_checkout_dir/src/nsgl_context.h", "$_checkout_dir/src/nsgl_context.m", "$_checkout_dir/src/posix_module.c", "$_checkout_dir/src/posix_thread.c",