diff options
author | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-26 04:38:25 +0000 |
---|---|---|
committer | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-26 04:38:25 +0000 |
commit | de2c4cca42e52e97d240f6de1dbc8094777f9871 (patch) | |
tree | 0d5bd659b3a6da4cdfa1831e174a730d12769595 /base | |
parent | 1c4fdfb4145e39979c5095546ced9f07578ccb4d (diff) | |
download | chromium_src-de2c4cca42e52e97d240f6de1dbc8094777f9871.zip chromium_src-de2c4cca42e52e97d240f6de1dbc8094777f9871.tar.gz chromium_src-de2c4cca42e52e97d240f6de1dbc8094777f9871.tar.bz2 |
Mass convert ChromeStaticLibrary -> ChromeLibrary, including pulling the updated ICU dep that uses it as well.
Add a SHARED scons command-line flag to build shared libraries.
Review URL: http://codereview.chromium.org/16477
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7479 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/base_lib.scons | 2 | ||||
-rw-r--r-- | base/gfx/base_gfx.scons | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/base/base_lib.scons b/base/base_lib.scons index 15791df..976a899 100644 --- a/base/base_lib.scons +++ b/base/base_lib.scons @@ -373,7 +373,7 @@ if env.Bit('linux'): 'worker_pool.cc', ]) -env.ChromeStaticLibrary('base', input_files) +env.ChromeLibrary('base', input_files) p = env.ChromeMSVSProject('build/base.vcproj', guid='{1832A374-8A74-4F9E-B536-69A699B3E165}', diff --git a/base/gfx/base_gfx.scons b/base/gfx/base_gfx.scons index bcffedc..5eb47db 100644 --- a/base/gfx/base_gfx.scons +++ b/base/gfx/base_gfx.scons @@ -56,7 +56,7 @@ elif env.Bit('linux'): input_files.Extend([ ]) -env.ChromeStaticLibrary('base_gfx', input_files) +env.ChromeLibrary('base_gfx', input_files) p = env.ChromeMSVSProject('../build/base_gfx.vcproj', guid='{A508ADD3-CECE-4E0F-8448-2F5E454DF551}', |