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

Unified Diff: remoting/client/ios/chromiumoting/README.md

Issue 2555803002: Adding the iOS app and integration example with GlRenderer. (Closed)
Patch Set: Adjusting how gl_renderer draws layers and added a demo app for CRD iOS. Created 4 years 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/client/ios/chromiumoting/README.md
diff --git a/remoting/client/ios/chromiumoting/README.md b/remoting/client/ios/chromiumoting/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..ff0dc1b93fba3d0b0d5358c9a50203596cf4f477
--- /dev/null
+++ b/remoting/client/ios/chromiumoting/README.md
@@ -0,0 +1,38 @@
+### Chromiumoting
Sergey Ulanov 2016/12/19 23:50:21 Can this be split into a separate CL? This CL is t
+
+This is intended to be a demo app of the parts remoting app that are opensourced inside of chromium.
+This is a work in progress.
+
+To get started,
+
+'''
+$ gn args out/Default
+'''
+
+and add
+
+'''
+enable_remoting=true
+enable_webrtc=true
+
+target_os = "ios"
+
+mac_sdk_min = "10.11"
+is_debug = true
+
+root_extra_deps = [ "//remoting/client/ios:all", "//remoting/client/ios/chromiumoting:all" ]
+'''
+
+Then build with,
+
+'''
+ninja -C out/Default remoting/client/ios/chromiumoting
+'''
+
+To generate an xcode project,
+
+'''
+$ gn gen out/Default --ide=xcode
+'''
+
+and open `out/Default/all.xcworkspace`, select chromiumoting.

Powered by Google App Engine
This is Rietveld 408576698