summaryrefslogtreecommitdiffstats
path: root/base/debug
diff options
context:
space:
mode:
authoryurys@chromium.org <yurys@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-13 08:19:28 +0000
committeryurys@chromium.org <yurys@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-13 08:19:28 +0000
commit699d6248ec0121a5513378ec4875492d9f91ca97 (patch)
tree5fc1173f7b378784f387b9778211af453c71bf9d /base/debug
parent785df74a997943076bbb68bf7dc8fba9f4347e44 (diff)
downloadchromium_src-699d6248ec0121a5513378ec4875492d9f91ca97.zip
chromium_src-699d6248ec0121a5513378ec4875492d9f91ca97.tar.gz
chromium_src-699d6248ec0121a5513378ec4875492d9f91ca97.tar.bz2
Revert "Add COMPONENT_BUILD global define. "
The change broke compilation on Linux Builder (dbg)(shared): http://build.chromium.org/p/chromium/builders/Linux%20Builder%20%28dbg%29%28shared%29/builds/3365/steps/compile/logs/stdio TBR=darin BUG=None TEST=None Review URL: http://codereview.chromium.org/7352014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92329 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/debug')
-rw-r--r--base/debug/debug_on_start_win.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/debug/debug_on_start_win.h b/base/debug/debug_on_start_win.h
index 86d4721..4a5c120 100644
--- a/base/debug/debug_on_start_win.h
+++ b/base/debug/debug_on_start_win.h
@@ -27,7 +27,7 @@ namespace debug {
// There is no way for this code, as currently implemented, to work across DLLs.
// TODO(rvargas): It looks like we really don't use this code, at least not for
// Chrome. Figure out if it's really worth implementing something simpler.
-#if !defined(COMPONENT_BUILD)
+#if !defined(BASE_DLL)
// Debug on start functions and data.
class DebugOnStart {
@@ -74,7 +74,7 @@ DECLSPEC_SELECTANY DebugOnStart::PIFV debug_on_start = &DebugOnStart::Init;
#endif // _WIN64
-#endif // defined(COMPONENT_BUILD)
+#endif // defined(BASE_DLL)
} // namespace debug
} // namespace base