Disable explicitly the experimental bundling logic until it is enabled by default, to avoid affecting the Golden projects during the transition. Once this is removed, and the flag has flipped, the goldens will need to be regenerated.

PiperOrigin-RevId: 223514897
diff --git a/src/TulsiGeneratorIntegrationTests/EndToEndIntegrationTestCase.swift b/src/TulsiGeneratorIntegrationTests/EndToEndIntegrationTestCase.swift
index cbedb7e..4ddf77b 100644
--- a/src/TulsiGeneratorIntegrationTests/EndToEndIntegrationTestCase.swift
+++ b/src/TulsiGeneratorIntegrationTests/EndToEndIntegrationTestCase.swift
@@ -29,8 +29,9 @@
     case userBuildScriptInvocationFailure(String)
   }
 
-  let extraDebugFlags = ["--define=TULSI_TEST=dbg"]
-  let extraReleaseFlags = ["--define=TULSI_TEST=rel"]
+  /// TODO(b/77804841): Remove the apple.experimental.bundling flag from this list.
+  let extraDebugFlags = ["--define=TULSI_TEST=dbg", "--define=apple.experimental.bundling=0"]
+  let extraReleaseFlags = ["--define=TULSI_TEST=rel", "--define=apple.experimental.bundling=0"]
   let fakeBazelURL = URL(fileURLWithPath: "/fake/tulsi_test_bazel", isDirectory: false)
   let testTulsiVersion = "9.99.999.9999"