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

Unified Diff: remoting/client/ios/app/BUILD.gn

Issue 2802363002: Update build files and app delegate for new changes to app support files. (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « remoting/client/ios/BUILD.gn ('k') | remoting/client/ios/app/app_delegate.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/ios/app/BUILD.gn
diff --git a/remoting/client/ios/app/BUILD.gn b/remoting/client/ios/app/BUILD.gn
index 2e13eefb61f5006f97e2b287967b0f9326eff925..f775b25b1c5ff2dc5a6ee525f555875c1347e67d 100644
--- a/remoting/client/ios/app/BUILD.gn
+++ b/remoting/client/ios/app/BUILD.gn
@@ -2,9 +2,9 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import("//build/mac/tweak_info_plist.gni")
-import("//build/config/ios/rules.gni")
import("//build/config/chrome_build.gni")
+import("//build/config/ios/rules.gni")
+import("//build/mac/tweak_info_plist.gni")
import("//build/util/process_version.gni")
import("//remoting/build/config/remoting_build.gni")
@@ -20,21 +20,37 @@ source_set("main") {
sources = [
"app_delegate.h",
"app_delegate.mm",
- "example_view_controller.h",
- "example_view_controller.mm",
+ "host_collection_view_cell.h",
+ "host_collection_view_cell.mm",
+ "host_collection_view_controller.h",
+ "host_collection_view_controller.mm",
+ "host_view_controller.h",
+ "host_view_controller.mm",
"main.mm",
+ "pin_entry_view_controller.h",
+ "pin_entry_view_controller.mm",
+ "remoting_settings_view_controller.h",
+ "remoting_settings_view_controller.mm",
+ "remoting_view_controller.h",
+ "remoting_view_controller.mm",
]
deps = [
"//base",
+ "//google_apis",
"//remoting/base",
"//remoting/client",
+ "//remoting/client/ios:ios_core",
"//remoting/protocol",
"//ui/base",
"//ui/gfx",
"//ui/resources",
]
+ public_deps = [
+ "//ios/third_party/material_components_ios",
+ ]
+
configs += [ "//build/config/compiler:enable_arc" ]
}
@@ -76,6 +92,15 @@ ios_app_bundle("ios_remoting_app") {
deps = [
":main",
"//base",
+ "//remoting/client/ios/app/resources:assets",
+ "//remoting/client/ios/app/resources:launchscreen_assets",
+ "//remoting/client/ios/app/resources:remoting_icons",
"//remoting/client/ios/display",
]
+
+ bundle_deps = [ ":launchscreen_storyboard" ]
+}
+
+bundle_data_ib_file("launchscreen_storyboard") {
+ source = "resources/LaunchScreen.storyboard"
}
« no previous file with comments | « remoting/client/ios/BUILD.gn ('k') | remoting/client/ios/app/app_delegate.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698