Support dynamic config file for cc_test.
Bug: 280028705
Test: local build
Change-Id: Ife445f6a7642bf08651ed7a9501a60950f05f9c4
diff --git a/tradefed/autogen_bazel.go b/tradefed/autogen_bazel.go
index 9575f7a..8283984 100644
--- a/tradefed/autogen_bazel.go
+++ b/tradefed/autogen_bazel.go
@@ -39,7 +39,8 @@
)
type TestConfigAttributes struct {
- Test_config *bazel.Label
+ Test_config *bazel.Label
+ Dynamic_config *bazel.Label
Auto_generate_test_config *bool
Template_test_config *bazel.Label
@@ -58,6 +59,11 @@
templateInstallBase *string) TestConfigAttributes {
attrs := TestConfigAttributes{}
+
+ dynamicConfig := "DynamicConfig.xml"
+ c, _ := android.BazelStringOrLabelFromProp(ctx, &dynamicConfig)
+ attrs.Dynamic_config = c.Value
+
attrs.Test_config = GetTestConfig(ctx, testConfig)
// do not generate a test config if
// 1) test config already found