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', | |
577 # 'libpng', | |
binji
2012/11/26 23:23:20
remove
noelallen1
2012/11/27 23:52:24
Done.
| |
576 'nacl_mounts', | 578 'nacl_mounts', |
577 'ppapi', | 579 'ppapi', |
578 'ppapi_cpp', | 580 'ppapi_cpp', |
579 'ppapi_gles2', | 581 'ppapi_gles2', |
580 'pthread', | 582 'pthread', |
583 'zlib', | |
581 ] | 584 ] |
582 | 585 |
583 LIB_DICT = { | 586 LIB_DICT = { |
584 'linux': [], | 587 'linux': [], |
585 'mac': [], | 588 'mac': [], |
586 'win': ['x86_32'] | 589 'win': ['x86_32'] |
587 } | 590 } |
588 | 591 |
589 | 592 |
590 def MakeDirectoryOrClobber(pepperdir, dirname, clobber): | 593 def MakeDirectoryOrClobber(pepperdir, dirname, clobber): |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
892 # Archive on non-trybots. | 895 # Archive on non-trybots. |
893 if options.archive: | 896 if options.archive: |
894 BuildStepArchiveBundle(pepper_ver, clnumber, tarfile) | 897 BuildStepArchiveBundle(pepper_ver, clnumber, tarfile) |
895 BuildStepArchiveSDKTools() | 898 BuildStepArchiveSDKTools() |
896 | 899 |
897 return 0 | 900 return 0 |
898 | 901 |
899 | 902 |
900 if __name__ == '__main__': | 903 if __name__ == '__main__': |
901 sys.exit(main(sys.argv)) | 904 sys.exit(main(sys.argv)) |
OLD | NEW |