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

Side by Side Diff: tools/coverage_helper.py

Issue 12450015: **/*.py: use /usr/bin/env to find python Base URL: https://chromium.googlesource.com/native_client/src/native_client@master
Patch Set: Created 7 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 | « tools/command_tester.py ('k') | tools/coverage_linux.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/env python
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import os 6 import os
7 7
8 # 8 #
9 # CoverageHelper 9 # CoverageHelper
10 # 10 #
11 # The CoverageHelper is an object which defines lists used by the coverage 11 # The CoverageHelper is an object which defines lists used by the coverage
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 def Groups(self): 90 def Groups(self):
91 groups = [] 91 groups = []
92 groups.append(os.path.realpath('scons-out')) 92 groups.append(os.path.realpath('scons-out'))
93 groups.append(os.path.realpath('src/include')) 93 groups.append(os.path.realpath('src/include'))
94 groups.append(os.path.realpath('src/tools')) 94 groups.append(os.path.realpath('src/tools'))
95 groups.extend(self.GetDirList('src/trusted')) 95 groups.extend(self.GetDirList('src/trusted'))
96 groups.extend(self.GetDirList('src/shared')) 96 groups.extend(self.GetDirList('src/shared'))
97 groups.extend(self.GetDirList('src/third_party')) 97 groups.extend(self.GetDirList('src/third_party'))
98 groups.extend(self.GetDirList('..')) 98 groups.extend(self.GetDirList('..'))
99 return groups 99 return groups
OLDNEW
« no previous file with comments | « tools/command_tester.py ('k') | tools/coverage_linux.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698