diff --git a/swift/internal/feature_names.bzl b/swift/internal/feature_names.bzl index ba616b911..ecd1b1de9 100644 --- a/swift/internal/feature_names.bzl +++ b/swift/internal/feature_names.bzl @@ -105,7 +105,7 @@ SWIFT_FEATURE_FULL_DEBUG_INFO = "swift.full_debug_info" # explicitly. SWIFT_FEATURE_IMPLICIT_MODULES = "swift.implicit_modules" -# Index while buiding - using a global index store cache +# Index while building - using a global index store cache # https://docs.google.com/document/d/1cH2sTpgSnJZCkZtJl1aY-rzy4uGPcrI-6RrUpdATO2Q/ SWIFT_FEATURE_INDEX_WHILE_BUILDING_V2 = "swift.index_while_building_v2" diff --git a/swift/internal/swift_toolchain.bzl b/swift/internal/swift_toolchain.bzl index c29306890..a78b2d50d 100644 --- a/swift/internal/swift_toolchain.bzl +++ b/swift/internal/swift_toolchain.bzl @@ -277,12 +277,10 @@ for incremental compilation using a persistent mode. "_worker_output_processor": attr.label( cfg = "host", allow_files = True, - # TODO: add this processor if the feature is enabled - default = Label("@com_github_lyft_index_import//:index_import"), + default = "@build_bazel_rules_swift//tools/worker:worker_output_processor", doc = """\ An executable used to operate on llvm indexs for index while building """, - executable = True, ), }, ),