summaryrefslogtreecommitdiffstats
path: root/chrome/tools
diff options
context:
space:
mode:
authormmoss@chromium.org <mmoss@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-23 23:58:00 +0000
committermmoss@chromium.org <mmoss@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-23 23:58:00 +0000
commita7791cf2c1c1f565c43a8cb0e337ea0b7ab72b9e (patch)
tree297c4aa3c00586ddd894ed320b667d8a17d565ab /chrome/tools
parenta07cbae73ef54a6c5c8877cffd3e80a581ea7d8d (diff)
downloadchromium_src-a7791cf2c1c1f565c43a8cb0e337ea0b7ab72b9e.zip
chromium_src-a7791cf2c1c1f565c43a8cb0e337ea0b7ab72b9e.tar.gz
chromium_src-a7791cf2c1c1f565c43a8cb0e337ea0b7ab72b9e.tar.bz2
Multiple fixes for broken Linux SHARED=1 build. This gets things building, but the resulting 'chrome' binary crashes on start-up (test_shell seems to work better).
Review URL: http://codereview.chromium.org/27054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10228 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools')
-rw-r--r--chrome/tools/convert_dict/convert_dict.scons5
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/tools/convert_dict/convert_dict.scons b/chrome/tools/convert_dict/convert_dict.scons
index 0026ca7..1d7da3a 100644
--- a/chrome/tools/convert_dict/convert_dict.scons
+++ b/chrome/tools/convert_dict/convert_dict.scons
@@ -3,6 +3,7 @@
# found in the LICENSE file.
Import('env')
+Import('bdict_reader_o', 'bdict_writer_o')
env = env.Clone()
@@ -28,9 +29,9 @@ input_files = ChromeFileList([
'aff_reader.cc',
'aff_reader.h',
'$CHROME_DIR/third_party/hunspell/google/bdict.h',
- '$CHROME_DIR/third_party/hunspell/google/bdict_reader$OBJSUFFIX',
+ bdict_reader_o,
'$CHROME_DIR/third_party/hunspell/google/bdict_reader.h',
- '$CHROME_DIR/third_party/hunspell/google/bdict_writer$OBJSUFFIX',
+ bdict_writer_o,
'$CHROME_DIR/third_party/hunspell/google/bdict_writer.h',
'convert_dict.cc',
'dic_reader.cc',