Skip to content

Commit

Permalink
Use correct App ID for release channel
Browse files Browse the repository at this point in the history
  • Loading branch information
bbondy committed Oct 3, 2018
1 parent 41f4901 commit d96a1b6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -389,10 +389,15 @@ if (is_mac) {
info_plist_target = ":brave_app_plist"

extra_substitutions = [
"CHROMIUM_BUNDLE_ID=$chrome_mac_bundle_id.$brave_channel",
"CHROMIUM_SHORT_NAME=$chrome_product_short_name",
"CHROMIUM_CREATOR=$chrome_mac_creator_code",
]
# brave_channel is an empty string for release
if (brave_channel == "") {
extra_substitutions += ["CHROMIUM_BUNDLE_ID=$chrome_mac_bundle_id"]
} else {
extra_substitutions += ["CHROMIUM_BUNDLE_ID=$chrome_mac_bundle_id.$brave_channel"]
}

sources = [
"//chrome/app/chrome_exe_main_mac.cc",
Expand Down

0 comments on commit d96a1b6

Please sign in to comment.