05d550ed36
For now, this requires having a complete ChromeOS checkout. R=djsollen@google.com Review URL: https://codereview.chromium.org/16099011 git-svn-id: http://skia.googlecode.com/svn/trunk@9505 2bbb7eff-a529-9590-31e7-b0007b416f81
36 lines
865 B
Python
36 lines
865 B
Python
# This GYP file stores the dependencies necessary to build Skia on the Chrome OS
|
|
# platform. The OS doesn't provide many stable libraries as part of the
|
|
# distribution so we have to build a few of them ourselves.
|
|
|
|
{
|
|
'variables': {
|
|
'skia_warnings_as_errors': 0,
|
|
},
|
|
'targets': [
|
|
{
|
|
'target_name': 'gif',
|
|
'type': 'static_library',
|
|
'sources': [
|
|
'../third_party/externals/gif/dgif_lib.c',
|
|
'../third_party/externals/gif/gifalloc.c',
|
|
'../third_party/externals/gif/gif_err.c',
|
|
],
|
|
'include_dirs': [
|
|
'../third_party/externals/gif',
|
|
],
|
|
'cflags': [
|
|
'-Wno-format',
|
|
'-DHAVE_CONFIG_H',
|
|
],
|
|
'cflags!': [
|
|
'-Wall',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': [
|
|
'../third_party/externals/gif',
|
|
],
|
|
}
|
|
},
|
|
]
|
|
}
|