From ef0667f3273b81e4ee3e962e49a8b30496ef02ce Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Thu, 7 Jan 2010 00:09:56 +0000 Subject: [PATCH] Install libchrome-dev and libchromeos-dev packages Add make_pkg.sh for src/third_party/chrome/ (a.k.a. libchrome-dev) and src/common/ (a.k.a. libchromeos-dev) and (ab)use it to install those packages once built. Installing the packages from make_pkg.sh isn't very clean. However, this gives us a migration path to future use of chromeos-build, which will need these headers and libraries to be built as packages in order to support cross-building cleanly. Review URL: http://codereview.chromium.org/523109 --- build_platform_packages.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_platform_packages.sh b/build_platform_packages.sh index 38942f4f73..0f30ff1686 100755 --- a/build_platform_packages.sh +++ b/build_platform_packages.sh @@ -58,13 +58,13 @@ done # Build base lib next, since packages depend on it. echo "Building base library..." cd "$THIRD_PARTY_DIR/chrome" -scons -j$NUM_JOBS +./make_pkg.sh cd - #Build common lib next. echo "Building common library..." cd "$SRC_ROOT/common" -scons -j$NUM_JOBS +./make_pkg.sh cd - # Build platform packages