6cfce1b7b4
Previously, a function was called using dlsym in skia_launcher. Add a static initializer that changes the setting, and include that for the tools we automate for testing. Also only do va_copy if we actually use it. BUG=skia:2454 Review URL: https://codereview.chromium.org/753543003
17 lines
368 B
Python
17 lines
368 B
Python
# GYP file to send android SkDebug to stdout in addition to logcat. To enable,
|
|
# include this project as a dependency.
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'android_output',
|
|
'type': 'static_library',
|
|
'sources': [
|
|
'../tools/AndroidSkDebugToStdOut.cpp',
|
|
],
|
|
'dependencies': [
|
|
'skia_lib.gyp:skia_lib',
|
|
],
|
|
},
|
|
],
|
|
}
|