diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-17 22:05:58 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-17 22:05:58 +0000 |
commit | 353a7839dcc80e0b5df8321d1b78c955385d93ad (patch) | |
tree | c8277f32f08fce86657bdc134b40c6bec3a6fd66 /chrome/app/resources | |
parent | 98f8d9c1248dc678ef09af9436976ca5af72f42a (diff) | |
download | chromium_src-353a7839dcc80e0b5df8321d1b78c955385d93ad.zip chromium_src-353a7839dcc80e0b5df8321d1b78c955385d93ad.tar.gz chromium_src-353a7839dcc80e0b5df8321d1b78c955385d93ad.tar.bz2 |
Create chrome_resources.scons, chrome_strings.scons and theme_dll.scons
which mirror the vcproj files used by Windows.
Add the linux specific code to generate .pak files that we use for
resources on linux.
This doesn't include the necessary changes to build the theme default.dll on
windows, but the windows scons build is already really broken so punting for
now.
Review URL: http://codereview.chromium.org/21371
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9906 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/resources')
-rw-r--r-- | chrome/app/resources/SConscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/app/resources/SConscript b/chrome/app/resources/SConscript index c3f1391..bddca68 100644 --- a/chrome/app/resources/SConscript +++ b/chrome/app/resources/SConscript @@ -153,7 +153,7 @@ locale_GUIDMap = { gcs_rc = '$TARGET_ROOT/grit_derived_sources/google_chrome_strings_%s.rc' cs_rc = '$TARGET_ROOT/grit_derived_sources/chromium_strings_%s.rc' -gr_res = '$TARGET_ROOT/grit_derived_sources/generated_resources_%s.res' +gr_rc = '$TARGET_ROOT/grit_derived_sources/generated_resources_%s.rc' ws_res = '$TARGET_ROOT/grit_derived_sources/webkit_strings_%s.res' dest_vcproj = '$CHROME_SRC_DIR/chrome/app/locales/%s.vcproj' @@ -162,6 +162,7 @@ locale_dlls = [] for locale in locale_list: res = env_res.RES('locale_settings_%s.rc' % locale) + gr_res = env_res.RES(gr_rc % locale) # TODO(sgk): find out why this implicit dependency isn't discovered env.Depends(res, gcs_rc % locale) |