Build and install dh-chromeos before doing anything else

src/third_party/chrome/ needs dh-chromeos. Fortunately at least
dh-chromeos doesn't need anything else from our tree, so let's build and
install it really early.

Review URL: http://codereview.chromium.org/518051
This commit is contained in:
Colin Watson 2010-01-07 00:46:48 +00:00
parent ef0667f327
commit be6ebfaf89

View File

@ -26,7 +26,7 @@ NUM_JOBS=`grep -c "^processor" /proc/cpuinfo`
PLATFORM_DIR="$SRC_ROOT/platform"
PLATFORM_DIRS="acpi assets dh-chromeos fake_hal init installer login_manager \
PLATFORM_DIRS="acpi assets fake_hal init installer login_manager \
memento_softwareupdate pam_google window_manager \
cros chrome screenlocker cryptohome \
monitor_reconfig microbenchmark minijail metrics_collection \
@ -46,6 +46,12 @@ then
export GET_STABLE_CHROME=1
fi
# Build dh-chromeos really first. Some of third_party needs it.
echo "Building package dh-chromeos..."
cd "$PLATFORM_DIR/dh-chromeos"
./make_pkg.sh
cd -
# Build third_party packages first, since packages and libs depend on them.
for i in $THIRD_PARTY_PACKAGES
do