summaryrefslogtreecommitdiffstats
path: root/gears
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-17 17:20:42 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-17 17:20:42 +0000
commit6a2890686ef62cb71269f22ee6030c7996ba9a68 (patch)
tree7b107c449ac39384265b4e8decfc857b89e91ccc /gears
parentf072d2ce55ac96dda187eb2240f56bbfaa93fb4b (diff)
downloadchromium_src-6a2890686ef62cb71269f22ee6030c7996ba9a68.zip
chromium_src-6a2890686ef62cb71269f22ee6030c7996ba9a68.tar.gz
chromium_src-6a2890686ef62cb71269f22ee6030c7996ba9a68.tar.bz2
Add another disk cache performance test.
Committed: http://chrome-svn/viewvc/chrome?view=rev&revision=1553 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2314 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gears')
-rw-r--r--gears/SConscript7
1 files changed, 4 insertions, 3 deletions
diff --git a/gears/SConscript b/gears/SConscript
index 73b58a0..3072ba1 100644
--- a/gears/SConscript
+++ b/gears/SConscript
@@ -1165,10 +1165,11 @@ srcs['all'] += installed_bins
# genfiles/%.h: %.idl
# Note: the emitter fixes the targets to be put in genfiles.
-idls = [env_browser.TypeLibrary(src)
+if idlsrcs['all']:
+ idls = [env_browser.TypeLibrary(src)
for src in idlsrcs['all']]
-installed_idls = idls
-srcs['all'] += [x for x in installed_idls[0] if str(x).endswith('_i.c')]
+ installed_idls = idls
+ srcs['all'] += [x for x in installed_idls[0] if str(x).endswith('_i.c')]
# TODO: figure out why the .rc scanner doesn't notice these dependencies.
env_browser.Depends(dll_resources[0], installed_html_m4s)