blob: c2b3ac2aaa7890d6d94e10fc57e699ae141db152 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
syntax = "proto3";
package com.android.server.am;
option java_multiple_files = true;
message Capability {
string name = 1;
}
message VMCapability {
string name = 1;
}
message FrameworkCapability {
string name = 1;
}
message VMInfo {
// The value of the "java.vm.name" system property
string name = 1;
// The value of the "java.vm.version" system property
string version = 2;
}
message Capabilities {
repeated Capability values = 1;
repeated VMCapability vm_capabilities = 2;
repeated FrameworkCapability framework_capabilities = 3;
VMInfo vm_info = 4;
}
|