OLD | NEW |
1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 # target_defaults used for executable targets that generate a console app | 5 # target_defaults used for executable targets that generate a console app |
6 { | 6 { |
7 'target_defaults': { | 7 'target_defaults': { |
8 'msvs_settings': { | 8 'msvs_settings': { |
9 'VCLinkerTool': { | 9 'VCLinkerTool': { |
10 #Allows for creation / output to console. | 10 #Allows for creation / output to console. |
(...skipping 11 matching lines...) Expand all Loading... |
22 'dependencies': [ | 22 'dependencies': [ |
23 'android_deps.gyp:Android_EntryPoint', | 23 'android_deps.gyp:Android_EntryPoint', |
24 'skia_launcher.gyp:skia_launcher', | 24 'skia_launcher.gyp:skia_launcher', |
25 ], | 25 ], |
26 }], | 26 }], |
27 ], | 27 ], |
28 'dependencies': [ | 28 'dependencies': [ |
29 'android_output.gyp:android_output', | 29 'android_output.gyp:android_output', |
30 ], | 30 ], |
31 }], | 31 }], |
32 [ 'skia_os == "nacl"', { | |
33 'dependencies': [ | |
34 'nacl.gyp:nacl_interface', | |
35 ], | |
36 }], | |
37 ['skia_os == "ios"', { | 32 ['skia_os == "ios"', { |
38 'target_conditions': [ | 33 'target_conditions': [ |
39 ['_type == "executable"', { | 34 ['_type == "executable"', { |
40 'mac_bundle' : 1, | 35 'mac_bundle' : 1, |
41 'sources': [ | 36 'sources': [ |
42 '../src/views/ios/SkOSWindow_iOS.mm', | 37 '../src/views/ios/SkOSWindow_iOS.mm', |
43 '../src/views/mac/SkEventNotifier.mm', | 38 '../src/views/mac/SkEventNotifier.mm', |
44 '../experimental/iOSSampleApp/iPad/AppDelegate_iPad.mm', | 39 '../experimental/iOSSampleApp/iPad/AppDelegate_iPad.mm', |
45 '../experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.mm', | 40 '../experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.mm', |
46 '../experimental/iOSSampleApp/Shared/SkUIView.mm', | 41 '../experimental/iOSSampleApp/Shared/SkUIView.mm', |
(...skipping 26 matching lines...) Expand all Loading... |
73 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 68 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
74 '$(SDKROOT)/System/Library/Frameworks/ImageIO.framework', | 69 '$(SDKROOT)/System/Library/Frameworks/ImageIO.framework', |
75 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework', | 70 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework', |
76 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', | 71 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
77 ], | 72 ], |
78 }, | 73 }, |
79 }], | 74 }], |
80 ], | 75 ], |
81 }, | 76 }, |
82 } | 77 } |
OLD | NEW |