diff options
Diffstat (limited to 'aconfig/init.go')
-rw-r--r-- | aconfig/init.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/aconfig/init.go b/aconfig/init.go index 77f5ed363..16fb0cd9b 100644 --- a/aconfig/init.go +++ b/aconfig/init.go @@ -20,6 +20,20 @@ import ( "github.com/google/blueprint" ) +type CodegenInfo struct { + // AconfigDeclarations is the name of the aconfig_declarations modules that + // the codegen module is associated with + AconfigDeclarations []string + + // Paths to the cache files of the associated aconfig_declaration modules + IntermediateCacheOutputPaths android.Paths + + // Paths to the srcjar files generated from the java_aconfig_library modules + Srcjars android.Paths +} + +var CodegenInfoProvider = blueprint.NewProvider[CodegenInfo]() + var ( pctx = android.NewPackageContext("android/soong/aconfig") |