Skip to content

Commit

Permalink
Cherry pick PR #3074: Filter target base_profiler_test on mac (#3081)
Browse files Browse the repository at this point in the history
Refer to the original PR: #3074

Target base_profiler_support_library is not applicable on mac.

b/266705099

Co-authored-by: Max Zhang <[email protected]>
  • Loading branch information
cobalt-github-releaser-bot and maxz-lab authored Apr 25, 2024
1 parent c879d2e commit 183890a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion base/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -2942,7 +2942,8 @@ if (is_win && !is_starboard) {
}
}

if ((is_win && (current_cpu == "x64" || current_cpu == "arm64") && !is_starboard) || is_mac ||
if ((is_win && (current_cpu == "x64" || current_cpu == "arm64") && !is_starboard) ||
(is_mac && !is_starboard) ||
(is_android && (current_cpu == "arm" || current_cpu == "arm64")) ||
(is_chromeos && current_cpu == "x64")) {
# Must be a loadable module so that it can be loaded/unloaded at runtime
Expand Down

0 comments on commit 183890a

Please sign in to comment.