Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(335)

Unified Diff: src/shared/asan_helper.h

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/pkg/power_management/power_management_extension_macos.cc ('k') | src/shared/assert.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/asan_helper.h
diff --git a/src/shared/asan_helper.h b/src/shared/asan_helper.h
index 86a7c768e329b8a7069a97540c8151037b1b39a6..ce22aa152c273d9fddd7a04528b96c5e1a730e47 100644
--- a/src/shared/asan_helper.h
+++ b/src/shared/asan_helper.h
@@ -12,22 +12,23 @@
#define ADDRESS_SANITIZER_SUPPORT
-#if defined(FLETCH_ASAN) && defined(FLETCH_CLANG)
+#if defined(DARTINO_ASAN) && defined(DARTINO_CLANG)
#define USING_ADDRESS_SANITIZER
#endif
// NOTE: We don't have defines for the host/target operating system, but the
// leak sanitizer seems to be only enabled on Linux 64-bit.
// Since we can't distinguish between MacOS/Linux, we use PROBABLY_*
-#if defined(FLETCH_ASAN) && defined(FLETCH_CLANG) && defined(FLETCH_TARGET_X64)
+#if defined(DARTINO_ASAN) && defined(DARTINO_CLANG) && \
+ defined(DARTINO_TARGET_X64)
#define PROBABLY_USING_LEAK_SANITIZER
#endif
#endif // __has_feature(address_sanitizer)
#endif // defined(__has_feature)
-#if defined(FLETCH_ASAN) && defined(FLETCH_CLANG) && \
- defined(FLETCH_TARGET_X64) && !defined(USING_ADDRESS_SANITIZER)
+#if defined(DARTINO_ASAN) && defined(DARTINO_CLANG) && \
+ defined(DARTINO_TARGET_X64) && !defined(USING_ADDRESS_SANITIZER)
#error "Expected to use ASAN in asan-clang-x64 configuration."
#endif
« no previous file with comments | « src/pkg/power_management/power_management_extension_macos.cc ('k') | src/shared/assert.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698