Add a missing include path for the linux build of utils.gyp. Remove the Linux

utils files from the build of views.a, since they're already being compiled into
utils.a, since it was causing unnecessary rebuilds (the same could probably be
done for linux and mac).  Remove the commented-out SkImageDecoder_libpvjpeg.cpp,
which has been removed from SVN.  

http://codereview.appspot.com/4532105/



git-svn-id: http://skia.googlecode.com/svn/trunk@1476 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
senorblanco@chromium.org 2011-06-01 20:55:45 +00:00
parent 78e7d2c795
commit 907afcadfa
3 changed files with 4 additions and 7 deletions

View File

@ -34,8 +34,6 @@
'../src/images/SkImageDecoder_libico.cpp',
'../src/images/SkImageDecoder_libjpeg.cpp',
'../src/images/SkImageDecoder_libpng.cpp',
# This file wasn't being compiled, and seems to have bitrotted.
#'../src/images/SkImageDecoder_libpvjpeg.cpp',
'../src/images/SkImageDecoder_wbmp.cpp',
'../src/images/SkImageEncoder.cpp',
'../src/images/SkImageEncoder_Factory.cpp',

View File

@ -10,6 +10,7 @@
'../include/config',
'../include/core',
'../include/utils',
'../include/utils/unix',
'../include/views',
'../include/effects',
'../include/xml',
@ -94,6 +95,9 @@
'../src/utils/unix/SkEGLContext_Unix.cpp',
'../src/utils/unix/SkOSWindow_Unix.cpp',
],
'include_dirs!': [
'../include/utils/unix',
],
}],
[ 'OS != "win"', {
'sources!': [

View File

@ -96,12 +96,7 @@
},
}],
[ 'OS == "linux" or OS == "freebsd" or OS == "openbsd" or OS == "solaris"', {
'include_dirs' : [
'../include/utils/unix',
],
'sources': [
'../src/utils/unix/keysym2ucs.c',
'../src/utils/unix/SkOSWindow_Unix.cpp',
'../unix_test_app/main.cpp',
],
}],