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

Unified Diff: remoting/remoting_options.gypi

Issue 1031203004: To avoid the requirement of defining unnecessary gyp variables for (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « remoting/app_remoting_webapp_build.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/remoting_options.gypi
diff --git a/remoting/remoting_options.gypi b/remoting/remoting_options.gypi
index 064a25121e040c218bf85922b059b5248c834047..47193629a3b7b56888ccd04b64e25dc51b75871e 100644
--- a/remoting/remoting_options.gypi
+++ b/remoting/remoting_options.gypi
@@ -27,5 +27,18 @@
'remoting_rdp_session%': 1,
'branding_path': '../remoting/branding_<(branding)',
+
+ # The ar_service_environment variable is used to define the target
+ # environment for the app being built.
+ # The allowed values are dev, test, staging, and prod.
+ 'conditions': [
+ ['buildtype == "Dev"', {
+ 'ar_service_environment%': 'dev',
+ }, { # buildtype != 'Dev'
+ # Non-dev build must have this set to 'prod'.
+ 'ar_service_environment': 'prod',
+ }],
+ ], # conditions
+
},
}
« no previous file with comments | « remoting/app_remoting_webapp_build.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698