| 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 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 '../src/views/mac/SkEventNotifier.mm', | 32 '../src/views/mac/SkEventNotifier.mm', |
| 33 '../experimental/iOSSampleApp/iPad/AppDelegate_iPad.mm', | 33 '../experimental/iOSSampleApp/iPad/AppDelegate_iPad.mm', |
| 34 '../experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.mm', | 34 '../experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.mm', |
| 35 '../experimental/iOSSampleApp/Shared/SkUIView.mm', | 35 '../experimental/iOSSampleApp/Shared/SkUIView.mm', |
| 36 '../experimental/iOSSampleApp/Shared/skia_ios.mm', | 36 '../experimental/iOSSampleApp/Shared/skia_ios.mm', |
| 37 '../experimental/SimpleiOSApp/SimpleApp.mm', | 37 '../experimental/SimpleiOSApp/SimpleApp.mm', |
| 38 ], | 38 ], |
| 39 'include_dirs' : [ | 39 'include_dirs' : [ |
| 40 '../experimental/iOSSampleApp/Shared', | 40 '../experimental/iOSSampleApp/Shared', |
| 41 '../include/views', | 41 '../include/views', |
| 42 '../include/xml', | |
| 43 '../include/utils/mac', | 42 '../include/utils/mac', |
| 44 '../src/views/mac', | 43 '../src/views/mac', |
| 45 ], | 44 ], |
| 46 'xcode_config_file': '../experimental/iOSSampleApp/SkiOSSampleApp-Ba
se.xcconfig', | 45 'xcode_config_file': '../experimental/iOSSampleApp/SkiOSSampleApp-Ba
se.xcconfig', |
| 47 'mac_bundle_resources' : [ | 46 'mac_bundle_resources' : [ |
| 48 '../experimental/SimpleiOSApp/iPad/MainWindow_iPad.xib', | 47 '../experimental/SimpleiOSApp/iPad/MainWindow_iPad.xib', |
| 49 '../experimental/SimpleiOSApp/iPhone/MainWindow_iPhone.xib', | 48 '../experimental/SimpleiOSApp/iPhone/MainWindow_iPhone.xib', |
| 50 ], | 49 ], |
| 51 'xcode_settings' : { | 50 'xcode_settings' : { |
| 52 'INFOPLIST_FILE' : '../experimental/SimpleiOSApp/tool-Info.plist', | 51 'INFOPLIST_FILE' : '../experimental/SimpleiOSApp/tool-Info.plist', |
| 53 }, | 52 }, |
| 54 }], | 53 }], |
| 55 ], | 54 ], |
| 56 'dependencies': [ | 55 'dependencies': [ |
| 57 'views.gyp:views', | 56 'views.gyp:views', |
| 58 'xml.gyp:xml', | |
| 59 ], | 57 ], |
| 60 'link_settings': { | 58 'link_settings': { |
| 61 'libraries': [ | 59 'libraries': [ |
| 62 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', | 60 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', |
| 63 '$(SDKROOT)/System/Library/Frameworks/CoreText.framework', | 61 '$(SDKROOT)/System/Library/Frameworks/CoreText.framework', |
| 64 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 62 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 65 '$(SDKROOT)/System/Library/Frameworks/ImageIO.framework', | 63 '$(SDKROOT)/System/Library/Frameworks/ImageIO.framework', |
| 66 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework', | 64 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework', |
| 67 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', | 65 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
| 68 ], | 66 ], |
| 69 }, | 67 }, |
| 70 }], | 68 }], |
| 71 ], | 69 ], |
| 72 }, | 70 }, |
| 73 } | 71 } |
| OLD | NEW |