Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(505)

Side by Side Diff: gyp/SampleApp.gyp

Issue 2117793002: Try fix the mac build bot after removing Android SampleApp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Try fix the build bot Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | gyp/everything.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }],
134 [ 'skia_gpu == 1', { 117 [ 'skia_gpu == 1', {
135 'dependencies': [ 118 'dependencies': [
136 'gputest.gyp:skgputest', 119 'gputest.gyp:skgputest',
137 ], 120 ],
138 }], 121 }],
139 [ 'not skia_pdf', { 122 [ 'not skia_pdf', {
140 'dependencies!': [ 'pdf.gyp:pdf' ], 123 'dependencies!': [ 'pdf.gyp:pdf' ],
141 'dependencies': [ 'pdf.gyp:nopdf' ], 124 'dependencies': [ 'pdf.gyp:nopdf' ],
142 }], 125 }],
143 ], 126 ],
144 }, 127 },
145 ], 128 ],
146 } 129 }
OLDNEW
« no previous file with comments | « no previous file | gyp/everything.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698