diff options
Diffstat (limited to 'chrome/app/resources/SConscript')
-rw-r--r-- | chrome/app/resources/SConscript | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/app/resources/SConscript b/chrome/app/resources/SConscript index cfbf1a0..b9ed420 100644 --- a/chrome/app/resources/SConscript +++ b/chrome/app/resources/SConscript @@ -66,7 +66,10 @@ rc_files = [ resources = [] for rc in rc_files: - resources.extend(env_res.RES(rc)) + res = env_res.RES(rc) + resources.extend(res) + # TODO(sgk): find out why this implicit dependency isn't discovered + env.Depends(res, rc.replace('locale_settings', 'google_chrome_strings')) env.Append( |