OLD | NEW |
---|---|
1 # GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2). | 1 # GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2). |
2 # vim: set expandtab tabstop=4 shiftwidth=4 | 2 # vim: set expandtab tabstop=4 shiftwidth=4 |
3 { | 3 { |
4 'includes': [ 'apptype_console.gypi' ], | 4 'includes': [ 'apptype_console.gypi' ], |
5 | 5 |
6 'targets': [{ | 6 'targets': [{ |
7 'target_name': 'dm', | 7 'target_name': 'dm', |
8 'type': 'executable', | 8 'type': 'executable', |
9 'include_dirs': [ | 9 'include_dirs': [ |
10 '../bench', | 10 '../bench', |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
52 '../src/utils/debugger/SkDrawCommand.cpp', | 52 '../src/utils/debugger/SkDrawCommand.cpp', |
53 '../src/utils/debugger/SkObjectParser.cpp', | 53 '../src/utils/debugger/SkObjectParser.cpp', |
54 ], | 54 ], |
55 'dependencies': [ | 55 'dependencies': [ |
56 'skia_lib.gyp:skia_lib', | 56 'skia_lib.gyp:skia_lib', |
57 'flags.gyp:flags', | 57 'flags.gyp:flags', |
58 'jsoncpp.gyp:jsoncpp', | 58 'jsoncpp.gyp:jsoncpp', |
59 'gputest.gyp:skgputest', | 59 'gputest.gyp:skgputest', |
60 'record.gyp:*', | 60 'record.gyp:*', |
61 ], | 61 ], |
62 'conditions': [ | |
63 ['skia_android_framework == 1', | |
mtklein
2014/05/15 22:17:48
just 'skia_android_framework' has the same effect
scroggo
2014/05/16 13:39:21
Yes. We are very inconsistent about comparing to 1
| |
64 { | |
65 'libraries': [ | |
66 '-lskia', | |
67 '-lcutils', | |
mtklein
2014/05/15 22:17:48
What comes with -lcutils? Is that libc?
scroggo
2014/05/16 13:39:21
Yes.
| |
68 ], | |
69 }, | |
70 ], | |
71 ], | |
62 }] | 72 }] |
63 } | 73 } |
OLD | NEW |