From 27082e3a6279f4deead6c0b5deebac4c5435ece8 Mon Sep 17 00:00:00 2001 From: Googler Date: Tue, 5 Nov 2024 15:49:00 -0800 Subject: [PATCH] Add a link to the BazelCon 2024 talk on how we handle globs. PiperOrigin-RevId: 693503398 Change-Id: I78c267e223ae64ab7fba81cdebc72a87bdba3782 --- .../build/lib/skyframe/PackageFunctionWithSingleGlobsDep.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/PackageFunctionWithSingleGlobsDep.java b/src/main/java/com/google/devtools/build/lib/skyframe/PackageFunctionWithSingleGlobsDep.java index 264b0ab6657e8c..2beec5f4f57e10 100644 --- a/src/main/java/com/google/devtools/build/lib/skyframe/PackageFunctionWithSingleGlobsDep.java +++ b/src/main/java/com/google/devtools/build/lib/skyframe/PackageFunctionWithSingleGlobsDep.java @@ -47,6 +47,10 @@ * {@link * com.google.devtools.build.lib.skyframe.PackageFunction.GlobbingStrategy#SINGLE_GLOBS_HYBRID}. All * globs defined in the package's {@code BUILD} file are combined into a single GLOBS node. + * + *

For an overview of the problem space and our approach, see the https://youtu.be/ZrevTeuU-gQ + * talk from BazelCon 2024 (slides: + * https://docs.google.com/presentation/d/e/2PACX-1vSjmiGyHDiCDowgc5ar7f7MLAPCzYAAoH1APmnTjqdTpcWv12ysFvgT_aVwj82vLa7JJA8esnp2jtMJ/pub). */ final class PackageFunctionWithSingleGlobsDep extends PackageFunction {