summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-26 04:38:25 +0000
committerevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-26 04:38:25 +0000
commitde2c4cca42e52e97d240f6de1dbc8094777f9871 (patch)
tree0d5bd659b3a6da4cdfa1831e174a730d12769595 /chrome
parent1c4fdfb4145e39979c5095546ced9f07578ccb4d (diff)
downloadchromium_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 'chrome')
-rw-r--r--chrome/browser/browser.scons2
-rw-r--r--chrome/browser/debugger/debugger.scons2
-rw-r--r--chrome/browser/views/SConscript2
-rw-r--r--chrome/common/common.scons2
-rw-r--r--chrome/installer/util/util.scons2
-rw-r--r--chrome/plugin/plugin.scons2
-rw-r--r--chrome/renderer/renderer.scons2
-rw-r--r--chrome/test/automation/automation.scons2
-rw-r--r--chrome/third_party/hunspell/SConscript2
-rw-r--r--chrome/views/SConscript2
10 files changed, 10 insertions, 10 deletions
diff --git a/chrome/browser/browser.scons b/chrome/browser/browser.scons
index abfb6ff..b973939 100644
--- a/chrome/browser/browser.scons
+++ b/chrome/browser/browser.scons
@@ -315,7 +315,7 @@ if env.Bit('posix'):
if not env.Bit('mac'):
# TODO: This should work for all platforms.
- env.ChromeStaticLibrary('browser', input_files)
+ env.ChromeLibrary('browser', input_files)
env.ChromeMSVSProject('$CHROME_DIR/browser/browser.vcproj',
dependencies = [
diff --git a/chrome/browser/debugger/debugger.scons b/chrome/browser/debugger/debugger.scons
index 0045c62..3c974f8 100644
--- a/chrome/browser/debugger/debugger.scons
+++ b/chrome/browser/debugger/debugger.scons
@@ -64,7 +64,7 @@ if env.Bit('mac'):
if not env.Bit('mac'):
# TODO(port): Enable for Mac.
- env.ChromeStaticLibrary('debugger', input_files)
+ env.ChromeLibrary('debugger', input_files)
env.ChromeMSVSProject('$CHROME_DIR/browser/debugger/debugger.vcproj',
dependencies = [
diff --git a/chrome/browser/views/SConscript b/chrome/browser/views/SConscript
index 8cdcfee..ccbfd3f 100644
--- a/chrome/browser/views/SConscript
+++ b/chrome/browser/views/SConscript
@@ -137,7 +137,7 @@ if env.Bit('windows'):
'find_bar_win.cc',
])
-env.ChromeStaticLibrary('browser_views', input_files)
+env.ChromeLibrary('browser_views', input_files)
env.ChromeMSVSProject('$CHROME_DIR/browser/views/browser_views.vcproj',
dependencies = [
diff --git a/chrome/common/common.scons b/chrome/common/common.scons
index 14c2b92..58e1146 100644
--- a/chrome/common/common.scons
+++ b/chrome/common/common.scons
@@ -134,7 +134,7 @@ if env.Bit('posix'):
if not env.Bit('mac'):
# TODO(port): This should be enabled for all platforms.
- env.ChromeStaticLibrary('common', input_files)
+ env.ChromeLibrary('common', input_files)
env.ChromeMSVSProject('$CHROME_DIR/common/common.vcproj',
dependencies = [
diff --git a/chrome/installer/util/util.scons b/chrome/installer/util/util.scons
index 5d43185..7bba84c 100644
--- a/chrome/installer/util/util.scons
+++ b/chrome/installer/util/util.scons
@@ -52,7 +52,7 @@ input_files = [
# TODO(port):
if env.Bit('windows'):
- env.ChromeStaticLibrary('util', input_files)
+ env.ChromeLibrary('util', input_files)
env.ChromeMSVSProject('$CHROME_DIR/installer/util/util.vcproj',
dependencies = [
diff --git a/chrome/plugin/plugin.scons b/chrome/plugin/plugin.scons
index 3a100652..26a3702 100644
--- a/chrome/plugin/plugin.scons
+++ b/chrome/plugin/plugin.scons
@@ -56,7 +56,7 @@ if env.Bit('posix'):
for remove in to_be_ported_files:
input_files.remove(remove)
-env.ChromeStaticLibrary('plugin', input_files)
+env.ChromeLibrary('plugin', input_files)
env.ChromeMSVSProject('$CHROME_DIR/plugin/plugin.vcproj',
guid='{20A560A0-2CD0-4D9E-A58B-1F24B99C087A}')
diff --git a/chrome/renderer/renderer.scons b/chrome/renderer/renderer.scons
index b8eda9f..d0639ba 100644
--- a/chrome/renderer/renderer.scons
+++ b/chrome/renderer/renderer.scons
@@ -101,7 +101,7 @@ if env.Bit('mac'):
# TODO(port): Enable for Mac.
if not env.Bit('mac'):
- env.ChromeStaticLibrary('renderer', input_files)
+ env.ChromeLibrary('renderer', input_files)
env.ChromeMSVSProject('$CHROME_DIR/renderer/renderer.vcproj',
dependencies = [
diff --git a/chrome/test/automation/automation.scons b/chrome/test/automation/automation.scons
index f894f72..2708f8b 100644
--- a/chrome/test/automation/automation.scons
+++ b/chrome/test/automation/automation.scons
@@ -29,7 +29,7 @@ input_files = [
# TODO(port):
if env.Bit('windows'):
- env.ChromeStaticLibrary('automation', input_files)
+ env.ChromeLibrary('automation', input_files)
env.ChromeMSVSProject('$CHROME_DIR/test/automation/automation.vcproj',
guid='{1556EF78-C7E6-43C8-951F-F6B43AC0DD12}')
diff --git a/chrome/third_party/hunspell/SConscript b/chrome/third_party/hunspell/SConscript
index 7cc57e3..c5c9074 100644
--- a/chrome/third_party/hunspell/SConscript
+++ b/chrome/third_party/hunspell/SConscript
@@ -82,7 +82,7 @@ input_files = [
'src/parsers/textparser.cxx',
]
-env.ChromeStaticLibrary('hunspell', input_files)
+env.ChromeLibrary('hunspell', input_files)
dictionaries = [
diff --git a/chrome/views/SConscript b/chrome/views/SConscript
index d415f0f..1c9779a 100644
--- a/chrome/views/SConscript
+++ b/chrome/views/SConscript
@@ -92,7 +92,7 @@ input_files = [
'window_delegate.cc',
]
-env.ChromeStaticLibrary('views', input_files)
+env.ChromeLibrary('views', input_files)
env.ChromeMSVSProject('$CHROME_DIR/views/views.vcproj',
dependencies = [