| 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_view_controller.h", | 20 "app_view_controller.h", |
| 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_setup_footer_view.h", |
| 30 "host_setup_footer_view.mm", |
| 31 "host_setup_header_view.h", |
| 32 "host_setup_header_view.mm", |
| 33 "host_setup_view_cell.h", |
| 34 "host_setup_view_cell.mm", |
| 35 "host_setup_view_controller.h", |
| 36 "host_setup_view_controller.mm", |
| 29 "host_view_controller.h", | 37 "host_view_controller.h", |
| 30 "host_view_controller.mm", | 38 "host_view_controller.mm", |
| 31 "pin_entry_view.h", | 39 "pin_entry_view.h", |
| 32 "pin_entry_view.mm", | 40 "pin_entry_view.mm", |
| 33 "remoting_theme.h", | 41 "remoting_theme.h", |
| 34 "remoting_theme.mm", | 42 "remoting_theme.mm", |
| 35 "remoting_view_controller.h", | 43 "remoting_view_controller.h", |
| 36 "remoting_view_controller.mm", | 44 "remoting_view_controller.mm", |
| 37 ] | 45 ] |
| 38 | 46 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 "//remoting/ios/app/resources:system_icons", | 78 "//remoting/ios/app/resources:system_icons", |
| 71 ] | 79 ] |
| 72 configs += [ "//build/config/compiler:enable_arc" ] | 80 configs += [ "//build/config/compiler:enable_arc" ] |
| 73 } | 81 } |
| 74 | 82 |
| 75 ios_remoting_app_tmpl("ios_remoting_app") { | 83 ios_remoting_app_tmpl("ios_remoting_app") { |
| 76 output_name = "chromoting" | 84 output_name = "chromoting" |
| 77 entitlements_path = "resources/Remoting.entitlements" | 85 entitlements_path = "resources/Remoting.entitlements" |
| 78 remoting_source_set = ":main" | 86 remoting_source_set = ":main" |
| 79 } | 87 } |
| OLD | NEW |