OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 ios_app_script = "//build/config/ios/ios_app.py" | 5 ios_app_script = "//build/config/ios/ios_app.py" |
6 | 6 |
7 template("code_sign_ios") { | 7 template("code_sign_ios") { |
8 assert(defined(invoker.entitlements_path), | 8 assert(defined(invoker.entitlements_path), |
9 "The path to the entitlements .xcent file") | 9 "The path to the entitlements .xcent file") |
10 assert(defined(invoker.identity), "The code signing identity") | 10 assert(defined(invoker.identity), "The code signing identity") |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 "cflags", | 100 "cflags", |
101 "cflags_c", | 101 "cflags_c", |
102 "cflags_cc", | 102 "cflags_cc", |
103 "cflags_objc", | 103 "cflags_objc", |
104 "cflags_objcc", | 104 "cflags_objcc", |
105 "configs", | 105 "configs", |
106 "check_includes", | 106 "check_includes", |
107 "data", | 107 "data", |
108 "data_deps", | 108 "data_deps", |
109 "defines", | 109 "defines", |
110 "forward_dependent_configs_from", | |
111 "include_dirs", | 110 "include_dirs", |
112 "ldflags", | 111 "ldflags", |
113 "public", | 112 "public", |
114 "public_configs", | 113 "public_configs", |
115 "public_deps", | 114 "public_deps", |
116 "sources", | 115 "sources", |
117 ]) | 116 ]) |
118 | 117 |
119 if (defined(invoker.libs)) { | 118 if (defined(invoker.libs)) { |
120 libs = invoker.libs | 119 libs = invoker.libs |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 group(target_name) { | 182 group(target_name) { |
184 deps = [ | 183 deps = [ |
185 ":$plist_gen_target_name", | 184 ":$plist_gen_target_name", |
186 ":$bin_gen_target_name", | 185 ":$bin_gen_target_name", |
187 ] | 186 ] |
188 if (invoker.code_signing_identity != "") { | 187 if (invoker.code_signing_identity != "") { |
189 deps += [ ":$code_sign_gen_target_name" ] | 188 deps += [ ":$code_sign_gen_target_name" ] |
190 } | 189 } |
191 } | 190 } |
192 } | 191 } |
OLD | NEW |