760f2d95dd
git-svn-id: http://skia.googlecode.com/svn/trunk@6258 2bbb7eff-a529-9590-31e7-b0007b416f81
20 lines
408 B
Python
20 lines
408 B
Python
# Common entry point for all Skia executables running in NaCl
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'nacl_interface',
|
|
'type': 'static_library',
|
|
'dependencies': [
|
|
'skia_base_libs.gyp:skia_base_libs',
|
|
],
|
|
'include_dirs': [
|
|
# For SkThreadUtils.h
|
|
'../src/utils',
|
|
],
|
|
'sources': [
|
|
'../../nacl/src/nacl_interface.cpp',
|
|
],
|
|
},
|
|
],
|
|
}
|