OLD | NEW |
1 # An experimental library for faster recording of SkCanvas commands. | 1 # An experimental library for faster recording of SkCanvas commands. |
2 { | 2 { |
3 'targets': [{ | 3 'targets': [{ |
4 'target_name': 'record', | 4 'target_name': 'record', |
5 'type': 'static_library', | 5 'type': 'static_library', |
6 'include_dirs': [ | 6 'include_dirs': [ |
7 '../include/config', | 7 '../include/config', |
8 '../include/core', | 8 '../include/core', |
| 9 '../include/record', |
9 ], | 10 ], |
10 'direct_dependent_settings': { | 11 'direct_dependent_settings': { |
11 'include_dirs': [ | 12 'include_dirs': [ |
12 '../src/record', | 13 '../include/record', # World-public headers. |
| 14 '../src/record', # Skia-public headers. |
13 ], | 15 ], |
14 }, | 16 }, |
15 'sources': [ | 17 'sources': [ |
16 '../src/record/SkRecorder.cpp', | |
17 '../src/record/SkRecordCulling.cpp', | 18 '../src/record/SkRecordCulling.cpp', |
18 '../src/record/SkRecordDraw.cpp', | 19 '../src/record/SkRecordDraw.cpp', |
| 20 '../src/record/SkRecorder.cpp', |
| 21 '../src/record/SkRecording.cpp', |
19 ], | 22 ], |
20 }] | 23 }] |
21 } | 24 } |
OLD | NEW |