Remove no longer needed stuff from chromeos build script, always run gyp
authorcommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 25 Jun 2013 18:18:07 +0000 (18:18 +0000)
committercommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 25 Jun 2013 18:18:07 +0000 (18:18 +0000)
(RunBuilders:Test-ChromeOS-Alex-GMA3150-x86-Debug,Test-ChromeOS-Alex-GMA3150-x86-Release,Perf-ChromeOS-Alex-GMA3150-x86-Release)

R=djsollen@google.com

Author: borenet@google.com

Review URL: https://chromiumcodereview.appspot.com/17684002

git-svn-id: http://skia.googlecode.com/svn/trunk@9752 2bbb7eff-a529-9590-31e7-b0007b416f81

platform_tools/chromeos/bin/build_skia_in_chroot

index cfad89a1a4298f4095fef2201ab86cc91d93cccb..b585d76a53bb3dc95dcecc4c661fb7c010369adc 100755 (executable)
@@ -31,22 +31,7 @@ then
   exit 1;
 fi
 
-
-# TODO(borenet): Add these to the tarball, so we don't have to copy.
-# Copy missing headers and libraries into the sysroot.
-if [[ ${GENERIC_BOARD_TYPE} == "amd64-generic" ]];
-then 
-  LIB_DIR="lib64"
-else
-  LIB_DIR="lib"
-fi
-if ! [[ -f "${SYSROOT}/usr/include/GL/glu.h" ]]; then
-  cp platform_tools/chromeos/toolchain/${GENERIC_BOARD_TYPE}/usr/include/GL/glu.h ${SYSROOT}/usr/include/GL
-fi
-if ! [[ -f "${SYSROOT}/usr/${LIB_DIR}/libGLU.so" ]]; then
-  cp platform_tools/chromeos/toolchain/${GENERIC_BOARD_TYPE}/usr/${LIB_DIR}/libGLU.so* ${SYSROOT}/usr/${LIB_DIR}
-fi
-
+python gyp_skia
 make ${makeVars}
 returnVal=$?
 if [ $returnVal != 0 ]