summaryrefslogtreecommitdiff
path: root/proto/src
diff options
context:
space:
mode:
author Fabien Sanglard <sanglardf@google.com> 2024-04-03 22:09:24 +0000
committer Fabien Sanglard <sanglardf@google.com> 2024-04-11 20:38:19 +0000
commit18e4fdc211e29fc669b5eec106ffe97de149e7b3 (patch)
tree4647c7edec142f16b583f1093e207e85bb661a6e /proto/src
parent22be9ae76937aef3723d6d3bff0f29ab2866ec47 (diff)
Add Framework and VM capabilities to am
DDM is set to be deprecated soon. We need another venue to discover the capabilities of the VM and Framework we used to get from FEAT and HELO packets. Test: NA Bug: 333926583 Change-Id: I4743e2e840b6f87f9eb41a51e36ef0b6cab3ebe1
Diffstat (limited to 'proto/src')
-rw-r--r--proto/src/am_capabilities.proto10
1 files changed, 10 insertions, 0 deletions
diff --git a/proto/src/am_capabilities.proto b/proto/src/am_capabilities.proto
index d97bf816b150..fc9f7a4590bd 100644
--- a/proto/src/am_capabilities.proto
+++ b/proto/src/am_capabilities.proto
@@ -7,6 +7,16 @@ message Capability {
string name = 1;
}
+message VMCapability {
+ string name = 1;
+}
+
+message FrameworkCapability {
+ string name = 1;
+}
+
message Capabilities {
repeated Capability values = 1;
+ repeated VMCapability vm_capabilities = 2;
+ repeated FrameworkCapability framework_capabilities = 3;
}