From db0d808f4dbd321563aded98ace21fae353fc551 Mon Sep 17 00:00:00 2001 From: xingzeng Date: Thu, 11 Sep 2025 17:41:15 +0800 Subject: [PATCH] Remove compile condition EMULATOR_PLATFORM https://gitee.com/openharmony/commonlibrary_c_utils/issues/ICXL1H Remove compile condition EMULATOR_PLATFORM Signed-off-by: xingzeng --- base/BUILD.gn | 3 --- 1 file changed, 3 deletions(-) diff --git a/base/BUILD.gn b/base/BUILD.gn index 5cd94cd..62c09fd 100644 --- a/base/BUILD.gn +++ b/base/BUILD.gn @@ -37,9 +37,6 @@ config("utils_config") { if (current_os == "mac") { defines += [ "MAC_PLATFORM" ] } - if (is_emulator == true) { - defines += [ "EMULATOR_PLATFORM" ] - } if (current_os == "ohos") { defines += [ "OHOS_PLATFORM" ] } -- Gitee