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 # | 5 # |
6 { | 6 { |
7 'targets': [ | 7 'targets': [ |
8 { | 8 { |
9 'target_name': 'SampleApp', | 9 'target_name': 'SampleApp', |
10 'type': 'executable', | 10 'type': 'executable', |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 ], | 107 ], |
108 'xcode_settings' : { | 108 'xcode_settings' : { |
109 'INFOPLIST_FILE' : '../experimental/iOSSampleApp/iOSSampleApp-Info.p
list', | 109 'INFOPLIST_FILE' : '../experimental/iOSSampleApp/iOSSampleApp-Info.p
list', |
110 }, | 110 }, |
111 'xcode_config_file': '../experimental/iOSSampleApp/SkiOSSampleApp-Base
.xcconfig', | 111 'xcode_config_file': '../experimental/iOSSampleApp/SkiOSSampleApp-Base
.xcconfig', |
112 'mac_bundle_resources' : [ | 112 'mac_bundle_resources' : [ |
113 '../experimental/iOSSampleApp/iPad/MainWindow_iPad.xib', | 113 '../experimental/iOSSampleApp/iPad/MainWindow_iPad.xib', |
114 '../experimental/iOSSampleApp/iPhone/MainWindow_iPhone.xib', | 114 '../experimental/iOSSampleApp/iPhone/MainWindow_iPhone.xib', |
115 ], | 115 ], |
116 }], | 116 }], |
| 117 [ 'skia_os == "android"', { |
| 118 'conditions': [ |
| 119 ['skia_android_framework == 0', { |
| 120 'dependencies': [ |
| 121 'android_deps.gyp:Android_EntryPoint', |
| 122 'skia_launcher.gyp:skia_launcher', |
| 123 ], |
| 124 }], |
| 125 ], |
| 126 'dependencies!': [ |
| 127 'experimental.gyp:experimental', |
| 128 ], |
| 129 'dependencies': [ |
| 130 'android_output.gyp:android_output', |
| 131 'android_deps.gyp:Android_SampleApp', |
| 132 ], |
| 133 }], |
117 [ 'skia_gpu == 1', { | 134 [ 'skia_gpu == 1', { |
118 'dependencies': [ | 135 'dependencies': [ |
119 'gputest.gyp:skgputest', | 136 'gputest.gyp:skgputest', |
120 ], | 137 ], |
121 }], | 138 }], |
122 [ 'not skia_pdf', { | 139 [ 'not skia_pdf', { |
123 'dependencies!': [ 'pdf.gyp:pdf' ], | 140 'dependencies!': [ 'pdf.gyp:pdf' ], |
124 'dependencies': [ 'pdf.gyp:nopdf' ], | 141 'dependencies': [ 'pdf.gyp:nopdf' ], |
125 }], | 142 }], |
126 ], | 143 ], |
127 }, | 144 }, |
128 ], | 145 ], |
129 } | 146 } |
OLD | NEW |