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

Side by Side Diff: gyp/SampleApp.gyp

Issue 2198933002: Making a sample for shadow maps for more intensive development (Closed) Base URL: https://skia.googlesource.com/skia@shadow-gm
Patch Set: argh fixed utils include error Created 4 years, 4 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 | « gm/shadowmaps.cpp ('k') | gyp/samples.gypi » ('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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 '$(SDKROOT)/System/Library/Frameworks/ImageIO.framework', 96 '$(SDKROOT)/System/Library/Frameworks/ImageIO.framework',
97 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework ', 97 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework ',
98 ], 98 ],
99 }, 99 },
100 'include_dirs' : [ 100 'include_dirs' : [
101 '../experimental/iOSSampleApp', 101 '../experimental/iOSSampleApp',
102 '../experimental/iOSSampleApp/iPad', 102 '../experimental/iOSSampleApp/iPad',
103 '../experimental/iOSSampleApp/iPhone', 103 '../experimental/iOSSampleApp/iPhone',
104 '../experimental/iOSSampleApp/Shared', 104 '../experimental/iOSSampleApp/Shared',
105 '../include/utils/ios', 105 '../include/utils/ios',
106 '../src/utils',
106 '../src/views/mac', 107 '../src/views/mac',
107 ], 108 ],
108 'xcode_settings' : { 109 'xcode_settings' : {
109 'INFOPLIST_FILE' : '../experimental/iOSSampleApp/iOSSampleApp-Info.p list', 110 'INFOPLIST_FILE' : '../experimental/iOSSampleApp/iOSSampleApp-Info.p list',
110 }, 111 },
111 'xcode_config_file': '../experimental/iOSSampleApp/SkiOSSampleApp-Base .xcconfig', 112 'xcode_config_file': '../experimental/iOSSampleApp/SkiOSSampleApp-Base .xcconfig',
112 'mac_bundle_resources' : [ 113 'mac_bundle_resources' : [
113 '../experimental/iOSSampleApp/iPad/MainWindow_iPad.xib', 114 '../experimental/iOSSampleApp/iPad/MainWindow_iPad.xib',
114 '../experimental/iOSSampleApp/iPhone/MainWindow_iPhone.xib', 115 '../experimental/iOSSampleApp/iPhone/MainWindow_iPhone.xib',
115 ], 116 ],
116 }], 117 }],
117 [ 'skia_gpu == 1', { 118 [ 'skia_gpu == 1', {
118 'dependencies': [ 119 'dependencies': [
119 'gputest.gyp:skgputest', 120 'gputest.gyp:skgputest',
120 ], 121 ],
121 }], 122 }],
122 [ 'not skia_pdf', { 123 [ 'not skia_pdf', {
123 'dependencies!': [ 'pdf.gyp:pdf' ], 124 'dependencies!': [ 'pdf.gyp:pdf' ],
124 'dependencies': [ 'pdf.gyp:nopdf' ], 125 'dependencies': [ 'pdf.gyp:nopdf' ],
125 }], 126 }],
126 ], 127 ],
127 }, 128 },
128 ], 129 ],
129 } 130 }
OLDNEW
« no previous file with comments | « gm/shadowmaps.cpp ('k') | gyp/samples.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698