We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dc2f9fb + d96a1b6 commit 4d3f551Copy full SHA for 4d3f551
BUILD.gn
@@ -389,10 +389,15 @@ if (is_mac) {
389
info_plist_target = ":brave_app_plist"
390
391
extra_substitutions = [
392
- "CHROMIUM_BUNDLE_ID=$chrome_mac_bundle_id.$brave_channel",
393
"CHROMIUM_SHORT_NAME=$chrome_product_short_name",
394
"CHROMIUM_CREATOR=$chrome_mac_creator_code",
395
]
+ # brave_channel is an empty string for release
396
+ if (brave_channel == "") {
397
+ extra_substitutions += ["CHROMIUM_BUNDLE_ID=$chrome_mac_bundle_id"]
398
+ } else {
399
+ extra_substitutions += ["CHROMIUM_BUNDLE_ID=$chrome_mac_bundle_id.$brave_channel"]
400
+ }
401
402
sources = [
403
"//chrome/app/chrome_exe_main_mac.cc",
0 commit comments