blob: 50e60e8011cf4ffdfa1eca95eea6695bf6361b44 [file] [log] [blame]
epoger@google.comae85aea2011-05-31 13:50:51 +00001{
2 'includes': [
3 'target_defaults.gypi',
4 ],
5 'targets': [
6 {
7 'target_name': 'experimental',
8 'type': 'static_library',
9 'include_dirs': [
10 '../include/config',
11 '../include/core',
12 ],
13 'sources': [
14 '../experimental/SkMatrix44.cpp',
15 '../experimental/SkMatrix44.h',
16 '../experimental/SkSetPoly3To3.cpp',
17 '../experimental/SkSetPoly3To3_A.cpp',
18 '../experimental/SkSetPoly3To3_D.cpp',
19 ],
20 'sources!': [
21 '../experimental/SkMatrix44.cpp', #doesn't compile
22 '../experimental/SkMatrix44.h',
23 ],
24 'direct_dependent_settings': {
25 'include_dirs': [
26 '../experimental',
27 ],
28 },
29 },
30 ],
31}
32
33# Local Variables:
34# tab-width:2
35# indent-tabs-mode:nil
36# End:
37# vim: set expandtab tabstop=2 shiftwidth=2: