| OLD | NEW |
| 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 Loading... |
| 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) |
| OLD | NEW |