Skip to content

Commit

Permalink
Merge pull request #292 from brave/fix_linux_debug_build
Browse files Browse the repository at this point in the history
Fix linux debug build
  • Loading branch information
simonhong authored Jul 28, 2018
2 parents 7fa5b69 + 19336b8 commit c0f1c3a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build/linux/channels.gni
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ if (brave_channel == "") {
linux_channel = linux_channel_dev
} else if (brave_channel == "nightly") {
linux_channel = brave_linux_channel_nightly
} else if (brave_channel == "development") {
# To avoid gn error, just fills with stable.
# This doesn't have meaning in debug build.
linux_channel = linux_channel_stable
} else {
assert(false, "Not supported channel name: $brave_channel")
}
Expand Down

0 comments on commit c0f1c3a

Please sign in to comment.