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/client/ios/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 side-by-side diff with in-line comments
Download patch
Index: remoting/client/ios/BUILD.gn
diff --git a/remoting/client/ios/BUILD.gn b/remoting/client/ios/BUILD.gn
index 2e9ee821506b3668175918bc7ce4a9f3f3c328fa..4c664806a9ab5275268b65d6eae45c70d20d2f3c 100644
--- a/remoting/client/ios/BUILD.gn
+++ b/remoting/client/ios/BUILD.gn
@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//remoting/build/config/remoting_build.gni")
+
group("all") {
testonly = true
@@ -34,6 +36,7 @@ source_set("main") {
"//base",
"//remoting/base",
"//remoting/client",
+ "//remoting/client/ios/bridge",
"//remoting/protocol",
"//third_party/google_toolbox_for_mac",
"//ui/base",
@@ -46,8 +49,14 @@ source_set("main") {
source_set("ios_core") {
sources = [
+ "app_runtime.cc",
+ "app_runtime.h",
+ "client_gestures.h",
+ "client_gestures.mm",
"host.h",
"host.mm",
+ "host_preferences.h",
+ "host_preferences.mm",
"key_input.h",
"key_input.mm",
"key_map_us.h",
@@ -55,6 +64,10 @@ source_set("ios_core") {
"utility.mm",
]
+ if (!is_chrome_branded) {
+ sources += [ "host_preferences_chromium.mm" ]
+ }
+
public_deps = [
"//third_party/webrtc/base:rtc_base",
"//third_party/webrtc/modules/desktop_capture:primitives",
@@ -62,6 +75,7 @@ source_set("ios_core") {
deps = [
"//base",
+ "//remoting/protocol",
]
libs = [

Powered by Google App Engine
This is Rietveld 408576698