Return the 'output basename' of a gyp spec. E.g., the loadable module 'foobar' in directory 'baz' will produce 'libfoobar.so'
(self, spec)
| 707 | return (target_stem, target_ext) |
| 708 | |
| 709 | def ComputeOutputBasename(self, spec): |
| 710 | """Return the 'output basename' of a gyp spec. |
| 711 | |
| 712 | E.g., the loadable module 'foobar' in directory 'baz' will produce |
| 713 | 'libfoobar.so' |
| 714 | """ |
| 715 | return "".join(self.ComputeOutputParts(spec)) |
| 716 | |
| 717 | def ComputeOutput(self, spec): |
| 718 | """Return the 'output' (full output path) of a gyp spec. |
no test coverage detected