diff options
author | 2021-07-22 12:05:08 -0700 | |
---|---|---|
committer | 2021-08-11 23:54:15 +0000 | |
commit | c0a671fc80264fdf501225f64f8c2605d48d77ca (patch) | |
tree | dfea6dc68b37ede6ac0d8269c136966120d37d4d /rust/rust.go | |
parent | 60880e05176a6f6b39ed38657d1c32ad178a17e8 (diff) |
Moving common fuzzing code to fuzz package
Test: make haiku and make haiku-rust
Change-Id: Ife80cc10672f51bd6afbae7061cc9373a2a15e7d
Diffstat (limited to 'rust/rust.go')
-rw-r--r-- | rust/rust.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rust/rust.go b/rust/rust.go index 80be49638..e18f8cc1b 100644 --- a/rust/rust.go +++ b/rust/rust.go @@ -25,6 +25,7 @@ import ( "android/soong/bloaty" "android/soong/cc" cc_config "android/soong/cc/config" + "android/soong/fuzz" "android/soong/rust/config" ) @@ -123,7 +124,7 @@ type BaseProperties struct { } type Module struct { - cc.FuzzModule + fuzz.FuzzModule VendorProperties cc.VendorProperties |