Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(890)

Unified Diff: skia/skia.gyp

Issue 6992091: Compile skia's drop of the GLU tesselator into Chrome, and add the (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/skia.gyp
===================================================================
--- skia/skia.gyp (revision 87636)
+++ skia/skia.gyp (working copy)
@@ -41,6 +41,7 @@
'../third_party/skia/gpu/src/GrRectanizer_fifo.cpp',
'../third_party/skia/gpu/src/GrResource.cpp',
'../third_party/skia/gpu/src/GrStencil.cpp',
+ '../third_party/skia/gpu/src/GrTesselatedPathRenderer.cpp',
'../third_party/skia/gpu/src/GrTexture.cpp',
'../third_party/skia/gpu/src/GrTextureCache.cpp',
'../third_party/skia/gpu/src/GrTextContext.cpp',
@@ -95,6 +96,7 @@
'../third_party/skia/gpu/include/GrTDArray.h',
'../third_party/skia/gpu/include/GrTHashCache.h',
'../third_party/skia/gpu/include/GrTLList.h',
+ '../third_party/skia/gpu/include/GrTesselatedPathRenderer.h',
'../third_party/skia/gpu/include/GrTextContext.h',
'../third_party/skia/gpu/include/GrTextStrike.h',
'../third_party/skia/gpu/include/GrTexture.h',
@@ -834,6 +836,7 @@
],
'dependencies': [
'skia_opts',
+ 'skia_libtess',
'../third_party/zlib/zlib.gyp:zlib',
],
'direct_dependent_settings': {
@@ -930,6 +933,45 @@
],
},
{
+ 'target_name': 'skia_libtess',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '../third_party/skia/third_party/glu',
+ ],
+ 'sources': [
+ '../third_party/skia/third_party/glu/internal_glu.h',
+ '../third_party/skia/third_party/glu/gluos.h',
+ '../third_party/skia/third_party/glu/libtess/dict-list.h',
+ '../third_party/skia/third_party/glu/libtess/dict.c',
+ '../third_party/skia/third_party/glu/libtess/dict.h',
+ '../third_party/skia/third_party/glu/libtess/geom.c',
+ '../third_party/skia/third_party/glu/libtess/geom.h',
+ '../third_party/skia/third_party/glu/libtess/memalloc.c',
+ '../third_party/skia/third_party/glu/libtess/memalloc.h',
+ '../third_party/skia/third_party/glu/libtess/mesh.c',
+ '../third_party/skia/third_party/glu/libtess/mesh.h',
+ '../third_party/skia/third_party/glu/libtess/normal.c',
+ '../third_party/skia/third_party/glu/libtess/normal.h',
+ '../third_party/skia/third_party/glu/libtess/priorityq-heap.h',
+ '../third_party/skia/third_party/glu/libtess/priorityq-sort.h',
+ '../third_party/skia/third_party/glu/libtess/priorityq.c',
+ '../third_party/skia/third_party/glu/libtess/priorityq.h',
+ '../third_party/skia/third_party/glu/libtess/render.c',
+ '../third_party/skia/third_party/glu/libtess/render.h',
+ '../third_party/skia/third_party/glu/libtess/sweep.c',
+ '../third_party/skia/third_party/glu/libtess/sweep.h',
+ '../third_party/skia/third_party/glu/libtess/tess.c',
+ '../third_party/skia/third_party/glu/libtess/tess.h',
+ '../third_party/skia/third_party/glu/libtess/tessmono.c',
+ '../third_party/skia/third_party/glu/libtess/tessmono.h',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '../third_party/skia/third_party/glu',
+ ],
+ },
+ },
+ {
'target_name': 'image_operations_bench',
'type': 'executable',
'dependencies': [
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698