summaryrefslogtreecommitdiffstats
path: root/base/at_exit.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/at_exit.cc')
-rw-r--r--base/at_exit.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/at_exit.cc b/base/at_exit.cc
index c7daad4..cafe75b 100644
--- a/base/at_exit.cc
+++ b/base/at_exit.cc
@@ -22,7 +22,7 @@ static AtExitManager* g_top_manager = NULL;
AtExitManager::AtExitManager() : next_manager_(g_top_manager) {
// If multiple modules instantiate AtExitManagers they'll end up living in this
// module... they have to coexist.
-#if !defined(COMPONENT_BUILD)
+#if !defined(BASE_DLL)
DCHECK(!g_top_manager);
#endif
g_top_manager = this;