| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 | 58 |
| 59 configs += [ "//build/config/compiler:enable_arc" ] | 59 configs += [ "//build/config/compiler:enable_arc" ] |
| 60 } | 60 } |
| 61 | 61 |
| 62 source_set("main") { | 62 source_set("main") { |
| 63 sources = [ | 63 sources = [ |
| 64 "main.mm", | 64 "main.mm", |
| 65 ] | 65 ] |
| 66 deps = [ | 66 deps = [ |
| 67 ":common_source_set", | 67 ":common_source_set", |
| 68 "//remoting/ios/app/resources:system_icons", |
| 68 ] | 69 ] |
| 69 configs += [ "//build/config/compiler:enable_arc" ] | 70 configs += [ "//build/config/compiler:enable_arc" ] |
| 70 } | 71 } |
| 71 | 72 |
| 72 ios_remoting_app_tmpl("ios_remoting_app") { | 73 ios_remoting_app_tmpl("ios_remoting_app") { |
| 73 output_name = "chromoting" | 74 output_name = "chromoting" |
| 74 entitlements_path = "resources/Remoting.entitlements" | 75 entitlements_path = "resources/Remoting.entitlements" |
| 75 remoting_source_set = ":main" | 76 remoting_source_set = ":main" |
| 76 } | 77 } |
| OLD | NEW |