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

Side by Side Diff: experimental/build.scons

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 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
OLDNEW
(Empty)
1 #! -*- python -*-
2 #
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
5 # found in the LICENSE file.
6
7 """
8 Build file for the NaCl SDK Experimental
9
10 This file runs all the scons files in the various experimental sub-directories.
11 Do not invoke this script directly, but instead use the scons or scons.bat
12 wrapper function. E.g.
13
14 Linux or Mac:
15 ./scons [Options...]
16
17 Windows:
18 scons.bat [Options...]
19 """
20
21 #------------------------------------------------------------------------------
22 HELP_STRING = """
23 ===============================================================================
24 Help for NaCl SDK Experimental
25 ===============================================================================
26
27 * cleaning: ./scons -c
28 * build a target: ./scons <target>
29 * clean a target: ./scons -c <target>
30
31 Supported targets:
32 * webgtt Build the webgtt example.
33 """
34
35 experimental_sconscripts = ['webgtt/build.scons',
36 ]
37
38 Help(HELP_STRING)
39
40 SConscript(experimental_sconscripts)
OLDNEW
« no previous file with comments | « experimental/audio_stream/c_salt/url_io/web_resource_loader.cc ('k') | experimental/c_salt/browser_3d_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698