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 # I need 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 } | |
OLD | NEW |