1diff --git a/Android.bp b/Android.bp 2index 0c440d4..72a7bfe 100644 3--- a/Android.bp 4+++ b/Android.bp 5@@ -34,21 +34,20 @@ license { 6 "SPDX-license-identifier-MIT", 7 ], 8 license_text: [ 9 "LICENSE-APACHE", 10 "LICENSE-MIT", 11 ], 12 } 13 14 rust_test { 15 name: "flate2_test_src_lib", 16- host_supported: true, 17 crate_name: "flate2", 18 cargo_env_compat: true, 19 cargo_pkg_version: "1.0.28", 20 crate_root: "src/lib.rs", 21 test_suites: ["general-tests"], 22 auto_gen_config: true, 23 test_options: { 24 unit_test: true, 25 }, 26 edition: "2018", 27@@ -61,21 +60,20 @@ rust_test { 28 rustlibs: [ 29 "libcrc32fast", 30 "liblibz_sys", 31 "libquickcheck", 32 "librand", 33 ], 34 } 35 36 rust_test { 37 name: "flate2_test_tests_early-flush", 38- host_supported: true, 39 crate_name: "early_flush", 40 cargo_env_compat: true, 41 cargo_pkg_version: "1.0.28", 42 crate_root: "tests/early-flush.rs", 43 test_suites: ["general-tests"], 44 auto_gen_config: true, 45 test_options: { 46 unit_test: true, 47 }, 48 edition: "2018", 49@@ -89,21 +87,20 @@ rust_test { 50 "libcrc32fast", 51 "libflate2", 52 "liblibz_sys", 53 "libquickcheck", 54 "librand", 55 ], 56 } 57 58 rust_test { 59 name: "flate2_test_tests_empty-read", 60- host_supported: true, 61 crate_name: "empty_read", 62 cargo_env_compat: true, 63 cargo_pkg_version: "1.0.28", 64 crate_root: "tests/empty-read.rs", 65 test_suites: ["general-tests"], 66 auto_gen_config: true, 67 test_options: { 68 unit_test: true, 69 }, 70 edition: "2018", 71@@ -117,21 +114,20 @@ rust_test { 72 "libcrc32fast", 73 "libflate2", 74 "liblibz_sys", 75 "libquickcheck", 76 "librand", 77 ], 78 } 79 80 rust_test { 81 name: "flate2_test_tests_gunzip", 82- host_supported: true, 83 crate_name: "gunzip", 84 cargo_env_compat: true, 85 cargo_pkg_version: "1.0.28", 86 crate_root: "tests/gunzip.rs", 87 test_suites: ["general-tests"], 88 auto_gen_config: true, 89 test_options: { 90 unit_test: true, 91 }, 92 edition: "2018", 93@@ -152,21 +148,20 @@ rust_test { 94 "tests/corrupt-gz-file.bin", 95 "tests/good-file.gz", 96 "tests/good-file.txt", 97 "tests/multi.gz", 98 "tests/multi.txt", 99 ], 100 } 101 102 rust_test { 103 name: "flate2_test_tests_zero-write", 104- host_supported: true, 105 crate_name: "zero_write", 106 cargo_env_compat: true, 107 cargo_pkg_version: "1.0.28", 108 crate_root: "tests/zero-write.rs", 109 test_suites: ["general-tests"], 110 auto_gen_config: true, 111 test_options: { 112 unit_test: true, 113 }, 114 edition: "2018", 115