https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 1ca02bead4e8bc3d766d15e21044da3f0045cffc authored by ffxbld on 17 April 2012, 23:51:19 UTC
Added FENNEC_12_0b6_RELEASE FENNEC_12_0b6_BUILD1 tag(s) for changeset 1ae0f96df824. DONTBUILD CLOSED TREE a=release
Tip revision: 1ca02be
update.sh
# Usage: ./update.sh <skia_src_directory>
#
# Copies the needed files from a directory containing the original
# skia source that we need.

cp $1/LICENSE ./
cp $1/README ./

# Includes
cp $1/include/animator/*.h ./include/animator/
cp $1/include/config/*.h ./include/config/
cp $1/include/core/*.h ./include/core/
cp $1/include/effects/*.h ./include/effects/
cp $1/include/gpu/*.h ./include/gpu/
cp $1/include/images/*.h ./include/images/
cp $1/include/pdf/*.h ./include/pdf/
cp $1/include/pipe/*.h ./include/pipe/
cp $1/include/ports/*.h ./include/ports/
cp $1/include/svg/*.h ./include/svg/
cp $1/include/text/*.h ./include/text/
cp $1/include/utils/android/*.h ./include/utils/android/
cp $1/include/utils/mac/*.h ./include/utils/mac/
cp $1/include/utils/unix/*.h ./include/utils/unix/
cp $1/include/utils/win/*.h ./include/utils/win/
cp $1/include/utils/*.h ./include/utils/
cp $1/include/views/*.h ./include/views/
cp $1/include/xml/*.h ./include/xml/

# Source
cp $1/src/animator/*.h ./src/animator/
cp $1/src/animator/*.xsd ./src/animator/
cp $1/src/animator/*.xsx ./src/animator/
cp $1/src/animator/*.cpp ./src/animator/
cp $1/src/core/*.h ./src/core/
cp $1/src/core/*.cpp ./src/core/
cp $1/src/effects/*.cpp ./src/effects/
cp $1/src/effects/*.h ./src/effects/
cp $1/src/gpu/*.cpp ./src/gpu/
cp $1/src/gpu/*.h ./src/gpu/
cp $1/src/images/*.cpp ./src/images/
cp $1/src/images/*.h ./src/images/
cp $1/src/opts/*.S ./src/opts/
cp $1/src/opts/*.cpp ./src/opts/
cp $1/src/opts/*.h ./src/opts/
cp $1/src/pdf/*.cpp ./src/pdf/
cp $1/src/pdf/*.h ./src/pdf/
cp $1/src/pipe/*.h ./src/pipe/
cp $1/src/pipe/*.cpp ./src/pipe/
cp $1/src/ports/*.h ./src/ports/
cp $1/src/ports/*.cpp ./src/ports/
cp $1/src/svg/*.cpp ./src/svg/
cp $1/src/svg/*.h ./src/svg/
cp $1/src/text/*.cpp ./src/text/
cp $1/src/utils/mac/SampleApp-Info.plist ./src/utils/mac/
cp $1/src/utils/mac/SampleApp.xib ./src/utils/mac/
cp $1/src/utils/mac/*.cpp ./src/utils/mac/
cp $1/src/utils/mac/*.h ./src/utils/mac/
cp $1/src/utils/mac/*.mm ./src/utils/mac/
cp $1/src/utils/SDL/*.cpp ./src/utils/SDL/
cp $1/src/utils/*.cpp ./src/utils/
cp $1/src/utils/*.h ./src/utils/
cp $1/src/utils/unix/*.c ./src/utils/unix/
cp $1/src/utils/unix/*.cpp ./src/utils/unix/
cp $1/src/utils/win/*.cpp ./src/utils/win/
cp $1/src/views/*.cpp ./src/views/
cp $1/src/views/*.h ./src/views/
cp $1/src/views/views_files.mk ./src/views/
cp $1/src/xml/*.h ./src/xml/
cp $1/src/xml/*.cpp ./src/xml/
cp $1/src/xml/xml_files.mk ./src/xml/

# GLU
cp $1/third_party/glu/gluos.h ./third_party/glu/
cp $1/third_party/glu/libtess/alg-outline ./third_party/glu/libtess/
cp $1/third_party/glu/libtess/*.h ./third_party/glu/libtess/
cp $1/third_party/glu/libtess/*.c ./third_party/glu/libtess/
cp $1/third_party/glu/libtess/GNUmakefile ./third_party/glu/libtess/
cp $1/third_party/glu/libtess/Imakefile ./third_party/glu/libtess/
cp $1/third_party/glu/libtess/README ./third_party/glu/libtess/
cp $1/third_party/glu/LICENSE.txt ./third_party/glu/
cp $1/third_party/glu/README.skia ./third_party/glu/
cp $1/third_party/glu/sk_glu.h ./third_party/glu/

if [ -d $1/.svn ]; then
  rev=$(svn info $1 | awk '/^Revision:/{print $2}')
fi

if [ -n "$rev" ]; then
  version=$rev
  sed -i "" "s/r[0-9][0-9][0-9][0-9]/r$version/" README_MOZILLA
else
  echo "Remember to update README_MOZILLA with the version details."
fi

# Bug 689069 - Patch to get arm opts to build with frame pointers enabled.
patch -p3 < arm-opts.patch
# Bug 687188 - Skia radial gradients should use the 0/1 color stop values for clamping.
patch -p3 < fix-gradient-clamp.patch
# Bug 687189 - Implement SkPaint::getPosTextPath.
patch -p3 < getpostextpath.patch
# Bug 688365 - Enable Skia 'New AA' mode.
patch -p3 < new-aa.patch
# Bug 688366 - Fix Skia marking radial gradients with the same radius as invalid.
patch -p3 < radial-gradients.patch
# Fix restrict keyword problem for VS2005
patch -p3 < skia_restrict_problem.patch
# Changes to SkUserConfig.h - no bug
patch -p3 < user-config.patch
# Bug 715718 - Unitialized variable 'margin' in compute_bounds : SkDraw.cpp
patch -p3 < uninitialized-margin.patch
# Bug 722011 - Fix comma at end of enum list
patch -p3 < fix-comma-end-enum-list.patch
# Bug 719872 - Fix crash on Android by reverting to older FontHost impl
patch -p3 < old-android-fonthost.patch
back to top