(depend)
| 389 | return '' |
| 390 | |
| 391 | def GetDepend(depend): |
| 392 | building = True |
| 393 | if type(depend) == type('str'): |
| 394 | if not depend in BuildOptions or BuildOptions[depend] == 0: |
| 395 | building = False |
| 396 | elif BuildOptions[depend] != '': |
| 397 | return BuildOptions[depend] |
| 398 | |
| 399 | return building |
| 400 | |
| 401 | # for list type depend |
| 402 | for item in depend: |
| 403 | if item != '': |
| 404 | if not item in BuildOptions or BuildOptions[item] == 0: |
| 405 | building = False |
| 406 | |
| 407 | return building |
| 408 | |
| 409 | def LocalOptions(config_filename): |
| 410 | from SCons.Script import SCons |
no outgoing calls
no test coverage detected