2e0c32af05
Simplified skip logic by always running clip commands. No performance difference on bot or silk SKPs. BUG=skia:2378 R=bungeman@google.com, fmalita@chromium.org, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/258693006 git-svn-id: http://skia.googlecode.com/svn/trunk@14410 2bbb7eff-a529-9590-31e7-b0007b416f81
20 lines
517 B
Python
20 lines
517 B
Python
# An experimental library for faster recording of SkCanvas commands.
|
|
{
|
|
'targets': [{
|
|
'target_name': 'record',
|
|
'type': 'static_library',
|
|
'includes': [ 'record.gypi' ],
|
|
'include_dirs': [
|
|
'../include/config',
|
|
'../include/core',
|
|
'../include/record',
|
|
'../src/utils',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': [
|
|
'../include/record', # Public headers.
|
|
],
|
|
},
|
|
}]
|
|
}
|