OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """Merges multiple OS-specific gyp dependency lists into one that works on all | 6 """Merges multiple OS-specific gyp dependency lists into one that works on all |
7 of them. | 7 of them. |
8 | 8 |
9 | 9 |
10 The logic is relatively simple. Takes the current conditions, add more | 10 The logic is relatively simple. Takes the current conditions, add more |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 format='%(levelname)5s %(module)15s(%(lineno)3d):%(message)s') | 292 format='%(levelname)5s %(module)15s(%(lineno)3d):%(message)s') |
293 | 293 |
294 trace_inputs.pretty_print( | 294 trace_inputs.pretty_print( |
295 convert_to_gyp(*reduce_inputs(*parse_gyp_dicts(args))), | 295 convert_to_gyp(*reduce_inputs(*parse_gyp_dicts(args))), |
296 sys.stdout) | 296 sys.stdout) |
297 return 0 | 297 return 0 |
298 | 298 |
299 | 299 |
300 if __name__ == '__main__': | 300 if __name__ == '__main__': |
301 sys.exit(main()) | 301 sys.exit(main()) |
OLD | NEW |