diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-18 22:34:36 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-18 22:34:36 +0000 |
commit | e4feed08884b1b1bd3af3986e56ca60c3d62a7da (patch) | |
tree | bbfa158eb296bb9e5b329efac64e3b8e36a7b3eb /chrome/app | |
parent | 70b45efc15674aa7241bbb95dc81b3019eac294b (diff) | |
download | chromium_src-e4feed08884b1b1bd3af3986e56ca60c3d62a7da.zip chromium_src-e4feed08884b1b1bd3af3986e56ca60c3d62a7da.tar.gz chromium_src-e4feed08884b1b1bd3af3986e56ca60c3d62a7da.tar.bz2 |
Try to land strings on linux again (r9972). This time, enable
the resource bundle on linux unittests and make the unit_tests
executable require the various .pak files.
Review URL: http://codereview.chromium.org/20471
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9984 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app')
-rw-r--r-- | chrome/app/chrome_resources.scons | 1 | ||||
-rw-r--r-- | chrome/app/chrome_strings.scons | 1 | ||||
-rw-r--r-- | chrome/app/theme/theme_dll.scons | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/chrome/app/chrome_resources.scons b/chrome/app/chrome_resources.scons index 6d0d32c..fdb8436 100644 --- a/chrome/app/chrome_resources.scons +++ b/chrome/app/chrome_resources.scons @@ -32,3 +32,4 @@ if env.Bit('linux'): ) i = env.Install('$DESTINATION_ROOT', chrome_pak) env.Requires('$DESTINATION_ROOT/chrome', i) + env.Requires('$DESTINATION_ROOT/unit_tests', i) diff --git a/chrome/app/chrome_strings.scons b/chrome/app/chrome_strings.scons index 2b5934e..562ef54 100644 --- a/chrome/app/chrome_strings.scons +++ b/chrome/app/chrome_strings.scons @@ -33,3 +33,4 @@ if env.Bit('linux'): ) i = env.Install('$DESTINATION_ROOT/locales', lang_pak) env.Requires('$DESTINATION_ROOT/chrome', i) + env.Requires('$DESTINATION_ROOT/unit_tests', i) diff --git a/chrome/app/theme/theme_dll.scons b/chrome/app/theme/theme_dll.scons index d99f9ee..9264c12 100644 --- a/chrome/app/theme/theme_dll.scons +++ b/chrome/app/theme/theme_dll.scons @@ -17,3 +17,4 @@ if env.Bit('linux'): ) i = env.Install('$DESTINATION_ROOT/themes/', theme_default_pak) env.Requires('$DESTINATION_ROOT/chrome', i) + env.Requires('$DESTINATION_ROOT/unit_tests', i) |