aboutsummaryrefslogtreecommitdiff
path: root/gyp
diff options
context:
space:
mode:
authorbsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-05-11 17:32:43 +0000
committerbsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-05-11 17:32:43 +0000
commit7ffe6810c6787f7a353ef3fe8fab3fc6440aae19 (patch)
tree34916656022af0ac4ca73272689fdc92547c2066 /gyp
parent6b70a7bd3328ea0a12be47b1a7f835c905f16147 (diff)
downloadskia-7ffe6810c6787f7a353ef3fe8fab3fc6440aae19.tar.gz
Remove tesselated path renderer and supporting code, glu, and libtess target
Review URL: http://codereview.appspot.com/6197075/ git-svn-id: http://skia.googlecode.com/svn/trunk@3912 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gyp')
-rw-r--r--gyp/gpu.gyp4
-rw-r--r--gyp/libtess.gyp56
2 files changed, 0 insertions, 60 deletions
diff --git a/gyp/gpu.gyp b/gyp/gpu.gyp
index b30e5cfd2e..9d9c6c26c5 100644
--- a/gyp/gpu.gyp
+++ b/gyp/gpu.gyp
@@ -94,7 +94,6 @@
'../src/gpu',
],
'dependencies': [
- 'libtess.gyp:libtess',
'angle.gyp:*',
],
'export_dependent_settings': [
@@ -167,7 +166,6 @@
'../src/gpu'
],
'dependencies': [
- 'libtess.gyp:libtess',
'angle.gyp:*',
],
'export_dependent_settings': [
@@ -266,8 +264,6 @@
'../src/gpu/GrStringBuilder.h',
'../src/gpu/GrTBSearch.h',
'../src/gpu/GrTDArray.h',
- '../src/gpu/GrTesselatedPathRenderer.cpp',
- '../src/gpu/GrTesselatedPathRenderer.h',
'../src/gpu/GrSoftwarePathRenderer.cpp',
'../src/gpu/GrSoftwarePathRenderer.h',
'../src/gpu/GrTextStrike.cpp',
diff --git a/gyp/libtess.gyp b/gyp/libtess.gyp
deleted file mode 100644
index c90ca129fe..0000000000
--- a/gyp/libtess.gyp
+++ /dev/null
@@ -1,56 +0,0 @@
-{
- 'targets': [
- {
- 'target_name': 'libtess',
- 'type': 'static_library',
- 'include_dirs': [
- '../third_party/glu',
- ],
- 'sources': [
- '../third_party/glu/sk_glu.h',
- '../third_party/glu/gluos.h',
- '../third_party/glu/libtess/dict-list.h',
- '../third_party/glu/libtess/dict.c',
- '../third_party/glu/libtess/dict.h',
- '../third_party/glu/libtess/geom.c',
- '../third_party/glu/libtess/geom.h',
- '../third_party/glu/libtess/memalloc.c',
- '../third_party/glu/libtess/memalloc.h',
- '../third_party/glu/libtess/mesh.c',
- '../third_party/glu/libtess/mesh.h',
- '../third_party/glu/libtess/normal.c',
- '../third_party/glu/libtess/normal.h',
- '../third_party/glu/libtess/priorityq-heap.h',
- '../third_party/glu/libtess/priorityq-sort.h',
- '../third_party/glu/libtess/priorityq.c',
- '../third_party/glu/libtess/priorityq.h',
- '../third_party/glu/libtess/render.c',
- '../third_party/glu/libtess/render.h',
- '../third_party/glu/libtess/sweep.c',
- '../third_party/glu/libtess/sweep.h',
- '../third_party/glu/libtess/tess.c',
- '../third_party/glu/libtess/tess.h',
- '../third_party/glu/libtess/tessmono.c',
- '../third_party/glu/libtess/tessmono.h',
- ],
- 'direct_dependent_settings': {
- 'include_dirs': [
- '../third_party/glu',
- ],
- },
- 'conditions': [
- [ 'skia_os == "android"', {
- 'cflags!': [
- '-fno-rtti', # supresses warnings about invalid option of non-C++ code
- ],
- }],
- ],
- },
- ],
-}
-
-# Local Variables:
-# tab-width:2
-# indent-tabs-mode:nil
-# End:
-# vim: set expandtab tabstop=2 shiftwidth=2: