aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/platform
diff options
context:
space:
mode:
authorGravatar jcater <jcater@google.com>2018-07-23 14:58:15 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-07-23 15:00:18 -0700
commit13a03b7cea381fabcf1d6fdc7e183ec127ccca85 (patch)
tree115b7ea2da1dcddac1ca915ba44fb0dae259fd0c /src/main/java/com/google/devtools/build/lib/rules/platform
parent7d9596c1ae10979d2ba9ef10fc1ca01ee5e9c3a2 (diff)
Clarified documentation of remote_execution_properties attribute.
PiperOrigin-RevId: 205729963
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/platform')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/platform/PlatformRule.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/platform/PlatformRule.java b/src/main/java/com/google/devtools/build/lib/rules/platform/PlatformRule.java
index 97abe37e49..e3e69ad074 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/platform/PlatformRule.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/platform/PlatformRule.java
@@ -49,9 +49,8 @@ public class PlatformRule implements RuleDefinition {
.mandatoryProviders(ImmutableList.of(ConstraintValueInfo.SKYLARK_CONSTRUCTOR.id())))
/* <!-- #BLAZE_RULE(platform).ATTRIBUTE(remote_execution_properties) -->
- A text proto (the Platform message from
- https://github.com/googleapis/googleapis/blob/master/google/devtools/remoteexecution/v1test/remote_execution.proto)
- that will be sent to a remote execution platform.
+ A string used to configure a remote execution platform. Actual builds make no attempt to
+ interpret this, it is treated as opaque data that can be used by a specific SpawnRunner.
<!-- #END_BLAZE_RULE.ATTRIBUTE --> */
.add(attr(REMOTE_EXECUTION_PROPS_ATTR, Type.STRING))