Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: native_client_sdk/src/build_tools/build_sdk.py

Issue 12194030: Rename mount (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix whitespace Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/test_sdk.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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))
OLDNEW
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/test_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698