Commit 7333de69 authored by Leonard Grey's avatar Leonard Grey Committed by Commit Bot

[Mac stack sampler] Re-enable stack sampler on Canary and unbranded builds

The impact on browser tests runtime should be fixed by
https://chromium-review.googlesource.com/c/571277

Bug: 531673
Change-Id: Ie60229d1f26c587a1ef092b99d3412cc8235488d
Reviewed-on: https://chromium-review.googlesource.com/574868Reviewed-by: default avatarNico Weber <thakis@chromium.org>
Reviewed-by: default avatarMike Wittman <wittman@chromium.org>
Commit-Queue: Leonard Grey <lgrey@chromium.org>
Cr-Commit-Position: refs/heads/master@{#487252}
parent 68b11fe6
...@@ -30,8 +30,12 @@ bool IsProfilerSupported() { ...@@ -30,8 +30,12 @@ bool IsProfilerSupported() {
return true; return true;
#endif #endif
#elif defined(OS_MACOSX) #elif defined(OS_MACOSX)
// Disabled due to suspected CQ impact: crbug.com/723108#c23 // Only run on canary for now.
return false; #if defined(GOOGLE_CHROME_BUILD)
return chrome::GetChannel() == version_info::Channel::CANARY;
#else
return true;
#endif
#else #else
return false; return false;
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment