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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 os.path.join(pepperdir, 'tools', 'make.exe')) | 556 os.path.join(pepperdir, 'tools', 'make.exe')) |
557 | 557 |
558 | 558 |
559 EXAMPLE_LIST = [ | 559 EXAMPLE_LIST = [ |
560 'debugging', | 560 'debugging', |
561 'file_histogram', | 561 'file_histogram', |
562 'file_io', | 562 'file_io', |
563 'fullscreen_tumbler', | 563 'fullscreen_tumbler', |
564 'gamepad', | 564 'gamepad', |
565 'geturl', | 565 'geturl', |
| 566 'hello_nacl_mounts', |
566 'hello_world_interactive', | 567 'hello_world_interactive', |
567 'hello_world', | 568 'hello_world', |
568 'hello_world_gles', | 569 'hello_world_gles', |
569 'input_events', | 570 'input_events', |
570 'load_progress', | 571 'load_progress', |
571 'mouselock', | 572 'mouselock', |
572 'multithreaded_input_events', | 573 'multithreaded_input_events', |
573 'pi_generator', | 574 'pi_generator', |
574 'pong', | 575 'pong', |
575 'sine_synth', | 576 'sine_synth', |
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1011 # Archive on non-trybots. | 1012 # Archive on non-trybots. |
1012 if options.archive or buildbot_common.IsSDKBuilder(): | 1013 if options.archive or buildbot_common.IsSDKBuilder(): |
1013 BuildStepArchiveBundle(pepper_ver, clnumber, tarfile) | 1014 BuildStepArchiveBundle(pepper_ver, clnumber, tarfile) |
1014 BuildStepArchiveSDKTools() | 1015 BuildStepArchiveSDKTools() |
1015 | 1016 |
1016 return 0 | 1017 return 0 |
1017 | 1018 |
1018 | 1019 |
1019 if __name__ == '__main__': | 1020 if __name__ == '__main__': |
1020 sys.exit(main(sys.argv)) | 1021 sys.exit(main(sys.argv)) |
OLD | NEW |