Index: remoting/client/ios/app/BUILD.gn |
diff --git a/remoting/client/ios/app/BUILD.gn b/remoting/client/ios/app/BUILD.gn |
deleted file mode 100644 |
index 56f890a1bab1dc6eff2b52ae6501c67c07ae70f8..0000000000000000000000000000000000000000 |
--- a/remoting/client/ios/app/BUILD.gn |
+++ /dev/null |
@@ -1,108 +0,0 @@ |
-# Copyright 2017 The Chromium Authors. All rights reserved. |
-# Use of this source code is governed by a BSD-style license that can be |
-# found in the LICENSE file. |
- |
-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") |
- |
-group("all") { |
- testonly = true |
- |
- deps = [ |
- ":ios_remoting_app", |
- ] |
-} |
- |
-source_set("main") { |
- sources = [ |
- "app_delegate.h", |
- "app_delegate.mm", |
- "client_connection_view_controller.h", |
- "client_connection_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.h", |
- "pin_entry_view.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" ] |
-} |
- |
-tweak_info_plist("tweak_info_plist") { |
- info_plist = "//remoting/client/ios/app/resources/Info.plist" |
- args = [ "--platform=ios" ] |
-} |
- |
-ios_app_bundle("ios_remoting_app") { |
- output_name = "$remoting_ios_executable_name" |
- |
- entitlements_path = "resources/Remoting.entitlements" |
- info_plist_target = ":tweak_info_plist" |
- |
- extra_substitutions = [ |
- "BUNDLE_IDENTIFIER=$remoting_ios_bundle_id", |
- "DISPLAY_NAME=$remoting_ios_display_name", |
- "EXECUTABLE_NAME=$remoting_ios_executable_name", |
- "MINIMUM_OS_VERSION=7.0", |
- "PRODUCT_NAME=$remoting_ios_product_name", |
- "VERSION_FULL=$remoting_version_full", |
- "VERSION_SHORT=$remoting_version_short", |
- ] |
- |
- libs = [ |
- "Accelerate.framework", |
- "AudioToolbox.framework", |
- "CoreAudio.framework", |
- "CoreData.framework", |
- "CoreMIDI.framework", |
- "CoreVideo.framework", |
- "GLKit.framework", |
- "OpenGLES.framework", |
- "Webkit.framework", |
- "SafariServices.framework", |
- "SystemConfiguration.framework", |
- ] |
- |
- 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" |
-} |