| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 | 2 |
| 3 # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. |
| 6 |
| 3 import copy | 7 import copy |
| 4 import gyp.input | 8 import gyp.input |
| 5 import optparse | 9 import optparse |
| 6 import os.path | 10 import os.path |
| 7 import re | 11 import re |
| 8 import shlex | 12 import shlex |
| 9 import sys | 13 import sys |
| 10 | 14 |
| 11 # Default debug modes for GYP | 15 # Default debug modes for GYP |
| 12 debug = {} | 16 debug = {} |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 # need to have dependencies defined before dependents reference them should | 429 # need to have dependencies defined before dependents reference them should |
| 426 # generate targets in the order specified in flat_list. | 430 # generate targets in the order specified in flat_list. |
| 427 generator.GenerateOutput(flat_list, targets, data, params) | 431 generator.GenerateOutput(flat_list, targets, data, params) |
| 428 | 432 |
| 429 # Done | 433 # Done |
| 430 return 0 | 434 return 0 |
| 431 | 435 |
| 432 | 436 |
| 433 if __name__ == '__main__': | 437 if __name__ == '__main__': |
| 434 sys.exit(main(sys.argv[1:])) | 438 sys.exit(main(sys.argv[1:])) |
| OLD | NEW |