diff options
author | 2024-03-11 20:35:14 +0000 | |
---|---|---|
committer | 2024-03-11 20:35:14 +0000 | |
commit | 60d430760527d3665160bfa78890b740306b3488 (patch) | |
tree | 7ba72a3a1698a5899b898f67d5ecb749bf6c2acf /aconfig/all_aconfig_declarations.go | |
parent | 90c2af97ed756822b885a1b53f86f83927041b52 (diff) |
Revert "Include all_aconfig_declarations in docs dist"
This reverts commit 90c2af97ed756822b885a1b53f86f83927041b52.
Reason for revert: Includes too many flags. The on-device copy of aconfig declarations must be **only** those that are used by code on the device. `all_aconfig_declarations` is every aconfig flag in the source tree, and cannot be placed on the device.
Change-Id: Id7ac61c0805825b4ca27fffe84a48f95e3c682b2
Diffstat (limited to 'aconfig/all_aconfig_declarations.go')
-rw-r--r-- | aconfig/all_aconfig_declarations.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aconfig/all_aconfig_declarations.go b/aconfig/all_aconfig_declarations.go index e771d0597..72fe4959b 100644 --- a/aconfig/all_aconfig_declarations.go +++ b/aconfig/all_aconfig_declarations.go @@ -89,7 +89,7 @@ func (this *allAconfigDeclarationsSingleton) GenerateBuildActions(ctx android.Si func (this *allAconfigDeclarationsSingleton) MakeVars(ctx android.MakeVarsContext) { ctx.DistForGoal("droid", this.intermediateBinaryProtoPath) - for _, goal := range []string{"docs", "droid", "sdk"} { + for _, goal := range []string{"droid", "sdk"} { ctx.DistForGoalWithFilename(goal, this.intermediateBinaryProtoPath, "flags.pb") ctx.DistForGoalWithFilename(goal, this.intermediateTextProtoPath, "flags.textproto") } |