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 = [ |
11 ":ios_remoting_app", | 11 ":ios_remoting_app", |
12 ] | 12 ] |
13 } | 13 } |
14 | 14 |
15 # source set to be used by both external and internal app. | 15 # source set to be used by both external and internal app. |
16 source_set("common_source_set") { | 16 source_set("common_source_set") { |
17 sources = [ | 17 sources = [ |
18 "app_delegate.h", | 18 "app_delegate.h", |
19 "app_delegate.mm", | 19 "app_delegate.mm", |
20 "app_initializer.cc", | |
21 "app_initializer.h", | |
20 "client_connection_view_controller.h", | 22 "client_connection_view_controller.h", |
21 "client_connection_view_controller.mm", | 23 "client_connection_view_controller.mm", |
22 "host_collection_header_view.h", | 24 "host_collection_header_view.h", |
23 "host_collection_header_view.mm", | 25 "host_collection_header_view.mm", |
24 "host_collection_view_cell.h", | 26 "host_collection_view_cell.h", |
25 "host_collection_view_cell.mm", | 27 "host_collection_view_cell.mm", |
26 "host_collection_view_controller.h", | 28 "host_collection_view_controller.h", |
27 "host_collection_view_controller.mm", | 29 "host_collection_view_controller.mm", |
28 "host_view_controller.h", | 30 "host_view_controller.h", |
29 "host_view_controller.mm", | 31 "host_view_controller.mm", |
30 "pin_entry_view.h", | 32 "pin_entry_view.h", |
31 "pin_entry_view.mm", | 33 "pin_entry_view.mm", |
34 "remoting_resource_factory.h", | |
35 "remoting_resource_factory.mm", | |
36 | |
37 # TODO(yuweih): Need to be moved under :main once the internal version is | |
38 # checked-in. | |
32 "remoting_menu_view_controller.h", | 39 "remoting_menu_view_controller.h", |
33 "remoting_menu_view_controller.mm", | 40 "remoting_menu_view_controller.mm", |
41 "remoting_resource_factory_external.h", | |
nicholss
2017/06/14 15:37:59
please change external to chromium
Yuwei
2017/06/15 07:02:08
Done.
| |
42 "remoting_resource_factory_external.mm", | |
34 "remoting_theme.h", | 43 "remoting_theme.h", |
35 "remoting_theme.mm", | 44 "remoting_theme.mm", |
36 "remoting_view_controller.h", | 45 "remoting_view_controller.h", |
37 "remoting_view_controller.mm", | 46 "remoting_view_controller.mm", |
38 ] | 47 ] |
39 | 48 |
40 deps = [ | 49 deps = [ |
41 "//base", | 50 "//base", |
42 "//google_apis", | 51 "//google_apis", |
43 "//remoting/base", | 52 "//remoting/base", |
(...skipping 23 matching lines...) Expand all Loading... | |
67 ":common_source_set", | 76 ":common_source_set", |
68 ] | 77 ] |
69 configs += [ "//build/config/compiler:enable_arc" ] | 78 configs += [ "//build/config/compiler:enable_arc" ] |
70 } | 79 } |
71 | 80 |
72 ios_remoting_app_tmpl("ios_remoting_app") { | 81 ios_remoting_app_tmpl("ios_remoting_app") { |
73 output_name = "chromoting" | 82 output_name = "chromoting" |
74 entitlements_path = "resources/Remoting.entitlements" | 83 entitlements_path = "resources/Remoting.entitlements" |
75 remoting_source_set = ":main" | 84 remoting_source_set = ":main" |
76 } | 85 } |
OLD | NEW |