Add chromeos-chrome to rebuild blacklist for faster builds.

chromeos-chrome has mostly self-contained dependencies, so there usually
isn't need to rebuild it just because a dependency changed. This allows for
us to use the binaries for chromeos-chrome more often.

BUG=chromium-os:8394
TEST=Check that chrome doesn't rebuild with
./parallel_emerge -gp --workon=libcros --board=x86-generic
chromeos-chrome

Change-Id: Ifa14c890917991a8d11f1f0e757f28686d611a72

Review URL: http://codereview.chromium.org/4243003
This commit is contained in:
David James 2010-11-02 09:01:47 -07:00
parent 27dbab06f2
commit c3874d1106

View File

@ -638,7 +638,8 @@ class DepGraphGenerator(object):
# are blacklisting them from automatic rebuilds because one of their
# dependencies needs to be recompiled.
rebuild_blacklist = set()
for pkg in ("media-plugins/o3d", "dev-java/icedtea"):
for pkg in ("chromeos-base/chromeos-chrome", "media-plugins/o3d",
"dev-java/icedtea"):
for match in final_db.match_pkgs(pkg):
rebuild_blacklist.add(str(match.cpv))