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 /net | |
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 'net')
-rw-r--r-- | net/net_resources.scons | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/net_resources.scons b/net/net_resources.scons index 1bc534e..1f279e8 100644 --- a/net/net_resources.scons +++ b/net/net_resources.scons @@ -7,7 +7,6 @@ Configuration for building the net_resources.rc resources. """ import os -import sys Import('env') @@ -24,8 +23,6 @@ tld_names_clean = env.Command( input_files, '${SOURCES[1]} ${SOURCES[0]} $TARGET') -sys.path.append(env.Dir('$CHROME_SRC_DIR/tools/grit').abspath) -env.Tool('scons', toolpath=[env.Dir('$CHROME_SRC_DIR/tools/grit/grit')]) # This dummy target is used to tell the emitter where to put the target files. generated = env.GRIT('$TARGET_ROOT/grit_derived_sources/dummy_net_res', ['base/net_resources.grd'] + tld_names_clean) |