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

Side by Side Diff: tools/gn/gn.gyp

Issue 1534823002: tools/gn: delete generate_test_gn_data tool (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gyp build Created 4 years, 11 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 | « tools/gn/generate_test_gn_data.cc ('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 { 1 {
2 'variables': { 2 'variables': {
3 'chromium_code': 1, 3 'chromium_code': 1,
4 }, 4 },
5 'targets': [ 5 'targets': [
6 { 6 {
7 'target_name': 'gn_lib', 7 'target_name': 'gn_lib',
8 'type': 'static_library', 8 'type': 'static_library',
9 'dependencies': [ 9 'dependencies': [
10 '../../base/base.gyp:base', 10 '../../base/base.gyp:base',
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 'value_unittest.cc', 260 'value_unittest.cc',
261 'visibility_unittest.cc', 261 'visibility_unittest.cc',
262 ], 262 ],
263 'dependencies': [ 263 'dependencies': [
264 'gn_lib', 264 'gn_lib',
265 '../../base/base.gyp:run_all_unittests', 265 '../../base/base.gyp:run_all_unittests',
266 '../../base/base.gyp:test_support_base', 266 '../../base/base.gyp:test_support_base',
267 '../../testing/gtest.gyp:gtest', 267 '../../testing/gtest.gyp:gtest',
268 ], 268 ],
269 }, 269 },
270 {
271 'target_name': 'generate_test_gn_data',
272 'type': 'executable',
273 'sources': [
274 'generate_test_gn_data.cc',
275 ],
276 'dependencies': [
277 '../../base/base.gyp:base',
278 ],
279 }
280 ], 270 ],
281 'conditions': [ 271 'conditions': [
282 ['test_isolation_mode != "noop"', { 272 ['test_isolation_mode != "noop"', {
283 'targets': [ 273 'targets': [
284 { 274 {
285 'target_name': 'gn_unittests_run', 275 'target_name': 'gn_unittests_run',
286 'type': 'none', 276 'type': 'none',
287 'dependencies': [ 277 'dependencies': [
288 'gn_unittests', 278 'gn_unittests',
289 ], 279 ],
290 'includes': [ '../../build/isolate.gypi' ], 280 'includes': [ '../../build/isolate.gypi' ],
291 'sources': [ 'gn_unittests.isolate' ], 281 'sources': [ 'gn_unittests.isolate' ],
292 }, 282 },
293 ], 283 ],
294 }], 284 }],
295 ], 285 ],
296 } 286 }
OLDNEW
« no previous file with comments | « tools/gn/generate_test_gn_data.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698