Returns the list of directories to be used for library search paths. Arguments: config: The dictionary that defines the special processing to be done for this configuration. Returns: The list of directory paths.
(config)
| 1271 | |
| 1272 | |
| 1273 | def _GetLibraryDirs(config): |
| 1274 | """Returns the list of directories to be used for library search paths. |
| 1275 | |
| 1276 | Arguments: |
| 1277 | config: The dictionary that defines the special processing to be done |
| 1278 | for this configuration. |
| 1279 | Returns: |
| 1280 | The list of directory paths. |
| 1281 | """ |
| 1282 | |
| 1283 | library_dirs = config.get("library_dirs", []) |
| 1284 | library_dirs = _FixPaths(library_dirs) |
| 1285 | return library_dirs |
| 1286 | |
| 1287 | |
| 1288 | def _GetLibraries(spec): |
no test coverage detected