blob: 6971b6a59ef89bafc433bf3840de76ef9de79122 [file] [log] [blame]
# target_defaults used for executable targets that generate a console app
{
'target_defaults': {
'msvs_settings': {
'VCLinkerTool': {
#Allows for creation / output to console.
#Console (/SUBSYSTEM:CONSOLE)
'SubSystem': '1',
#Console app, use main/wmain
'EntryPointSymbol': 'mainCRTStartup',
},
},
'conditions': [
[ 'skia_os == "android"', {
'dependencies': [
'android_system.gyp:Android_EntryPoint',
],
}],
],
},
}
# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: