From a53ec633997b9ca98d28d5f9c19439637bac8f12 Mon Sep 17 00:00:00 2001 From: Kaylee Lubick Date: Wed, 29 May 2024 18:16:22 +0000 Subject: [PATCH] fix skia_root --- skia/BUILD.gn | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/skia/BUILD.gn b/skia/BUILD.gn index 2235c6755ee05..31956cf645f84 100644 --- a/skia/BUILD.gn +++ b/skia/BUILD.gn @@ -439,9 +439,13 @@ optional("gpu") { libs += [ "GL" ] public_defines += [ "SK_GLX" ] } else if (is_mac) { - sources += [ "src/gpu/ganesh/gl/mac/GrGLMakeNativeInterface_mac.cpp" ] + sources += [ + "$_skia_root/src/gpu/ganesh/gl/mac/GrGLMakeNativeInterface_mac.cpp", + ] } else if (is_ios) { - sources += [ "src/gpu/ganesh/gl/iOS/GrGLMakeNativeInterface_iOS.cpp" ] + sources += [ + "$_skia_root/src/gpu/ganesh/gl/iOS/GrGLMakeNativeInterface_iOS.cpp", + ] } else if (is_win) { sources += [ "$_skia_root/src/gpu/ganesh/gl/win/GrGLMakeNativeInterface_win.cpp",