From e2df74b50c5e67bf3577b2184f9a1265077eccba Mon Sep 17 00:00:00 2001 From: Nevena Kotlaja Date: Thu, 21 Sep 2023 08:46:00 -0700 Subject: [PATCH] Disable AEGs inside xcode_swift_toolchain Because of the complexity, I would like to disable AEGs in this rule and proceed with the rest of the migration and flip the flag. I'll come back in the near future to enable them and add `toolchain` param to the affected actions. PiperOrigin-RevId: 567319616 (cherry picked from commit ee7f493a87e206db35f724601c52d1a18d64eb50) --- swift/toolchains/xcode_swift_toolchain.bzl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/swift/toolchains/xcode_swift_toolchain.bzl b/swift/toolchains/xcode_swift_toolchain.bzl index 93c8ed86e..d803795b4 100644 --- a/swift/toolchains/xcode_swift_toolchain.bzl +++ b/swift/toolchains/xcode_swift_toolchain.bzl @@ -952,6 +952,8 @@ for incremental compilation using a persistent mode. fragment = "apple", ), ), + # TODO(b/301253335): Enable AEGs later. + "_use_auto_exec_groups": attr.bool(default = False), }, ), doc = "Represents a Swift compiler toolchain provided by Xcode.",