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 10 matching lines...) Expand all Loading... |
21 "client_connection_view_controller.h", | 21 "client_connection_view_controller.h", |
22 "client_connection_view_controller.mm", | 22 "client_connection_view_controller.mm", |
23 "host_collection_header_view.h", | 23 "host_collection_header_view.h", |
24 "host_collection_header_view.mm", | 24 "host_collection_header_view.mm", |
25 "host_collection_view_cell.h", | 25 "host_collection_view_cell.h", |
26 "host_collection_view_cell.mm", | 26 "host_collection_view_cell.mm", |
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 "main.mm", | |
32 "pin_entry_view.h", | 31 "pin_entry_view.h", |
33 "pin_entry_view.mm", | 32 "pin_entry_view.mm", |
34 "remoting_theme.h", | 33 "remoting_theme.h", |
35 "remoting_theme.mm", | 34 "remoting_theme.mm", |
36 "remoting_view_controller.h", | 35 "remoting_view_controller.h", |
37 "remoting_view_controller.mm", | 36 "remoting_view_controller.mm", |
38 ] | 37 ] |
39 | 38 |
40 deps = [ | 39 deps = [ |
41 "//base", | 40 "//base", |
(...skipping 13 matching lines...) Expand all Loading... |
55 public_deps = [ | 54 public_deps = [ |
56 "//ios/third_party/material_components_ios", | 55 "//ios/third_party/material_components_ios", |
57 ] | 56 ] |
58 | 57 |
59 configs += [ "//build/config/compiler:enable_arc" ] | 58 configs += [ "//build/config/compiler:enable_arc" ] |
60 } | 59 } |
61 | 60 |
62 source_set("main") { | 61 source_set("main") { |
63 sources = [ | 62 sources = [ |
64 "app_view_controller_chromium.mm", | 63 "app_view_controller_chromium.mm", |
| 64 "main.mm", |
65 "remoting_menu_view_controller.h", | 65 "remoting_menu_view_controller.h", |
66 "remoting_menu_view_controller.mm", | 66 "remoting_menu_view_controller.mm", |
67 ] | 67 ] |
68 deps = [ | 68 deps = [ |
69 ":common_source_set", | 69 ":common_source_set", |
70 "//remoting/ios/app/resources:system_icons", | 70 "//remoting/ios/app/resources:system_icons", |
71 ] | 71 ] |
72 configs += [ "//build/config/compiler:enable_arc" ] | 72 configs += [ "//build/config/compiler:enable_arc" ] |
73 } | 73 } |
74 | 74 |
75 ios_remoting_app_tmpl("ios_remoting_app") { | 75 ios_remoting_app_tmpl("ios_remoting_app") { |
76 output_name = "chromoting" | 76 output_name = "chromoting" |
77 entitlements_path = "resources/Remoting.entitlements" | 77 entitlements_path = "resources/Remoting.entitlements" |
78 remoting_source_set = ":main" | 78 remoting_source_set = ":main" |
79 } | 79 } |
OLD | NEW |