You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.6 KiB
40 lines
1.6 KiB
/*
|
|
* Copyright (C) 2018 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
syntax = "proto3";
|
|
|
|
package tradefed.invoker;
|
|
|
|
option java_package = "com.android.tradefed.invoker.proto";
|
|
option java_outer_classname = "InvocationContext";
|
|
|
|
import public "tools/asuite/atest/tf_proto/configuration_description.proto";
|
|
import public "tools/asuite/atest/tf_proto/build_info.proto";
|
|
|
|
// Representation of a Tradefed Invocation Context in proto.
|
|
message Context {
|
|
// The invocation test tag to identify it.
|
|
string test_tag = 1;
|
|
// Map of the configured device name to the build info associated. The device
|
|
// name can be found in the Tradefed configuration xml of the test.
|
|
map<string, tradefed.build.BuildInfo> name_build_info = 2;
|
|
// A list of Metadata representing the invocation attributes
|
|
repeated tradefed.config.Metadata metadata = 3;
|
|
// The configuration description associated with the test configuration.
|
|
tradefed.config.Descriptor configuration_description = 4;
|
|
// Optional, a context under the invocation representing a module.
|
|
Context module_context = 5;
|
|
}
|