diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-21 01:15:37 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-21 01:15:37 +0000 |
commit | b1841ed9ec49db4835ea9179e5e0426d7a565271 (patch) | |
tree | fabb5b944bc7537b8701838df0c1835eaf600848 /printing/printing.scons | |
parent | bdf5d875799944b467740fd10772e72f442ea265 (diff) | |
download | chromium_src-b1841ed9ec49db4835ea9179e5e0426d7a565271.zip chromium_src-b1841ed9ec49db4835ea9179e5e0426d7a565271.tar.gz chromium_src-b1841ed9ec49db4835ea9179e5e0426d7a565271.tar.bz2 |
Add linux printing module.
Review URL: http://codereview.chromium.org/27008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10136 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/printing.scons')
-rw-r--r-- | printing/printing.scons | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/printing/printing.scons b/printing/printing.scons new file mode 100644 index 0000000..c86c31a --- /dev/null +++ b/printing/printing.scons @@ -0,0 +1,22 @@ +# Copyright (c) 2009 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +__doc__ = """ +Master configuration for building printing components. +""" + +Import('env') + +# Arrange for Hammer to add all programs to the 'printing' Alias. +env.Append( + COMPONENT_PROGRAM_GROUPS = ['printing'], + COMPONENT_TEST_PROGRAM_GROUPS = ['printing'], +) + +sconscript_files = [ + 'printing_lib.scons', + 'printing_unittests.scons', +] + +SConscript(sconscript_files, exports=['env']) |