Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce feature to register a separate action to generate swift derived files #504

Merged
merged 16 commits into from
Oct 20, 2020
4 changes: 4 additions & 0 deletions swift/internal/actions.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ swift_action_names = struct(
# Precompiles an explicit module for a C/Objective-C module map and its
# headers, emitting a `.pcm` file.
PRECOMPILE_C_MODULE = "SwiftPrecompileCModule",

# Produces files that are usually fallout of the compilation such as
# .swiftmodule, -Swift.h and more.
DERIVED_FILES = "SwiftDerivedFiles",
keith marked this conversation as resolved.
Show resolved Hide resolved
)

def _apply_configurator(configurator, prerequisites, args):
Expand Down
Loading