Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Side by Side Diff: remoting/ios/app/BUILD.gn

Issue 2937733003: [CRD iOS] Branching internal and external implementations (Closed)
Patch Set: Move some initialization code to AppDelegate Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "client_connection_view_controller.h", 20 "client_connection_view_controller.h",
21 "client_connection_view_controller.mm", 21 "client_connection_view_controller.mm",
22 "host_collection_header_view.h", 22 "host_collection_header_view.h",
23 "host_collection_header_view.mm", 23 "host_collection_header_view.mm",
24 "host_collection_view_cell.h", 24 "host_collection_view_cell.h",
25 "host_collection_view_cell.mm", 25 "host_collection_view_cell.mm",
26 "host_collection_view_controller.h", 26 "host_collection_view_controller.h",
27 "host_collection_view_controller.mm", 27 "host_collection_view_controller.mm",
28 "host_view_controller.h", 28 "host_view_controller.h",
29 "host_view_controller.mm", 29 "host_view_controller.mm",
30 "panel_view_controller.h",
31 "panel_view_controller.mm",
32 "panel_view_controller_chromium.h",
33 "panel_view_controller_chromium.mm",
30 "pin_entry_view.h", 34 "pin_entry_view.h",
31 "pin_entry_view.mm", 35 "pin_entry_view.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",
34 "remoting_theme.h", 41 "remoting_theme.h",
35 "remoting_theme.mm", 42 "remoting_theme.mm",
36 "remoting_view_controller.h", 43 "remoting_view_controller.h",
37 "remoting_view_controller.mm", 44 "remoting_view_controller.mm",
38 ] 45 ]
39 46
40 deps = [ 47 deps = [
41 "//base", 48 "//base",
(...skipping 25 matching lines...) Expand all
67 ":common_source_set", 74 ":common_source_set",
68 ] 75 ]
69 configs += [ "//build/config/compiler:enable_arc" ] 76 configs += [ "//build/config/compiler:enable_arc" ]
70 } 77 }
71 78
72 ios_remoting_app_tmpl("ios_remoting_app") { 79 ios_remoting_app_tmpl("ios_remoting_app") {
73 output_name = "chromoting" 80 output_name = "chromoting"
74 entitlements_path = "resources/Remoting.entitlements" 81 entitlements_path = "resources/Remoting.entitlements"
75 remoting_source_set = ":main" 82 remoting_source_set = ":main"
76 } 83 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698