(list_of_sources)
| 571 | return headers |
| 572 | |
| 573 | def _get_directories(list_of_sources): |
| 574 | # get unique directories from list of sources. |
| 575 | direcs = [] |
| 576 | for f in list_of_sources: |
| 577 | d = os.path.split(f) |
| 578 | if d[0] != '' and not d[0] in direcs: |
| 579 | direcs.append(d[0]) |
| 580 | return direcs |
| 581 | |
| 582 | def _commandline_dep_string(cc_args, extra_postargs, pp_opts): |
| 583 | """ |
no test coverage detected