| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/ios/rules.gni") | 6 import("//build/config/ios/rules.gni") |
| 7 import("//build/mac/tweak_info_plist.gni") | 7 import("//build/mac/tweak_info_plist.gni") |
| 8 import("//build/util/process_version.gni") | 8 import("//build/util/process_version.gni") |
| 9 import("//remoting/build/config/remoting_build.gni") | 9 import("//remoting/build/config/remoting_build.gni") |
| 10 | 10 |
| 11 group("all") { | 11 group("all") { |
| 12 testonly = true | 12 testonly = true |
| 13 | 13 |
| 14 deps = [ | 14 deps = [ |
| 15 ":ios_remoting_app", | 15 ":ios_remoting_app", |
| 16 ] | 16 ] |
| 17 } | 17 } |
| 18 | 18 |
| 19 source_set("main") { | 19 source_set("main") { |
| 20 sources = [ | 20 sources = [ |
| 21 "app_delegate.h", | 21 "app_delegate.h", |
| 22 "app_delegate.mm", | 22 "app_delegate.mm", |
| 23 "client_connection_view_controller.h", |
| 24 "client_connection_view_controller.mm", |
| 23 "host_collection_view_cell.h", | 25 "host_collection_view_cell.h", |
| 24 "host_collection_view_cell.mm", | 26 "host_collection_view_cell.mm", |
| 25 "host_collection_view_controller.h", | 27 "host_collection_view_controller.h", |
| 26 "host_collection_view_controller.mm", | 28 "host_collection_view_controller.mm", |
| 27 "host_view_controller.h", | 29 "host_view_controller.h", |
| 28 "host_view_controller.mm", | 30 "host_view_controller.mm", |
| 29 "main.mm", | 31 "main.mm", |
| 30 "pin_entry_view_controller.h", | 32 "pin_entry_view.h", |
| 31 "pin_entry_view_controller.mm", | 33 "pin_entry_view.mm", |
| 32 "remoting_settings_view_controller.h", | 34 "remoting_settings_view_controller.h", |
| 33 "remoting_settings_view_controller.mm", | 35 "remoting_settings_view_controller.mm", |
| 34 "remoting_view_controller.h", | 36 "remoting_view_controller.h", |
| 35 "remoting_view_controller.mm", | 37 "remoting_view_controller.mm", |
| 36 ] | 38 ] |
| 37 | 39 |
| 38 deps = [ | 40 deps = [ |
| 39 "//base", | 41 "//base", |
| 40 "//google_apis", | 42 "//google_apis", |
| 41 "//remoting/base", | 43 "//remoting/base", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "//remoting/client/ios/app/resources:remoting_icons", | 99 "//remoting/client/ios/app/resources:remoting_icons", |
| 98 "//remoting/client/ios/display", | 100 "//remoting/client/ios/display", |
| 99 ] | 101 ] |
| 100 | 102 |
| 101 bundle_deps = [ ":launchscreen_storyboard" ] | 103 bundle_deps = [ ":launchscreen_storyboard" ] |
| 102 } | 104 } |
| 103 | 105 |
| 104 bundle_data_ib_file("launchscreen_storyboard") { | 106 bundle_data_ib_file("launchscreen_storyboard") { |
| 105 source = "resources/LaunchScreen.storyboard" | 107 source = "resources/LaunchScreen.storyboard" |
| 106 } | 108 } |
| OLD | NEW |