aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/sandbox
diff options
context:
space:
mode:
authorGravatar Michael Thvedt <mthvedt@google.com>2016-02-09 00:57:46 +0000
committerGravatar Dmitry Lomov <dslomov@google.com>2016-02-09 12:20:47 +0000
commit434e68ebae77b4fd89c05ac676f20406e1c5b368 (patch)
tree3510106cecabdbc77a30adbbb973b13ca742231f /src/main/java/com/google/devtools/build/lib/sandbox
parente3b1cb765a04c858a87ca7c7b0ecfa63d55be269 (diff)
Rename MiddlemanExpander to ArtifactExpander, and refactor it to yield ArtifactFiles.
-- MOS_MIGRATED_REVID=114166208
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/sandbox')
-rw-r--r--src/main/java/com/google/devtools/build/lib/sandbox/LinuxSandboxedStrategy.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/sandbox/LinuxSandboxedStrategy.java b/src/main/java/com/google/devtools/build/lib/sandbox/LinuxSandboxedStrategy.java
index 9148014a5e..a6f73854a8 100644
--- a/src/main/java/com/google/devtools/build/lib/sandbox/LinuxSandboxedStrategy.java
+++ b/src/main/java/com/google/devtools/build/lib/sandbox/LinuxSandboxedStrategy.java
@@ -442,8 +442,8 @@ public class LinuxSandboxedStrategy implements SpawnActionContext {
MountMap mounts = new MountMap();
List<ActionInput> inputs =
- ActionInputHelper.expandMiddlemen(
- spawn.getInputFiles(), actionExecutionContext.getMiddlemanExpander());
+ ActionInputHelper.expandArtifacts(
+ spawn.getInputFiles(), actionExecutionContext.getArtifactExpander());
if (spawn.getResourceOwner() instanceof CppCompileAction) {
CppCompileAction action = (CppCompileAction) spawn.getResourceOwner();