Get the cached path of this library. This will trigger a build if this library is not in the cache.
(self)
| 433 | return cache.get_lib_name(self.get_filename(), absolute=absolute) |
| 434 | |
| 435 | def build(self): |
| 436 | """Get the cached path of this library. |
| 437 | |
| 438 | This will trigger a build if this library is not in the cache. |
| 439 | """ |
| 440 | return cache.get(self.get_path(), self.do_build, force=USE_NINJA == 2, quiet=USE_NINJA) |
| 441 | |
| 442 | def generate(self): |
| 443 | return cache.get(self.get_path(), self.do_generate, force=USE_NINJA == 2, quiet=USE_NINJA) |
no test coverage detected