aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/protobuf/package_manifest.proto
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/protobuf/package_manifest.proto')
-rw-r--r--src/main/protobuf/package_manifest.proto8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/main/protobuf/package_manifest.proto b/src/main/protobuf/package_manifest.proto
index 0c9c40def6..d5106a2bad 100644
--- a/src/main/protobuf/package_manifest.proto
+++ b/src/main/protobuf/package_manifest.proto
@@ -25,10 +25,16 @@ message ArtifactLocation {
string relative_path = 2;
bool is_source = 3;
- // set for derived artifacts (is_source = false)
+ // path from the execution root to the actual root:
+ // exec_root + root_execution_path_fragment + relative_path = absolute_path
string root_execution_path_fragment = 4;
// whether this artifact comes from an external repository (bazel only)
bool is_external = 5;
+
+ // The contents of relative_path and root_execution_path_fragment have changed
+ // for external workspaces. This is a temporary field to distinguish between
+ // the two versions.
+ bool is_new_external_version = 6;
}
message JavaSourcePackage {