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

Unified Diff: remoting/remoting_version.gni

Issue 2555803002: Adding the iOS app and integration example with GlRenderer. (Closed)
Patch Set: cleaning up includes. Created 3 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: remoting/remoting_version.gni
diff --git a/remoting/remoting_version.gni b/remoting/remoting_version.gni
index 8a0df67463f101465406c2847f643707cb7a314c..3dad3af4f54b0bdc97c1cda76ec65b23f6262514 100644
--- a/remoting/remoting_version.gni
+++ b/remoting/remoting_version.gni
@@ -45,6 +45,13 @@ if (is_mac) {
_template += "uninstaller_bundle_id = \"@MAC_UNINSTALLER_BUNDLE_ID@\""
}
+if (is_ios) {
+ _template += "ios_bundle_id = \"@IOS_BUNDLE_ID@\""
+ _template += "ios_display_name = \"@IOS_DISPLAY_NAME@\""
+ _template += "ios_exec_name = \"@IOS_EXEC_NAME@\""
+ _template += "ios_product_name = \"@IOS_PRODUCT_NAME@\""
+}
+
_result = exec_script(_version_py_abspath,
[
"-f",
@@ -89,3 +96,10 @@ if (is_mac) {
[ "$host_uninstaller_name" ],
"trim string")
}
+
+if (is_ios) {
+ remoting_ios_bundle_id = _result.ios_bundle_id
+ remoting_ios_display_name = _result.ios_display_name
+ remoting_ios_executable_name = _result.ios_exec_name
+ remoting_ios_product_name = _result.ios_product_name
+}

Powered by Google App Engine
This is Rietveld 408576698