public class XcodePrebuildScriptDescription extends Object implements DescriptionWithTargetGraph<XcodeScriptDescriptionArg>, Flavored
Example rule:
xcode_prebuild_script( name = 'register_app', cmd = 'register_app.sh', )
This rule is a hack and in the long-term should be replaced with a genrule that works in both Buck and Xcode build. Those rules do nothing when building with Buck.
Constructor and Description |
---|
XcodePrebuildScriptDescription() |
Modifier and Type | Method and Description |
---|---|
NoopBuildRuleWithDeclaredAndExtraDeps |
createBuildRule(BuildRuleCreationContextWithTargetGraph context,
BuildTarget buildTarget,
BuildRuleParams params,
XcodeScriptDescriptionArg args)
Create a
BuildRule for the given BuildRuleParams . |
Class<XcodeScriptDescriptionArg> |
getConstructorArgType()
The type of the constructor argument that is used by this description to create a rule
|
boolean |
hasFlavors(com.google.common.collect.ImmutableSet<Flavor> flavors,
TargetConfiguration toolchainTargetConfiguration) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
producesCacheableSubgraph
getConfigurationDeps
flavorDomains
public Class<XcodeScriptDescriptionArg> getConstructorArgType()
BaseDescription
getConstructorArgType
in interface BaseDescription<XcodeScriptDescriptionArg>
public NoopBuildRuleWithDeclaredAndExtraDeps createBuildRule(BuildRuleCreationContextWithTargetGraph context, BuildTarget buildTarget, BuildRuleParams params, XcodeScriptDescriptionArg args)
DescriptionWithTargetGraph
BuildRule
for the given BuildRuleParams
. Note that the BuildTarget
referred to in the params
contains the Flavor
to create.createBuildRule
in interface DescriptionWithTargetGraph<XcodeScriptDescriptionArg>
args
- A constructor argument, of type as returned by BaseDescription.getConstructorArgType()
.BuildRule
that describes the default flavour of the rule being described.public boolean hasFlavors(com.google.common.collect.ImmutableSet<Flavor> flavors, TargetConfiguration toolchainTargetConfiguration)
hasFlavors
in interface Flavored
flavors
- The set of Flavor
s to consider. All must match.BuildRule
of the given Flavor
can be created.