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

Side by Side Diff: native_client_sdk/src/libraries/build.scons

Issue 10854137: [NaCl SDK] gtest_ppapi library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove hacks Created 8 years, 4 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
OLDNEW
(Empty)
1 #! -*- python -*-
2 #
3 # Copyright (c) 2011 The Chromium 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 Libraries
9
10 This file runs all the scons files in the various libraries 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 Libraries
25 ===============================================================================
26
27 * cleaning: ./scons -c
28 * build a target: ./scons <target>
29 * clean a target: ./scons -c <target>
30
31 Supported targets:
32 * gtest_libs Build the gtest and gmock libraries.
33 """
34
35 libraries_sconscripts = [
36 'gtest/build.scons',
37 ]
38
39 Help(HELP_STRING)
40
41 SConscript(libraries_sconscripts)
OLDNEW
« no previous file with comments | « native_client_sdk/src/build_tools/build_sdk.py ('k') | native_client_sdk/src/libraries/c_salt/test/gtest_event_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698