| OLD | NEW |
| 1 # target_defaults used for executable targets that generate a console app | 1 # target_defaults used for executable targets that generate a console app |
| 2 { | 2 { |
| 3 'target_defaults': { | 3 'target_defaults': { |
| 4 'msvs_settings': { | 4 'msvs_settings': { |
| 5 'VCLinkerTool': { | 5 'VCLinkerTool': { |
| 6 #Allows for creation / output to console. | 6 #Allows for creation / output to console. |
| 7 #Console (/SUBSYSTEM:CONSOLE) | 7 #Console (/SUBSYSTEM:CONSOLE) |
| 8 'SubSystem': '1', | 8 'SubSystem': '1', |
| 9 | 9 |
| 10 #Console app, use main/wmain | 10 #Console app, use main/wmain |
| 11 'EntryPointSymbol': 'mainCRTStartup', | 11 'EntryPointSymbol': 'mainCRTStartup', |
| 12 }, | 12 }, |
| 13 }, | 13 }, |
| 14 'conditions': [ | 14 'conditions': [ |
| 15 [ 'skia_os == "android"', { | 15 [ 'skia_os == "android"', { |
| 16 'dependencies': [ | 16 'dependencies': [ |
| 17 'android_deps.gyp:Android_EntryPoint', | 17 'android_deps.gyp:Android_EntryPoint', |
| 18 'android_system.gyp:skia_launcher', |
| 18 ], | 19 ], |
| 19 }], | 20 }], |
| 20 [ 'skia_os == "nacl"', { | 21 [ 'skia_os == "nacl"', { |
| 21 'dependencies': [ | 22 'dependencies': [ |
| 22 'nacl.gyp:nacl_interface', | 23 'nacl.gyp:nacl_interface', |
| 23 ], | 24 ], |
| 24 }], | 25 }], |
| 25 ['skia_os == "ios"', { | 26 ['skia_os == "ios"', { |
| 26 'target_conditions': [ | 27 'target_conditions': [ |
| 27 ['_type == "executable"', { | 28 ['_type == "executable"', { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 }], | 74 }], |
| 74 ], | 75 ], |
| 75 }, | 76 }, |
| 76 } | 77 } |
| 77 | 78 |
| 78 # Local Variables: | 79 # Local Variables: |
| 79 # tab-width:2 | 80 # tab-width:2 |
| 80 # indent-tabs-mode:nil | 81 # indent-tabs-mode:nil |
| 81 # End: | 82 # End: |
| 82 # vim: set expandtab tabstop=2 shiftwidth=2: | 83 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |