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

Unified Diff: pylib/gyp/generator/scons.py

Issue 5670002: Remove the 'test' (gtest) knowledge and instead support the generic run_as sy... (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: '' Created 10 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pylib/gyp/generator/msvs.py ('k') | pylib/gyp/generator/xcode.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pylib/gyp/generator/scons.py
===================================================================
--- pylib/gyp/generator/scons.py (revision 861)
+++ pylib/gyp/generator/scons.py (working copy)
@@ -530,10 +530,8 @@
fp.write(fmt % (repr(dest), repr(f)))
fp.write('target_files.extend(_outputs)\n')
- if spec.get('run_as') or int(spec.get('test', 0)):
- run_as = spec.get('run_as', {
- 'action' : ['$TARGET_NAME', '--gtest_print_time'],
- })
+ run_as = spec.get('run_as')
+ if run_as:
action = run_as.get('action', [])
working_directory = run_as.get('working_directory')
if not working_directory:
@@ -564,7 +562,7 @@
fp.write(' env.Requires(prerequisite, dependencies)\n')
fp.write('env.Requires(gyp_target, prerequisites)\n')
- if spec.get('run_as', 0) or int(spec.get('test', 0)):
+ if run_as:
fp.write(_run_as_template_suffix % {
'target_name': target_name,
})
« no previous file with comments | « pylib/gyp/generator/msvs.py ('k') | pylib/gyp/generator/xcode.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698