Skip to content

Commit

Permalink
Filter target base_profiler_test on mac (#3074)
Browse files Browse the repository at this point in the history
Target base_profiler_support_library is not applicable on mac.

b/266705099
  • Loading branch information
maxz-lab committed Apr 25, 2024
1 parent 2ccd1d1 commit 97032a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion base/BUILD.gn
Expand Up @@ -2939,7 +2939,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 97032a3

Please sign in to comment.