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

Side by Side Diff: build/config/ios/rules.gni

Issue 1361633004: GN: Do not use forward_dependent_configs_from variable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync fix Created 5 years, 3 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
« no previous file with comments | « no previous file | mojo/public/mojo_application.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | mojo/public/mojo_application.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698