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("//remoting/ios/app/remoting_ios_tmpl.gni") | 5 import("//remoting/ios/app/remoting_ios_tmpl.gni") |
6 | 6 |
7 group("all") { | 7 group("all") { |
8 testonly = true | 8 testonly = true |
9 | 9 |
10 deps = [ | 10 deps = [ |
(...skipping 16 matching lines...) Expand all Loading... |
27 "host_collection_view_controller.h", | 27 "host_collection_view_controller.h", |
28 "host_collection_view_controller.mm", | 28 "host_collection_view_controller.mm", |
29 "host_view_controller.h", | 29 "host_view_controller.h", |
30 "host_view_controller.mm", | 30 "host_view_controller.mm", |
31 "pin_entry_view.h", | 31 "pin_entry_view.h", |
32 "pin_entry_view.mm", | 32 "pin_entry_view.mm", |
33 "remoting_theme.h", | 33 "remoting_theme.h", |
34 "remoting_theme.mm", | 34 "remoting_theme.mm", |
35 "remoting_view_controller.h", | 35 "remoting_view_controller.h", |
36 "remoting_view_controller.mm", | 36 "remoting_view_controller.mm", |
| 37 "session_reconnect_view.h", |
| 38 "session_reconnect_view.mm", |
37 ] | 39 ] |
38 | 40 |
39 deps = [ | 41 deps = [ |
40 "//base", | 42 "//base", |
41 "//google_apis", | 43 "//google_apis", |
42 "//remoting/base", | 44 "//remoting/base", |
43 "//remoting/client", | 45 "//remoting/client", |
44 "//remoting/client/input", | 46 "//remoting/client/input", |
45 "//remoting/ios:ios_core", | 47 "//remoting/ios:ios_core", |
46 "//remoting/ios/app/settings", | 48 "//remoting/ios/app/settings", |
(...skipping 23 matching lines...) Expand all Loading... |
70 "//remoting/ios/app/resources:system_icons", | 72 "//remoting/ios/app/resources:system_icons", |
71 ] | 73 ] |
72 configs += [ "//build/config/compiler:enable_arc" ] | 74 configs += [ "//build/config/compiler:enable_arc" ] |
73 } | 75 } |
74 | 76 |
75 ios_remoting_app_tmpl("ios_remoting_app") { | 77 ios_remoting_app_tmpl("ios_remoting_app") { |
76 output_name = "chromoting" | 78 output_name = "chromoting" |
77 entitlements_path = "resources/Remoting.entitlements" | 79 entitlements_path = "resources/Remoting.entitlements" |
78 remoting_source_set = ":main" | 80 remoting_source_set = ":main" |
79 } | 81 } |
OLD | NEW |