aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/record.gyp
blob: c7f35820e1d9a0bee4d994cc719c22461f71bfb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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',   # World-public headers.
                '../src/record',       # Skia-public headers.
            ],
        },
        'sources': [
            '../src/record/SkRecordCulling.cpp',
            '../src/record/SkRecordDraw.cpp',
            '../src/record/SkRecorder.cpp',
            '../src/record/SkRecording.cpp',
        ],
    }]
}