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

Side by Side Diff: examples/build.scons

Issue 7982038: Merge in r1190 (add pong). (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/branches/trout/src/
Patch Set: Created 9 years, 3 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 | examples/index.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #! -*- python -*- 1 #! -*- python -*-
2 # 2 #
3 # Copyright (c) 2011 The Native Client Authors. All rights reserved. 3 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 """ 7 """
8 Build file for the NaCl SDK Examples 8 Build file for the NaCl SDK Examples
9 9
10 This file runs all the scons files in the various example sub-directories. 10 This file runs all the scons files in the various example sub-directories.
(...skipping 16 matching lines...) Expand all
27 * cleaning: ./scons -c 27 * cleaning: ./scons -c
28 * build a target: ./scons <target> 28 * build a target: ./scons <target>
29 * clean a target: ./scons -c <target> 29 * clean a target: ./scons -c <target>
30 30
31 Supported targets: 31 Supported targets:
32 * geturl Build the geturl example. 32 * geturl Build the geturl example.
33 * hello_world Build the hello_world example. 33 * hello_world Build the hello_world example.
34 * hello_world_c Build the hello_world_c example. 34 * hello_world_c Build the hello_world_c example.
35 * load_progress Build the load_progress example. 35 * load_progress Build the load_progress example.
36 * pi_generator Build the pi_generator example. 36 * pi_generator Build the pi_generator example.
37 * pong Build the pong example.
37 * sine_synth Build the sine_synth example. 38 * sine_synth Build the sine_synth example.
38 * tumbler Build the tumbler example. 39 * tumbler Build the tumbler example.
39 """ 40 """
40 41
41 example_sconscripts = ['geturl/build.scons', 42 example_sconscripts = ['geturl/build.scons',
42 'hello_world/build.scons', 43 'hello_world/build.scons',
43 'hello_world_c/build.scons', 44 'hello_world_c/build.scons',
44 'load_progress/build.scons', 45 'load_progress/build.scons',
45 'pi_generator/build.scons', 46 'pi_generator/build.scons',
47 'pong/build.scons',
46 'sine_synth/build.scons', 48 'sine_synth/build.scons',
47 'tumbler/build.scons', 49 'tumbler/build.scons',
48 ] 50 ]
49 51
50 Help(HELP_STRING) 52 Help(HELP_STRING)
51 53
52 SConscript(example_sconscripts) 54 SConscript(example_sconscripts)
OLDNEW
« no previous file with comments | « no previous file | examples/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698