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

Side by Side Diff: remoting/client/ios/chromiumoting/BUILD.gn

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 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//build/mac/tweak_info_plist.gni")
6 import("//build/config/ios/rules.gni")
7 import("//build/config/chrome_build.gni")
8
9 group("all") {
10 testonly = true
11
12 deps = [
13 ":chromiumoting",
14 ]
15 }
16
17 source_set("main") {
18 sources = [
19 "app_delegate.h",
20 "app_delegate.mm",
21 "example_view_controller.h",
22 "example_view_controller.mm",
23 "main.mm",
24 ]
25
26 deps = [
27 "//base",
28 "//remoting/base",
29 "//remoting/client",
30 "//remoting/protocol",
31 "//ui/base",
32 "//ui/gfx",
33 "//ui/resources",
34 ]
35
36 configs += [ "//build/config/compiler:enable_arc" ]
37 }
38
39 tweak_info_plist("tweak_info_plist") {
40 info_plist = "//remoting/client/ios/chromiumoting/resources/Info.plist"
41 args = [ "--platform=ios" ]
42 }
43
44 ios_app_bundle("chromiumoting") {
45 output_name = "chromiumoting"
46
47 entitlements_path = "resources/Chromiumoting.entitlements"
48 info_plist_target = ":tweak_info_plist"
49
50 libs = [
51 "Accelerate.framework",
52 "AudioToolbox.framework",
53 "CoreAudio.framework",
54 "CoreData.framework",
55 "CoreMIDI.framework",
56 "CoreVideo.framework",
57 "GLKit.framework",
58 "OpenGLES.framework",
59 "Webkit.framework",
60 "SafariServices.framework",
61 "SystemConfiguration.framework",
62 ]
63
64 deps = [
65 ":main",
66
67 # "//remoting/client/ios/chromiumoting/resources:icons",
68 "//base",
69 "//remoting/client:opengl_renderer",
70 "//remoting/client/ios/display",
71 ]
72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698