blob: c90ca129fe3021b6067a1f7864eeab0486810dfd [file] [log] [blame]
epoger@google.comae85aea2011-05-31 13:50:51 +00001{
epoger@google.comae85aea2011-05-31 13:50:51 +00002 'targets': [
3 {
4 'target_name': 'libtess',
5 'type': 'static_library',
6 'include_dirs': [
7 '../third_party/glu',
8 ],
9 'sources': [
senorblanco@chromium.orgaa731682011-06-01 18:28:22 +000010 '../third_party/glu/sk_glu.h',
epoger@google.comae85aea2011-05-31 13:50:51 +000011 '../third_party/glu/gluos.h',
12 '../third_party/glu/libtess/dict-list.h',
13 '../third_party/glu/libtess/dict.c',
14 '../third_party/glu/libtess/dict.h',
15 '../third_party/glu/libtess/geom.c',
16 '../third_party/glu/libtess/geom.h',
17 '../third_party/glu/libtess/memalloc.c',
18 '../third_party/glu/libtess/memalloc.h',
19 '../third_party/glu/libtess/mesh.c',
20 '../third_party/glu/libtess/mesh.h',
21 '../third_party/glu/libtess/normal.c',
22 '../third_party/glu/libtess/normal.h',
23 '../third_party/glu/libtess/priorityq-heap.h',
24 '../third_party/glu/libtess/priorityq-sort.h',
25 '../third_party/glu/libtess/priorityq.c',
26 '../third_party/glu/libtess/priorityq.h',
27 '../third_party/glu/libtess/render.c',
28 '../third_party/glu/libtess/render.h',
29 '../third_party/glu/libtess/sweep.c',
30 '../third_party/glu/libtess/sweep.h',
31 '../third_party/glu/libtess/tess.c',
32 '../third_party/glu/libtess/tess.h',
33 '../third_party/glu/libtess/tessmono.c',
34 '../third_party/glu/libtess/tessmono.h',
35 ],
36 'direct_dependent_settings': {
37 'include_dirs': [
38 '../third_party/glu',
39 ],
40 },
djsollen@google.com44360bc2011-12-05 13:55:55 +000041 'conditions': [
42 [ 'skia_os == "android"', {
43 'cflags!': [
44 '-fno-rtti', # supresses warnings about invalid option of non-C++ code
45 ],
46 }],
47 ],
epoger@google.comae85aea2011-05-31 13:50:51 +000048 },
49 ],
50}
51
52# Local Variables:
53# tab-width:2
54# indent-tabs-mode:nil
55# End:
56# vim: set expandtab tabstop=2 shiftwidth=2: