| 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("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/ios/rules.gni") | 6 import("//build/config/ios/rules.gni") |
| 7 import("//build/mac/tweak_info_plist.gni") | 7 import("//build/mac/tweak_info_plist.gni") |
| 8 import("//build/util/process_version.gni") | 8 import("//build/util/process_version.gni") |
| 9 import("//remoting/build/config/remoting_build.gni") | 9 import("//remoting/build/config/remoting_build.gni") |
| 10 | 10 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 | 53 |
| 54 configs += [ "//build/config/compiler:enable_arc" ] | 54 configs += [ "//build/config/compiler:enable_arc" ] |
| 55 } | 55 } |
| 56 | 56 |
| 57 tweak_info_plist("tweak_info_plist") { | 57 tweak_info_plist("tweak_info_plist") { |
| 58 info_plist = "//remoting/client/ios/app/resources/Info.plist" | 58 info_plist = "//remoting/client/ios/app/resources/Info.plist" |
| 59 args = [ "--platform=ios" ] | 59 args = [ "--platform=ios" ] |
| 60 } | 60 } |
| 61 | 61 |
| 62 ios_app_bundle("ios_remoting_app") { | 62 ios_app_bundle("ios_remoting_app") { |
| 63 output_name = "remoting-ios" | 63 output_name = "$remoting_ios_executable_name" |
| 64 | 64 |
| 65 entitlements_path = "resources/Remoting.entitlements" | 65 entitlements_path = "resources/Remoting.entitlements" |
| 66 info_plist_target = ":tweak_info_plist" | 66 info_plist_target = ":tweak_info_plist" |
| 67 | 67 |
| 68 extra_substitutions = [ | 68 extra_substitutions = [ |
| 69 "BUNDLE_IDENTIFIER=$remoting_ios_bundle_id", | 69 "BUNDLE_IDENTIFIER=$remoting_ios_bundle_id", |
| 70 "DISPLAY_NAME=$remoting_ios_display_name", | 70 "DISPLAY_NAME=$remoting_ios_display_name", |
| 71 "EXECUTABLE_NAME=$remoting_ios_executable_name", | 71 "EXECUTABLE_NAME=$remoting_ios_executable_name", |
| 72 "MINIMUM_OS_VERSION=7.0", | 72 "MINIMUM_OS_VERSION=7.0", |
| 73 "PRODUCT_NAME=$remoting_ios_product_name", | 73 "PRODUCT_NAME=$remoting_ios_product_name", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 97 "//remoting/client/ios/app/resources:remoting_icons", | 97 "//remoting/client/ios/app/resources:remoting_icons", |
| 98 "//remoting/client/ios/display", | 98 "//remoting/client/ios/display", |
| 99 ] | 99 ] |
| 100 | 100 |
| 101 bundle_deps = [ ":launchscreen_storyboard" ] | 101 bundle_deps = [ ":launchscreen_storyboard" ] |
| 102 } | 102 } |
| 103 | 103 |
| 104 bundle_data_ib_file("launchscreen_storyboard") { | 104 bundle_data_ib_file("launchscreen_storyboard") { |
| 105 source = "resources/LaunchScreen.storyboard" | 105 source = "resources/LaunchScreen.storyboard" |
| 106 } | 106 } |
| OLD | NEW |