Change aconfig parameter from --namespace to --package

The namespace field in aconfig is now called package, and `aconfig
create-cache --namespace ...` is now called `aconfig create-cache
--package ...`. Change the call-site accordingly.

The Soong code still uses the namespace terminology. A follow-up CL will
change the code to refer to package instead.

Bug: 285000854
Test: m nothing
Change-Id: Id787f80c1fa4ab5d4bc37410d6712aadd8833fb4
This commit is contained in:
Mårten Kongstad
2023-05-31 12:55:40 +02:00
parent 68d18d2d55
commit 9feb96d47d

View File

@@ -27,7 +27,7 @@ var (
aconfigRule = pctx.AndroidStaticRule("aconfig",
blueprint.RuleParams{
Command: `${aconfig} create-cache` +
` --namespace ${namespace}` +
` --package ${namespace}` +
` --declarations ${in}` +
` ${values}` +
` --cache ${out}.tmp` +