OLD | NEW |
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 Loading... |
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 |
OLD | NEW |