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

Side by Side Diff: gyp/SampleApp.gyp

Issue 1185303004: Allow skia_win.cpp to be compiled in CONSOLE or GUI mode. (Closed) Base URL: https://skia.googlesource.com/skia.git@vb
Patch Set: Created 5 years, 6 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/visualbench.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 'includes': [
8 'apptype_console.gypi',
9 ],
7 'variables': { 10 'variables': {
8 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp 11 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp
9 'sample_pdf_file_viewer%': 0, 12 'sample_pdf_file_viewer%': 0,
10 }, 13 },
11 'targets': [ 14 'targets': [
12 { 15 {
13 'target_name': 'SampleApp', 16 'target_name': 'SampleApp',
14 'type': 'executable', 17 'type': 'executable',
15 'mac_bundle' : 1, 18 'mac_bundle' : 1,
16 'include_dirs' : [ 19 'include_dirs' : [
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 'dependencies': [ 293 'dependencies': [
291 'android_deps.gyp:Android_SampleApp', 294 'android_deps.gyp:Android_SampleApp',
292 ], 295 ],
293 }], 296 }],
294 [ 'skia_gpu == 1', { 297 [ 'skia_gpu == 1', {
295 'dependencies': [ 298 'dependencies': [
296 'gputest.gyp:skgputest', 299 'gputest.gyp:skgputest',
297 ], 300 ],
298 }], 301 }],
299 ], 302 ],
300 'msvs_settings': {
301 'VCLinkerTool': {
302 'SubSystem': '2',
303 },
304 },
305 }, 303 },
306 ], 304 ],
307 } 305 }
OLDNEW
« no previous file with comments | « no previous file | gyp/visualbench.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698