OLD | NEW |
---|---|
(Empty) | |
1 # Building test for running CanvasState | |
2 | |
3 { | |
4 'targets' : [ | |
5 { | |
6 'target_name' : 'canvas_state_lib', | |
7 'type' : 'shared_library', | |
8 # FIXME: Is there a way to ensure that -fPIC was used for skia_lib? | |
9 'dependencies' : [ 'skia_lib.gyp:skia_lib'], | |
10 'sources' : [ | |
11 '../tests/CanvasStateHelpers.cpp', | |
12 ], | |
13 'cflags' : [ | |
14 '-fPIC', | |
15 ], | |
16 }, | |
17 { | |
18 # Dummy 'most' target, since gyp_skia sets 'most' to be the default. | |
djsollen
2014/07/22 15:06:34
Can you remove this as well?
How does canvas_stat
scroggo
2014/07/22 17:10:10
Currently, it does not. In order to build it, you
scroggo
2014/07/22 18:12:01
Done.
| |
19 'target_name' : 'most', | |
20 'type' : 'none', | |
21 'dependencies' : [ | |
22 'canvas_state_lib', | |
23 ], | |
24 } | |
25 ], | |
26 } | |
OLD | NEW |