aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/skyframe/ASTFileLookupFunction.java
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2015-10-21 12:36:56 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-10-21 14:39:24 +0000
commit5d9b8a0dcf89190edc190f439c383d7bdbae658f (patch)
tree05f4b3c0457ea2c4c0f12ca5861f6baa15d7e908 /src/main/java/com/google/devtools/build/lib/skyframe/ASTFileLookupFunction.java
parent59a5c99832a5ddca6b854e1bcd461fd4219147eb (diff)
Remove the repository name from PACKAGE_NAME and move it to the new REPOSITORY_NAME symbol.
-- MOS_MIGRATED_REVID=105954652
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/skyframe/ASTFileLookupFunction.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/skyframe/ASTFileLookupFunction.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/ASTFileLookupFunction.java b/src/main/java/com/google/devtools/build/lib/skyframe/ASTFileLookupFunction.java
index ab2b99ea71..e5e4771d9f 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/ASTFileLookupFunction.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/ASTFileLookupFunction.java
@@ -146,7 +146,8 @@ public class ASTFileLookupFunction implements SkyFunction {
// the two below don't matter for extracting the ValidationEnvironment:
/*astFileContentHashCode=*/null,
/*importMap=*/null)
- .setupDynamic(Runtime.PKG_NAME, Runtime.NONE)));
+ .setupDynamic(Runtime.PKG_NAME, Runtime.NONE)
+ .setupDynamic(Runtime.REPOSITORY_NAME, Runtime.NONE)));
}
} else {
ast = BuildFileAST.parseBuildFile(path, fileSize, env.getListener(), false);