| 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 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 596 os.path.join(pepperdir, 'tools', 'make.exe')) | 596 os.path.join(pepperdir, 'tools', 'make.exe')) |
| 597 | 597 |
| 598 | 598 |
| 599 EXAMPLE_LIST = [ | 599 EXAMPLE_LIST = [ |
| 600 'debugging', | 600 'debugging', |
| 601 'dlopen', | 601 'dlopen', |
| 602 'file_histogram', | 602 'file_histogram', |
| 603 'file_io', | 603 'file_io', |
| 604 'gamepad', | 604 'gamepad', |
| 605 'geturl', | 605 'geturl', |
| 606 'hello_nacl_mounts', | 606 'hello_nacl_io', |
| 607 'hello_world_stdio', | 607 'hello_world_stdio', |
| 608 'hello_world', | 608 'hello_world', |
| 609 'hello_world_gles', | 609 'hello_world_gles', |
| 610 'hello_world_instance3d', | 610 'hello_world_instance3d', |
| 611 'hello_world_interactive', | 611 'hello_world_interactive', |
| 612 'input_events', | 612 'input_events', |
| 613 'load_progress', | 613 'load_progress', |
| 614 'mouselock', | 614 'mouselock', |
| 615 'pi_generator', | 615 'pi_generator', |
| 616 'sine_synth', | 616 'sine_synth', |
| 617 'websocket', | 617 'websocket', |
| 618 ] | 618 ] |
| 619 | 619 |
| 620 LIBRARY_LIST = [ | 620 LIBRARY_LIST = [ |
| 621 'libjpeg', | 621 'libjpeg', |
| 622 'nacl_mounts', | 622 'nacl_io', |
| 623 'ppapi', | 623 'ppapi', |
| 624 'ppapi_cpp', | 624 'ppapi_cpp', |
| 625 'ppapi_gles2', | 625 'ppapi_gles2', |
| 626 'ppapi_main', | 626 'ppapi_main', |
| 627 'pthread', | 627 'pthread', |
| 628 'zlib', | 628 'zlib', |
| 629 ] | 629 ] |
| 630 | 630 |
| 631 LIB_DICT = { | 631 LIB_DICT = { |
| 632 'linux': [], | 632 'linux': [], |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1019 BuildStepArchiveBundle('build', pepper_ver, clnumber, tarfile) | 1019 BuildStepArchiveBundle('build', pepper_ver, clnumber, tarfile) |
| 1020 if platform == 'linux': | 1020 if platform == 'linux': |
| 1021 BuildStepArchiveBundle('naclports', pepper_ver, clnumber, ports_tarfile) | 1021 BuildStepArchiveBundle('naclports', pepper_ver, clnumber, ports_tarfile) |
| 1022 BuildStepArchiveSDKTools() | 1022 BuildStepArchiveSDKTools() |
| 1023 | 1023 |
| 1024 return 0 | 1024 return 0 |
| 1025 | 1025 |
| 1026 | 1026 |
| 1027 if __name__ == '__main__': | 1027 if __name__ == '__main__': |
| 1028 sys.exit(main(sys.argv)) | 1028 sys.exit(main(sys.argv)) |
| OLD | NEW |