Add onFontNameChanged event to Font Settings API
[chromium-blink-merge.git] / native_client_sdk / src / libraries / build.scons
blobd2c8c28344796ff21db68b201198d92a4773c066
1 #! -*- python -*-
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.
7 """
8 Build file for the NaCl SDK Libraries
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.
14 Linux or Mac:
15   ./scons [Options...]
17 Windows:
18   scons.bat [Options...]
19 """
21 #------------------------------------------------------------------------------
22 HELP_STRING = """
23 ===============================================================================
24 Help for NaCl SDK Libraries
25 ===============================================================================
27 * cleaning:            ./scons -c
28 * build a target:      ./scons <target>
29 * clean a target:      ./scons -c <target>
31 Supported targets:
32   * gtest_libs         Build the gtest and gmock libraries.
33 """
35 libraries_sconscripts = [
36     'gtest/build.scons',
37   ]
39 Help(HELP_STRING)
41 SConscript(libraries_sconscripts)