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 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 'multithreaded_input_events', | 358 'multithreaded_input_events', |
359 'pi_generator', | 359 'pi_generator', |
360 'pong', | 360 'pong', |
361 'sine_synth', | 361 'sine_synth', |
362 'tumbler', | 362 'tumbler', |
363 'websocket', | 363 'websocket', |
364 'dlopen', | 364 'dlopen', |
365 ] | 365 ] |
366 | 366 |
367 LIBRARY_LIST = [ | 367 LIBRARY_LIST = [ |
| 368 'pthread', |
| 369 'ppapi', |
368 'ppapi_cpp', | 370 'ppapi_cpp', |
369 'ppapi_gles2', | 371 'ppapi_gles2', |
370 ] | 372 ] |
371 | 373 |
372 LIB_DICT = { | 374 LIB_DICT = { |
373 'linux': [], | 375 'linux': [], |
374 'mac': [], | 376 'mac': [], |
375 'win': ['x86_32'] | 377 'win': ['x86_32'] |
376 } | 378 } |
377 | 379 |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
747 manifest_snippet_stream.write(bundle.GetDataAsString()) | 749 manifest_snippet_stream.write(bundle.GetDataAsString()) |
748 | 750 |
749 buildbot_common.Archive(tarname + '.json', bucket_path, OUT_DIR, | 751 buildbot_common.Archive(tarname + '.json', bucket_path, OUT_DIR, |
750 step_link=False) | 752 step_link=False) |
751 | 753 |
752 return 0 | 754 return 0 |
753 | 755 |
754 | 756 |
755 if __name__ == '__main__': | 757 if __name__ == '__main__': |
756 sys.exit(main(sys.argv)) | 758 sys.exit(main(sys.argv)) |
OLD | NEW |