summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-26 23:11:54 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-26 23:11:54 +0000
commitfb2c5884aed83a46874cc18828510e41c7e7cc9b (patch)
tree2de30844f768beb89a9578b90401a306834aff2b /net
parent8085dbc8b9e61052d830762c0031dfdd1241daba (diff)
downloadchromium_src-fb2c5884aed83a46874cc18828510e41c7e7cc9b.zip
chromium_src-fb2c5884aed83a46874cc18828510e41c7e7cc9b.tar.gz
chromium_src-fb2c5884aed83a46874cc18828510e41c7e7cc9b.tar.bz2
Roll the third_party/icu38 revision in DEPS to have SCons build libicu,
not libicuuc. Add a new $ICU_LIBS construction variable to allow different platforms to link with different sets of ICU libraries. Use it in the LIBS lists of the various construction environments used to build the things that link with it. Review URL: http://codereview.chromium.org/4312 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2651 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/SConscript2
-rw-r--r--net/tools/tld_cleanup/SConscript2
2 files changed, 2 insertions, 2 deletions
diff --git a/net/SConscript b/net/SConscript
index c0d775e..225647d 100644
--- a/net/SConscript
+++ b/net/SConscript
@@ -171,7 +171,7 @@ env_tests.Prepend(
'base',
'googleurl',
'gtest',
- 'icuuc',
+ env_tests['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed
'modp_b64',
'zlib',
]
diff --git a/net/tools/tld_cleanup/SConscript b/net/tools/tld_cleanup/SConscript
index 0bd6197..5ab7e82 100644
--- a/net/tools/tld_cleanup/SConscript
+++ b/net/tools/tld_cleanup/SConscript
@@ -12,7 +12,7 @@ env.Prepend(
],
LIBS = [
'googleurl',
- 'icuuc',
+ env['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed
'base',
# We only need to link with net due to use precompiled_net.pch.
'net',