summaryrefslogtreecommitdiffstats
path: root/tools/isolate/README.py
diff options
context:
space:
mode:
authormaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-07 18:49:47 +0000
committermaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-07 18:49:47 +0000
commit7e52297125e0d5ddcc59ffb435d84b61278d51c8 (patch)
treeb107732fddb8066823c7b8ae917ea8ade8dc74a7 /tools/isolate/README.py
parent6fd9b4cdd4a8d9fa2f0e7f63689b6d4c5a2f3f71 (diff)
downloadchromium_src-7e52297125e0d5ddcc59ffb435d84b61278d51c8.zip
chromium_src-7e52297125e0d5ddcc59ffb435d84b61278d51c8.tar.gz
chromium_src-7e52297125e0d5ddcc59ffb435d84b61278d51c8.tar.bz2
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
Diffstat (limited to 'tools/isolate/README.py')
-rwxr-xr-xtools/isolate/README.py2
1 files changed, 1 insertions, 1 deletions
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__'):