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

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

Issue 11190066: [NaCl SDK] nacl-mounts example. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix windows Created 8 years, 1 month 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/examples/hello_nacl_mounts/example.dsc » ('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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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))
OLDNEW
« no previous file with comments | « no previous file | native_client_sdk/src/examples/hello_nacl_mounts/example.dsc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698