Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Unified Diff: chrome/android/channel.gni

Issue 863033004: Add com.chrome.work as supported channel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/channel.gni
diff --git a/chrome/android/channel.gni b/chrome/android/channel.gni
index 14e63a081775246942c8bf0d7fcd8f0dc663abc7..397f83aa236576ddd4c39fd073895e32d02fba55 100644
--- a/chrome/android/channel.gni
+++ b/chrome/android/channel.gni
@@ -3,12 +3,12 @@
# found in the LICENSE file.
declare_args() {
- # The channel to build on Android: stable, beta, dev, canary, or default.
- # "default" should be used on non-official builds.
+ # The channel to build on Android: stable, beta, dev, canary, work, or
+ # default. "default" should be used on non-official builds.
android_channel = "default"
}
assert(android_channel == "default" || android_channel == "canary" ||
android_channel == "dev" || android_channel == "beta" ||
- android_channel == "stable",
+ android_channel == "stable" || android_channel == "work",
"Invalid channel: " + android_channel)

Powered by Google App Engine
This is Rietveld 408576698