diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-06 05:44:01 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-06 05:44:01 +0000 |
commit | 96d02993ec7c145f4ffab0d1249d95b5194f1f57 (patch) | |
tree | f15d2fda54cf4edb5ed70e45820e79f35c04df47 /tools | |
parent | 1061321d6cd733eae7633bde7deb5eb1d6cbf3d0 (diff) | |
download | chromium_src-96d02993ec7c145f4ffab0d1249d95b5194f1f57.zip chromium_src-96d02993ec7c145f4ffab0d1249d95b5194f1f57.tar.gz chromium_src-96d02993ec7c145f4ffab0d1249d95b5194f1f57.tar.bz2 |
Add using_generated_resources.scons to the build. This
is the same as using_generated_resources.vsprops.
Replace existing paths with this scons file if the SConscript
file has already been converted to the using_ format.
Review URL: http://codereview.chromium.org/14902
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7583 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/grit/build/using_generated_resources.scons | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/grit/build/using_generated_resources.scons b/tools/grit/build/using_generated_resources.scons new file mode 100644 index 0000000..1a2f673 --- /dev/null +++ b/tools/grit/build/using_generated_resources.scons @@ -0,0 +1,15 @@ +# Copyright (c) 2006-2008 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__ = """ +Settings for other components using resources generated by GRIT. +""" + +Import("env") + +env.Append( + CPPPATH = [ + '$TARGET_ROOT/grit_derived_sources', + ], +) |