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

Side by Side Diff: testing/test.gni

Issue 1801833002: Update iOS GN templates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | « build/config/ios/rules.gni ('k') | no next file » | 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 # ============================================================================== 5 # ==============================================================================
6 # TEST SETUP 6 # TEST SETUP
7 # ============================================================================== 7 # ==============================================================================
8 8
9 # Define a test as an executable (or apk on Android) with the "testonly" flag 9 # Define a test as an executable (or apk on Android) with the "testonly" flag
10 # set. 10 # set.
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 "cflags_objc", 160 "cflags_objc",
161 "cflags_objcc", 161 "cflags_objcc",
162 "check_includes", 162 "check_includes",
163 "configs", 163 "configs",
164 "data", 164 "data",
165 "data_deps", 165 "data_deps",
166 "defines", 166 "defines",
167 "include_dirs", 167 "include_dirs",
168 "ldflags", 168 "ldflags",
169 "libs", 169 "libs",
170 "output_extension",
171 "output_name",
172 "public", 170 "public",
173 "public_configs", 171 "public_configs",
174 "public_deps", 172 "public_deps",
175 "sources", 173 "sources",
176 "visibility", 174 "visibility",
177 ]) 175 ])
178 176
179 if (defined(invoker.deps)) { 177 if (defined(invoker.deps)) {
180 deps = invoker.deps 178 deps = invoker.deps
181 } else { 179 } else {
(...skipping 29 matching lines...) Expand all
211 # TODO(GYP): Delete this after we've converted everything to GN. 209 # TODO(GYP): Delete this after we've converted everything to GN.
212 # The _run targets exist only for compatibility with GYP. 210 # The _run targets exist only for compatibility with GYP.
213 group("${target_name}_run") { 211 group("${target_name}_run") {
214 testonly = true 212 testonly = true
215 deps = [ 213 deps = [
216 ":$main_target_name", 214 ":$main_target_name",
217 ] 215 ]
218 } 216 }
219 } 217 }
220 } 218 }
OLDNEW
« no previous file with comments | « build/config/ios/rules.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698