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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 ### Chromiumoting
Sergey Ulanov 2016/12/19 23:50:21 Can this be split into a separate CL? This CL is t
2
3 This is intended to be a demo app of the parts remoting app that are opensourced inside of chromium.
4 This is a work in progress.
5
6 To get started,
7
8 '''
9 $ gn args out/Default
10 '''
11
12 and add
13
14 '''
15 enable_remoting=true
16 enable_webrtc=true
17
18 target_os = "ios"
19
20 mac_sdk_min = "10.11"
21 is_debug = true
22
23 root_extra_deps = [ "//remoting/client/ios:all", "//remoting/client/ios/chromium oting:all" ]
24 '''
25
26 Then build with,
27
28 '''
29 ninja -C out/Default remoting/client/ios/chromiumoting
30 '''
31
32 To generate an xcode project,
33
34 '''
35 $ gn gen out/Default --ide=xcode
36 '''
37
38 and open `out/Default/all.xcworkspace`, select chromiumoting.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698