diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-06 20:17:54 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-06 20:17:54 +0000 |
commit | f13664468e01dbac458762412ba9be3afb4f543c (patch) | |
tree | 89eb7f4a664f6fcf5938eff9739a57600428af7d /tools/grit | |
parent | b8615376ec35c6b328ec67325289e0b126f5f4cd (diff) | |
download | chromium_src-f13664468e01dbac458762412ba9be3afb4f543c.zip chromium_src-f13664468e01dbac458762412ba9be3afb4f543c.tar.gz chromium_src-f13664468e01dbac458762412ba9be3afb4f543c.tar.bz2 |
Add a Repack tool to scons. This is used to compile linux resources
together (kind of like the windows RES builder).
I also moved the GRIT builder into the chromium site_scons since we
import it in lots of places. This seems cleaner.
Review URL: http://codereview.chromium.org/21115
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9331 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/grit')
-rw-r--r-- | tools/grit/grit/scons.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/grit/grit/scons.py b/tools/grit/grit/scons.py index f583698..6410e26 100644 --- a/tools/grit/grit/scons.py +++ b/tools/grit/grit/scons.py @@ -138,7 +138,7 @@ def _Scanner(file_node, env, path): # Add in the grit source files. If one of these change, we want to re-run # grit. - grit_root_dir = os.path.split(os.path.abspath(__file__))[0] + grit_root_dir = env.subst('$CHROME_SRC_DIR/tools/grit') for root, dirs, filenames in os.walk(grit_root_dir): grit_src = [os.path.join(root, f) for f in filenames if f.endswith('.py')] files.extend(grit_src) |