| 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 """Entry point for both build and try bots | 6 """Entry point for both build and try bots |
| 7 | 7 |
| 8 This script is invoked from XXX, usually without arguments | 8 This script is invoked from XXX, usually without arguments |
| 9 to package an SDK. It automatically determines whether | 9 to package an SDK. It automatically determines whether |
| 10 this SDK is for mac, win, linux. | 10 this SDK is for mac, win, linux. |
| (...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 'hello_world_interactive', | 566 'hello_world_interactive', |
| 567 'input_events', | 567 'input_events', |
| 568 'load_progress', | 568 'load_progress', |
| 569 'mouselock', | 569 'mouselock', |
| 570 'pi_generator', | 570 'pi_generator', |
| 571 'sine_synth', | 571 'sine_synth', |
| 572 'websocket', | 572 'websocket', |
| 573 ] | 573 ] |
| 574 | 574 |
| 575 LIBRARY_LIST = [ | 575 LIBRARY_LIST = [ |
| 576 'libjpeg', |
| 576 'nacl_mounts', | 577 'nacl_mounts', |
| 577 'ppapi', | 578 'ppapi', |
| 578 'ppapi_cpp', | 579 'ppapi_cpp', |
| 579 'ppapi_gles2', | 580 'ppapi_gles2', |
| 580 'pthread', | 581 'pthread', |
| 582 'zlib', |
| 581 ] | 583 ] |
| 582 | 584 |
| 583 LIB_DICT = { | 585 LIB_DICT = { |
| 584 'linux': [], | 586 'linux': [], |
| 585 'mac': [], | 587 'mac': [], |
| 586 'win': ['x86_32'] | 588 'win': ['x86_32'] |
| 587 } | 589 } |
| 588 | 590 |
| 589 | 591 |
| 590 def MakeDirectoryOrClobber(pepperdir, dirname, clobber): | 592 def MakeDirectoryOrClobber(pepperdir, dirname, clobber): |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 # Archive on non-trybots. | 894 # Archive on non-trybots. |
| 893 if options.archive: | 895 if options.archive: |
| 894 BuildStepArchiveBundle(pepper_ver, clnumber, tarfile) | 896 BuildStepArchiveBundle(pepper_ver, clnumber, tarfile) |
| 895 BuildStepArchiveSDKTools() | 897 BuildStepArchiveSDKTools() |
| 896 | 898 |
| 897 return 0 | 899 return 0 |
| 898 | 900 |
| 899 | 901 |
| 900 if __name__ == '__main__': | 902 if __name__ == '__main__': |
| 901 sys.exit(main(sys.argv)) | 903 sys.exit(main(sys.argv)) |
| OLD | NEW |