Skip to content

Commit 2de42ca

Browse files
kraskevichprimiano
andauthored
Fix Chromium build - set is_freebsd variable (#3565)
#3467 broke Chromium builds because Chromium intentionally doesn't define is_freebsd. Example failure: https://chromium-review.googlesource.com/c/chromium/src/+/7122439 Welcome to Perfetto! Make sure your PR has a bug/issue attached or has at least a clear description of the problem you are trying to fix. For more details please see https://perfetto.dev/docs/contributing/getting-started --------- Co-authored-by: Primiano Tucci <[email protected]>
1 parent 4af52ca commit 2de42ca

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

gn/perfetto.gni

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ if (!defined(is_qnx)) {
7878
is_qnx = false
7979
}
8080

81+
if (!defined(is_freebsd)) {
82+
is_freebsd = false
83+
}
84+
8185
declare_args() {
8286
# The Android blueprint file generator set this to true (as well as
8387
# is_perfetto_build_generator). This is just about being built in the

0 commit comments

Comments
 (0)