From f50e3983ca39ed74bc9beda9bef8662c0be61ed6 Mon Sep 17 00:00:00 2001 From: removedporn <86824510+removedporn@users.noreply.github.com> Date: Thu, 19 Aug 2021 00:05:57 +0800 Subject: [PATCH] Delete Android.bp --- Android.bp | 83 ------------------------------------------------------ 1 file changed, 83 deletions(-) delete mode 100644 Android.bp diff --git a/Android.bp b/Android.bp deleted file mode 100644 index d48258b..0000000 --- a/Android.bp +++ /dev/null @@ -1,83 +0,0 @@ -common_cflags = [ - "-O3", - //"-flto", - "-fPIC", - "-fvisibility=hidden", - //"-fno-plt", - "-pipe", - "-Wall", - "-Wextra", - "-Wcast-align", - "-Wcast-qual", - "-Wwrite-strings", - "-Wno-constant-logical-operand", - "-Werror", - "-DH_MALLOC_PREFIX", - "-DZERO_ON_FREE=true", - "-DWRITE_AFTER_FREE_CHECK=true", - "-DSLOT_RANDOMIZE=true", - "-DSLAB_CANARY=true", - "-DSLAB_QUARANTINE_RANDOM_LENGTH=1", - "-DSLAB_QUARANTINE_QUEUE_LENGTH=1", - "-DCONFIG_EXTENDED_SIZE_CLASSES=true", - "-DCONFIG_LARGE_SIZE_CLASSES=true", - "-DGUARD_SLABS_INTERVAL=1", - "-DGUARD_SIZE_DIVISOR=2", - "-DREGION_QUARANTINE_RANDOM_LENGTH=256", - "-DREGION_QUARANTINE_QUEUE_LENGTH=1024", - "-DREGION_QUARANTINE_SKIP_THRESHOLD=33554432", // 32MiB - "-DFREE_SLABS_QUARANTINE_RANDOM_LENGTH=32", - "-DN_ARENA=1", - "-DCONFIG_STATS=true", -] - -cc_defaults { - name: "hardened_malloc_defaults", - defaults: ["linux_bionic_supported"], - cflags: common_cflags, - arch: { - arm64: { - cflags: ["-DCONFIG_CLASS_REGION_SIZE=2147483648"] // 2GiB - }, - x86_64: { - cflags: ["-DCONFIG_CLASS_REGION_SIZE=34359738368"] // 32GiB - }, - }, - conlyflags: ["-std=c11", "-Wmissing-prototypes"], - stl: "none", -} - -lib_src_files = [ - "chacha.c", - "h_malloc.c", - "memory.c", - "pages.c", - "random.c", - "util.c", -] - -cc_library { - name: "libhardened_malloc", - ramdisk_available: true, - recovery_available: true, - defaults: ["hardened_malloc_defaults"], - srcs: lib_src_files, - export_include_dirs: ["include"], - static_libs: ["libasync_safe"], - target: { - android: { - shared: { - enabled: false, - }, - system_shared_libs: [], - }, - linux_bionic: { - system_shared_libs: [], - }, - }, - product_variables: { - debuggable: { - cflags: ["-DLABEL_MEMORY"], - }, - }, -}