summaryrefslogtreecommitdiffstats
path: root/base/using_base.scons
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-14 17:16:46 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-14 17:16:46 +0000
commitda6654b0465478b0549e593c1efb45bd44756965 (patch)
tree487788278214089228f23098346c1d02b5acfec4 /base/using_base.scons
parent1fbb43878f7f68c1770a12847ecd46c0f1413b3e (diff)
downloadchromium_src-da6654b0465478b0549e593c1efb45bd44756965.zip
chromium_src-da6654b0465478b0549e593c1efb45bd44756965.tar.gz
chromium_src-da6654b0465478b0549e593c1efb45bd44756965.tar.bz2
Next round of SCons changes:
* Add 'gdm_fp' to the $LIBS setting in base\using_base.scons (to be removed when that library moves into base\third_party). * Have the grit Scanner search the Repository() copy of the source file (necessary now that $TARGET_ROOT has changed). * Change all the SConscript files underneath chrome\test and chrome\tools to *.scons files, including updating their contents with the current patterns. * Add dependencies of the local_settings_*.res files on the corresponding google_chrome_string_*.rc files, so they get generated properly. * Add generation of the chrome_exe.res resource file. * Comment out some unnecessary .lib settings in the base construction environment. Review URL: http://codereview.chromium.org/10745 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5480 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/using_base.scons')
-rw-r--r--base/using_base.scons2
1 files changed, 2 insertions, 0 deletions
diff --git a/base/using_base.scons b/base/using_base.scons
index f3d58b4..08ab6c1 100644
--- a/base/using_base.scons
+++ b/base/using_base.scons
@@ -11,5 +11,7 @@ Import("env")
env.Append(
LIBS = [
'base',
+ # TODO(tc): remove when dmg_fp gets moved to base/third_party
+ 'dmg_fp',
],
)