summaryrefslogtreecommitdiff
path: root/rust/fuzz.go
diff options
context:
space:
mode:
author Priyanka Advani <padvani@google.com> 2024-05-01 20:02:36 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2024-05-01 20:02:41 +0000
commited5276f0827915166e89b72bf26f7e65f68d2dd5 (patch)
tree87afdde2eda7687d2b50a801a0a93c7df194848a /rust/fuzz.go
parent0e0d7490625c713bb71c254bd55129b0a30898a3 (diff)
Revert "Make the enabled property configurable"
Revert submission 27162921-configurable_enabled_property Reason for revert: Droid-monitor created revert due to Build breakage in b/338253720. Will be verifying through ABTD before submission. Reverted changes: /q/submissionid:27162921-configurable_enabled_property Change-Id: I2d144f9d297373a13a1190b173d10c966181ad84
Diffstat (limited to 'rust/fuzz.go')
-rw-r--r--rust/fuzz.go21
1 files changed, 11 insertions, 10 deletions
diff --git a/rust/fuzz.go b/rust/fuzz.go
index da111b59e..1770d2e65 100644
--- a/rust/fuzz.go
+++ b/rust/fuzz.go
@@ -20,8 +20,6 @@ import (
"android/soong/fuzz"
"android/soong/rust/config"
"path/filepath"
-
- "github.com/google/blueprint/proptools"
)
func init() {
@@ -66,14 +64,17 @@ func NewRustFuzz(hod android.HostOrDeviceSupported) (*Module, *fuzzDecorator) {
android.AddLoadHook(module, func(ctx android.LoadHookContext) {
extraProps := struct {
- Enabled proptools.Configurable[bool]
- }{
- Enabled: android.CreateSelectOsToBool(map[string]*bool{
- "": nil,
- "darwin": proptools.BoolPtr(false),
- "linux_bionic": proptools.BoolPtr(false),
- }),
- }
+ Target struct {
+ Darwin struct {
+ Enabled *bool
+ }
+ Linux_bionic struct {
+ Enabled *bool
+ }
+ }
+ }{}
+ extraProps.Target.Darwin.Enabled = cc.BoolPtr(false)
+ extraProps.Target.Linux_bionic.Enabled = cc.BoolPtr(false)
ctx.AppendProperties(&extraProps)
})