From 7e52297125e0d5ddcc59ffb435d84b61278d51c8 Mon Sep 17 00:00:00 2001 From: "maruel@chromium.org" Date: Fri, 7 Sep 2012 18:49:47 +0000 Subject: Remove references to trace_child_process.py by generating it on the fly instead. This removes any dependency from trace_inputs.py on any other script. This also fixes the fact that 'trace_child_process.py' was a confusing script in itself. Fix trace_inputs_smoke_tests.py on Windows. R=csharp@chromium.org NOTRY=true BUG= Review URL: https://chromiumcodereview.appspot.com/10914144 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155437 0039d316-1c4b-4281-b951-d872f2087c98 --- tools/isolate/README.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/isolate/README.py') diff --git a/tools/isolate/README.py b/tools/isolate/README.py index 863e0fe..2cd4cca 100755 --- a/tools/isolate/README.py +++ b/tools/isolate/README.py @@ -33,7 +33,7 @@ import sys def main(): for i in sorted(os.listdir(os.path.dirname(os.path.abspath(__file__)))): - if not i.endswith('.py') or i in ('PRESUBMIT.py', 'trace_child_process.py'): + if not i.endswith('.py') or i == 'PRESUBMIT.py': continue module = __import__(i[:-3]) if hasattr(module, '__doc__'): -- cgit v1.1