b17a24fedb
Also, switch Skia internal tools over to use the public headers where possible. Where it's not, the tools -Isrc/record explicitly now, and if it's not obvious, note why they don't use SkRecording.h. BUG=skia:2378 R=reed@google.com, mtklein@google.com, fmalita@chromium.org Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/231853006 git-svn-id: http://skia.googlecode.com/svn/trunk@14191 2bbb7eff-a529-9590-31e7-b0007b416f81
24 lines
666 B
Python
24 lines
666 B
Python
# An experimental library for faster recording of SkCanvas commands.
|
|
{
|
|
'targets': [{
|
|
'target_name': 'record',
|
|
'type': 'static_library',
|
|
'include_dirs': [
|
|
'../include/config',
|
|
'../include/core',
|
|
'../include/record',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': [
|
|
'../include/record', # Public headers.
|
|
],
|
|
},
|
|
'sources': [
|
|
'../src/record/SkRecordCulling.cpp',
|
|
'../src/record/SkRecordDraw.cpp',
|
|
'../src/record/SkRecorder.cpp',
|
|
'../src/record/SkRecording.cpp',
|
|
],
|
|
}]
|
|
}
|